diff options
| author | Dmitry Gutov | 2014-04-09 04:14:37 +0400 |
|---|---|---|
| committer | Dmitry Gutov | 2014-04-09 04:14:37 +0400 |
| commit | 0122b24d9079dc5cc7550eed8e71591bd1241dc8 (patch) | |
| tree | e7f385e902602fce6ee69273124b5e07962c2308 | |
| parent | 5b9925ae30bfab909294bd18454413fdc821f103 (diff) | |
| download | emacs-0122b24d9079dc5cc7550eed8e71591bd1241dc8.tar.gz emacs-0122b24d9079dc5cc7550eed8e71591bd1241dc8.zip | |
Highlight more Module methods
* lisp/progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
Module methods.
Fixes: debbugs:17216
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/progmodes/ruby-mode.el | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3b5b7898933..09d5ff427bb 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2014-04-09 Dmitry Gutov <dgutov@yandex.ru> | ||
| 2 | |||
| 3 | * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more | ||
| 4 | Module methods. (Bug#17216) | ||
| 5 | |||
| 1 | 2014-04-08 Stefan Monnier <monnier@iro.umontreal.ca> | 6 | 2014-04-08 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 7 | ||
| 3 | * help.el (describe-bindings): Fix buffer handling (bug#17210). | 8 | * help.el (describe-bindings): Fix buffer handling (bug#17210). |
diff --git a/lisp/progmodes/ruby-mode.el b/lisp/progmodes/ruby-mode.el index 6c6cdd3427d..912736707ef 100644 --- a/lisp/progmodes/ruby-mode.el +++ b/lisp/progmodes/ruby-mode.el | |||
| @@ -2065,6 +2065,10 @@ See `font-lock-syntax-table'.") | |||
| 2065 | "include" | 2065 | "include" |
| 2066 | "module_function" | 2066 | "module_function" |
| 2067 | "prepend" | 2067 | "prepend" |
| 2068 | "private_class_method" | ||
| 2069 | "private_constant" | ||
| 2070 | "public_class_method" | ||
| 2071 | "public_constant" | ||
| 2068 | "refine" | 2072 | "refine" |
| 2069 | "using") | 2073 | "using") |
| 2070 | 'symbols)) | 2074 | 'symbols)) |