diff options
| author | Dmitry Gutov | 2016-03-19 00:37:09 +0200 |
|---|---|---|
| committer | Dmitry Gutov | 2016-03-19 00:37:54 +0200 |
| commit | 26f9c5075ff273013418a66b70fae477301d41d5 (patch) | |
| tree | a6b4882e27ccafcdcef77ba1d0258ebe87041d26 /lisp/progmodes/ruby-mode.el | |
| parent | 413e73b5dbce8dc89f2c3b9f4f1441fdf931c77d (diff) | |
| download | emacs-26f9c5075ff273013418a66b70fae477301d41d5.tar.gz emacs-26f9c5075ff273013418a66b70fae477301d41d5.zip | |
Fixup the "normal" matcher; highlight global var symbols, too
* lisp/progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight
operator name symbols with the "normal" matcher (it actually
needed updating). Highlight global variable symbols, too.
Diffstat (limited to 'lisp/progmodes/ruby-mode.el')
| -rw-r--r-- | lisp/progmodes/ruby-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/ruby-mode.el b/lisp/progmodes/ruby-mode.el index 2389f742937..972bf99145e 100644 --- a/lisp/progmodes/ruby-mode.el +++ b/lisp/progmodes/ruby-mode.el | |||
| @@ -2173,7 +2173,7 @@ See `font-lock-syntax-table'.") | |||
| 2173 | 'font-lock-string-face))) | 2173 | 'font-lock-string-face))) |
| 2174 | ;; Perl-ish keywords. | 2174 | ;; Perl-ish keywords. |
| 2175 | "\\_<\\(?:BEGIN\\|END\\)\\_>\\|^__END__$" | 2175 | "\\_<\\(?:BEGIN\\|END\\)\\_>\\|^__END__$" |
| 2176 | ;; Variables. | 2176 | ;; Singleton objects. |
| 2177 | (,(concat ruby-font-lock-keyword-beg-re | 2177 | (,(concat ruby-font-lock-keyword-beg-re |
| 2178 | "\\_<\\(nil\\|true\\|false\\)\\_>") | 2178 | "\\_<\\(nil\\|true\\|false\\)\\_>") |
| 2179 | 1 font-lock-constant-face) | 2179 | 1 font-lock-constant-face) |
| @@ -2181,7 +2181,7 @@ See `font-lock-syntax-table'.") | |||
| 2181 | ("\\_<__\\(?:LINE\\|ENCODING\\|FILE\\)__\\_>" | 2181 | ("\\_<__\\(?:LINE\\|ENCODING\\|FILE\\)__\\_>" |
| 2182 | (0 font-lock-builtin-face)) | 2182 | (0 font-lock-builtin-face)) |
| 2183 | ;; Symbols. | 2183 | ;; Symbols. |
| 2184 | ("\\(^\\|[^:]\\)\\(:@?\\(?:\\w\\|_\\)+\\)\\([!?=]\\)?" | 2184 | ("\\(^\\|[^:]\\)\\(:@\\{0,2\\}\\(?:\\sw\\|\\s_\\)+\\)" |
| 2185 | (2 font-lock-constant-face) | 2185 | (2 font-lock-constant-face) |
| 2186 | (3 (unless (and (eq (char-before (match-end 3)) ?=) | 2186 | (3 (unless (and (eq (char-before (match-end 3)) ?=) |
| 2187 | (eq (char-after (match-end 3)) ?>)) | 2187 | (eq (char-after (match-end 3)) ?>)) |