xrpn 2.2 → 2.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5ffb9be2c7f2d0322a75cc674de598d9606afa71b467ac55e65dbef3aae512d7
4
- data.tar.gz: 7cda743855ab4708bff10c7e12cadadbcd8484605fb2f9526805988f0a06adad
3
+ metadata.gz: e6ace1f064aca783f21398cdb1f2f4f559ed9c81c5f0ec320bbfb1bcb141dba9
4
+ data.tar.gz: 49ba0dbb56fb0d008b137f869aa384d405a178f65a3ae4cef0da13ce1ee417bd
5
5
  SHA512:
6
- metadata.gz: 5bfe087a054e763f342bbe111a2e2ba9924a37719be5784e494deb6be75d3412d7f2442bdc84156dcc3a9389af69ed7a5cf42e3ba824d875ecb3f0fb04f3a3ec
7
- data.tar.gz: f9400c2544b32edc95db3c243a6490ce4f1860a6dc9c9379042b51710845c542474053127bfd5c8cefbb2d579eaf58e01f8ed04958240b2c802a3162f0866b3e
6
+ metadata.gz: 391751c7be85bb1c289813dbc181386ea5e547be63e22ae59991f7713d44bfe034cbed36cd8aedfb131dd19f433cb71fc75449cd6ba4300c4d642d65f4bbbed9
7
+ data.tar.gz: 712a0cf5d4452142836fa7ef503ea56236bbe8bb76f500acceff98778072212d97751d604eb0d8c63d910bab166ef80c5c97a58f872e606067e5e577d51dd8d4
data/bin/xrpn CHANGED
@@ -138,8 +138,11 @@ until @p.pc == @p.prg[@p.pg].length do
138
138
  elsif XRPN.method_defined?(l1.downcase) # Or execute the command with either 1 or 2 parts
139
139
  begin
140
140
  if @p.flg["25"] == true
141
- @p.flg["25"] = false
142
- unerror { l2 ? ret = @p.send(l1.downcase, l2) : ret = @p.send(l1.downcase) }
141
+ begin
142
+ l2 ? ret = @p.send(l1.downcase, l2) : ret = @p.send(l1.downcase)
143
+ rescue
144
+ @p.flg["25"] = false
145
+ end
143
146
  else
144
147
  l2 ? ret = @p.send(l1.downcase, l2) : ret = @p.send(l1.downcase)
145
148
  end
data/xlib/_xrpn_version CHANGED
@@ -1,5 +1,5 @@
1
1
  def xrpn_version
2
- puts "XRPN version: 2.2"
2
+ puts "XRPN version: 2.3"
3
3
  puts "RubyGem version: " + Gem.latest_spec_for("xrpn").version.to_s
4
4
  end
5
5
 
data/xrpn.gemspec CHANGED
@@ -1,9 +1,9 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'xrpn'
3
- s.version = '2.2'
3
+ s.version = '2.3'
4
4
  s.licenses = ['Unlicense']
5
5
  s.summary = "XRPN - The eXtended RPN (Reverse Polish Notation) programming language"
6
- s.description = "A full programming language and environment extending the features of the venerable HP calculator programmable calculators. With XRPN you can accomplish a wide range of modern programming tasks as well as running existing HP-41 FOCAL programs directly. XRPN gives modern life to tens of thousands of old HP calculator programs and opens the possibilities to many, many more. New in 2.0: Startup speed 4X. Added command 'cmds'. 2.1: Fixed rounding overflow bug. Added : commands to access underlying Ruby. 2.2: Added error exception (flag 25) with commands 'error'=CF 25 and 'unerror'=SF 25"
6
+ s.description = "A full programming language and environment extending the features of the venerable HP calculator programmable calculators. With XRPN you can accomplish a wide range of modern programming tasks as well as running existing HP-41 FOCAL programs directly. XRPN gives modern life to tens of thousands of old HP calculator programs and opens the possibilities to many, many more. New in 2.0: Startup speed 4X. Added command 'cmds'. 2.1: Fixed rounding overflow bug. Added : commands to access underlying Ruby. 2.2: Added error exception (flag 25) with commands 'error'=CF 25 and 'unerror'=SF 25. 2.3: Better Flag 25 handling."
7
7
 
8
8
  s.authors = ["Geir Isene"]
9
9
  s.email = 'g@isene.com'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xrpn
3
3
  version: !ruby/object:Gem::Version
4
- version: '2.2'
4
+ version: '2.3'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Geir Isene
@@ -31,7 +31,7 @@ description: 'A full programming language and environment extending the features
31
31
  programs and opens the possibilities to many, many more. New in 2.0: Startup speed
32
32
  4X. Added command ''cmds''. 2.1: Fixed rounding overflow bug. Added : commands to
33
33
  access underlying Ruby. 2.2: Added error exception (flag 25) with commands ''error''=CF
34
- 25 and ''unerror''=SF 25'
34
+ 25 and ''unerror''=SF 25. 2.3: Better Flag 25 handling.'
35
35
  email: g@isene.com
36
36
  executables:
37
37
  - xrpn
@@ -339,7 +339,6 @@ files:
339
339
  - xlib/setpt
340
340
  - xlib/string
341
341
  - xlib/theme
342
- - xlib/unerror
343
342
  - xlib/xrpn_class
344
343
  - xrpn.gemspec
345
344
  homepage: https://github.com/isene/XRPN
data/xlib/unerror DELETED
@@ -1,6 +0,0 @@
1
- def unerror
2
- begin
3
- yield
4
- rescue Exception
5
- end
6
- end