diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-10-02 07:48:42 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-10-02 07:48:42 +0000 |
commit | 846ce3e7cec9b173d8d5c4808f84dd75947bb101 (patch) | |
tree | 9e3660449780967673d6a687f00329710e899537 /misc | |
parent | 46b28a7b44ea1ecfdb5698f3c500790908f58bc1 (diff) | |
download | ruby-846ce3e7cec9b173d8d5c4808f84dd75947bb101.tar.gz ruby-846ce3e7cec9b173d8d5c4808f84dd75947bb101.tar.xz ruby-846ce3e7cec9b173d8d5c4808f84dd75947bb101.zip |
matz
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@985 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'misc')
-rw-r--r-- | misc/ruby-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/ruby-mode.el b/misc/ruby-mode.el index b5d70403e..787a048b3 100644 --- a/misc/ruby-mode.el +++ b/misc/ruby-mode.el @@ -670,9 +670,9 @@ An end of a defun is found by moving forward from the beginning of one." (setq font-lock-syntactic-keywords '(("\\$\\([#\"'`$\\]\\)" 1 (1 . nil)) ("\\(#\\)[{$@]" 1 (1 . nil)) - ("\\(/\\).*\\(/\\)" + ("\\(/\\)\\([^/]\\|\\\\/\\)*\\(/\\)" (1 (7 . ?')) - (2 (7 . ?'))))) + (3 (7 . ?'))))) (make-local-variable 'font-lock-defaults) (setq font-lock-defaults '((ruby-font-lock-keywords) nil nil)) (setq font-lock-keywords ruby-font-lock-keywords))) |