From: Dmitry Gutov Date: Mon, 3 Feb 2014 15:59:39 +0000 (+0200) Subject: * lisp/progmodes/ruby-mode.el (ruby-font-lock-keywords): `private', X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~180 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6da8227cfa5bc7f428346e78d028a83a385f908f;p=emacs.git * lisp/progmodes/ruby-mode.el (ruby-font-lock-keywords): `private', `protected' and `public' can also be called without arguments. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 77a81cfa3da..7c204726568 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2014-02-03 Dmitry Gutov + + * progmodes/ruby-mode.el (ruby-font-lock-keywords): `private', + `protected' and `public' can also be called without arguments. + 2014-02-03 Glenn Morris * register.el (window-configuration-to-register) diff --git a/lisp/progmodes/ruby-mode.el b/lisp/progmodes/ruby-mode.el index 22de9a83f2b..96835fc9892 100644 --- a/lisp/progmodes/ruby-mode.el +++ b/lisp/progmodes/ruby-mode.el @@ -2059,9 +2059,6 @@ See `font-lock-syntax-table'.") "include" "module_function" "prepend" - "private" - "protected" - "public" "refine" "using") 'symbols)) @@ -2082,6 +2079,9 @@ See `font-lock-syntax-table'.") "exit" "exit!" "fail" + "private" + "protected" + "public" "raise" "rand" "readline"