ruby-changes:5704
From: shyouhei <ko1@a...>
Date: Sun, 15 Jun 2008 20:31:25 +0900 (JST)
Subject: [ruby-changes:5704] Ruby:r17210 (ruby_1_8_6): merge revision(s) 15790:
shyouhei 2008-06-15 20:28:08 +0900 (Sun, 15 Jun 2008)
New Revision: 17210
Modified files:
branches/ruby_1_8_6/ChangeLog
branches/ruby_1_8_6/misc/ruby-mode.el
branches/ruby_1_8_6/version.h
Log:
merge revision(s) 15790:
* misc/ruby-mode.el (ruby-mode): should use `run-mode-hooks' instead
of calling `run-hooks' directly to run the mode hook. patch from
Chiyuan Zhang <pluskid AT gmail.com> in [ruby-core:15915]
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/branches/ruby_1_8_6/ChangeLog?r1=17210&r2=17209&diff_format=u
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/branches/ruby_1_8_6/version.h?r1=17210&r2=17209&diff_format=u
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/branches/ruby_1_8_6/misc/ruby-mode.el?r1=17210&r2=17209&diff_format=u
Index: ruby_1_8_6/ChangeLog
===================================================================
--- ruby_1_8_6/ChangeLog (revision 17209)
+++ ruby_1_8_6/ChangeLog (revision 17210)
@@ -1,3 +1,9 @@
+Sun Jun 15 20:27:59 2008 Nobuyoshi Nakada <nobu@r...>
+
+ * misc/ruby-mode.el (ruby-mode): should use `run-mode-hooks' instead
+ of calling `run-hooks' directly to run the mode hook. patch from
+ Chiyuan Zhang <pluskid AT gmail.com> in [ruby-core:15915]
+
Sun Jun 15 20:20:59 2008 Nobuyoshi Nakada <nobu@r...>
* numeric.c (fix_coerce): try conversion before type check.
Index: ruby_1_8_6/misc/ruby-mode.el
===================================================================
--- ruby_1_8_6/misc/ruby-mode.el (revision 17209)
+++ ruby_1_8_6/misc/ruby-mode.el (revision 17210)
@@ -255,7 +255,7 @@
(make-local-variable 'add-log-current-defun-function)
(setq add-log-current-defun-function 'ruby-add-log-current-method)
- (run-hooks 'ruby-mode-hook))
+ (run-mode-hooks 'ruby-mode-hook))
(defun ruby-current-indentation ()
(save-excursion
Index: ruby_1_8_6/version.h
===================================================================
--- ruby_1_8_6/version.h (revision 17209)
+++ ruby_1_8_6/version.h (revision 17210)
@@ -2,7 +2,7 @@
#define RUBY_RELEASE_DATE "2008-06-15"
#define RUBY_VERSION_CODE 186
#define RUBY_RELEASE_CODE 20080615
-#define RUBY_PATCHLEVEL 186
+#define RUBY_PATCHLEVEL 187
#define RUBY_VERSION_MAJOR 1
#define RUBY_VERSION_MINOR 8
--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/