Skip to content

Commit

Permalink
* lib/optparse.rb (OptionParser#warn, OptionParser#abort): Exception
Browse files Browse the repository at this point in the history
  no longer has to_str method.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@6642 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
nobu committed Jul 15, 2004
1 parent 17676bf commit b2afa63
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
17 changes: 11 additions & 6 deletions ChangeLog
@@ -1,3 +1,8 @@
Thu Jul 15 23:53:38 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>

* lib/optparse.rb (OptionParser#warn, OptionParser#abort): Exception
no longer has to_str method.

Thu Jul 15 22:59:48 2004 Shugo Maeda <shugo@ruby-lang.org>

* ext/readline/extconf.rb: added dir_config for curses, ncurses,
Expand All @@ -13,7 +18,7 @@ Thu Jul 15 10:15:04 2004 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>

* ext/tk/, ext/tcltklib/: bug fix

* ext/tk/lib/tk.rb: better operation for SIGINT when processing
* ext/tk/lib/tk.rb: better operation for SIGINT when processing
callbacks.
* ext/tk/lib/tk/msgcat.rb: ditto.
* ext/tk/lib/tk/variable.rb: ditto.
Expand All @@ -22,10 +27,10 @@ Thu Jul 15 10:15:04 2004 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
* ext/tk/lib/tk/validation.rb: add Tk::ValidateConfigure.__def_validcmd
to define validatecommand methods easier

* ext/tk/lib/tk.rb (_genobj_for_tkwidget): support autoload Tk ext
* ext/tk/lib/tk.rb (_genobj_for_tkwidget): support autoload Tk ext
classes

* ext/tk/lib/tk/canvas.rb and so on: remove the parent widget type
* ext/tk/lib/tk/canvas.rb and so on: remove the parent widget type
check for items (e.g. canvas items; depends on the class) to
avoid some troubles on Tk extension widget class definition.

Expand Down Expand Up @@ -92,14 +97,14 @@ Sat Jul 10 09:30:24 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp>

Sat Jul 10 04:21:56 2004 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>

* ext/tk/lib/tk.rb: better operation for SIGINT when processing
* ext/tk/lib/tk.rb: better operation for SIGINT when processing
callbacks.
* ext/tk/lib/tk/msgcat.rb: ditto.
* ext/tk/lib/tk/variable.rb: ditto.
* ext/tk/lib/tk/timer.rb: ditto.

* ext/tk/lib/tk/validation.rb (__def_validcmd): add a module
function of Tk::ValidateConfigure to define validatecommand
* ext/tk/lib/tk/validation.rb (__def_validcmd): add a module
function of Tk::ValidateConfigure to define validatecommand
methods easier

Fri Jul 9 22:36:36 2004 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
Expand Down
4 changes: 2 additions & 2 deletions lib/optparse.rb
Expand Up @@ -923,11 +923,11 @@ def ver
end

def warn(mesg = $!)
super(program_name + ': ' + mesg)
super("#{program_name}: #{mesg}")
end

def abort(mesg = $!)
super(program_name + ': ' + mesg)
super("#{program_name}: #{mesg}")
end

=begin
Expand Down

0 comments on commit b2afa63

Please sign in to comment.