diff options
| author | Stefan Monnier | 2005-03-22 19:43:13 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2005-03-22 19:43:13 +0000 |
| commit | 44ebeb1b6ea04630f98f18c296ae098fc400dcbd (patch) | |
| tree | 41e4edf680cb74fa77e12c07ebe52e8b7063be22 | |
| parent | 0302b80e5370a57fac21d226be1064c6cca923c3 (diff) | |
| download | emacs-44ebeb1b6ea04630f98f18c296ae098fc400dcbd.tar.gz emacs-44ebeb1b6ea04630f98f18c296ae098fc400dcbd.zip | |
(perl-font-lock-keywords-2):
Accept qualified variable and function names.
| -rw-r--r-- | lisp/progmodes/perl-mode.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/progmodes/perl-mode.el b/lisp/progmodes/perl-mode.el index c65ae0d284e..6fcd16e97c6 100644 --- a/lisp/progmodes/perl-mode.el +++ b/lisp/progmodes/perl-mode.el | |||
| @@ -207,11 +207,11 @@ The expansion is entirely correct because it uses the C preprocessor." | |||
| 207 | '("\\<\\(local\\|my\\)\\>" . font-lock-type-face) | 207 | '("\\<\\(local\\|my\\)\\>" . font-lock-type-face) |
| 208 | ;; | 208 | ;; |
| 209 | ;; Fontify function, variable and file name references. | 209 | ;; Fontify function, variable and file name references. |
| 210 | '("&\\(\\sw+\\)" 1 font-lock-function-name-face) | 210 | '("&\\(\\sw+\\(::\\sw+\\)*\\)" 1 font-lock-function-name-face) |
| 211 | ;; Additionally underline non-scalar variables. Maybe this is a bad idea. | 211 | ;; Additionally underline non-scalar variables. Maybe this is a bad idea. |
| 212 | ;;'("[$@%*][#{]?\\(\\sw+\\)" 1 font-lock-variable-name-face) | 212 | ;;'("[$@%*][#{]?\\(\\sw+\\)" 1 font-lock-variable-name-face) |
| 213 | '("[$*]{?\\(\\sw+\\)" 1 font-lock-variable-name-face) | 213 | '("[$*]{?\\(\\sw+\\(::\\sw+\\)*\\)" 1 font-lock-variable-name-face) |
| 214 | '("\\([@%]\\|\\$#\\)\\(\\sw+\\)" | 214 | '("\\([@%]\\|\\$#\\)\\(\\sw+\\(::\\sw+\\)*\\)" |
| 215 | (2 (cons font-lock-variable-name-face '(underline)))) | 215 | (2 (cons font-lock-variable-name-face '(underline)))) |
| 216 | '("<\\(\\sw+\\)>" 1 font-lock-constant-face) | 216 | '("<\\(\\sw+\\)>" 1 font-lock-constant-face) |
| 217 | ;; | 217 | ;; |