summaryrefslogtreecommitdiffstats
path: root/misc
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-09-01 07:25:25 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-09-01 07:25:25 +0000
commit7e0cb3d7356f47a8473eae7094c4bc135bccebd0 (patch)
treea42b760319f85d37afab6d4f8af0038901772ec7 /misc
parent80bec905cbb7719a4f241ae859fa705a8d265894 (diff)
downloadruby-7e0cb3d7356f47a8473eae7094c4bc135bccebd0.tar.gz
ruby-7e0cb3d7356f47a8473eae7094c4bc135bccebd0.tar.xz
ruby-7e0cb3d7356f47a8473eae7094c4bc135bccebd0.zip
matz
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@923 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'misc')
-rw-r--r--misc/ruby-mode.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/misc/ruby-mode.el b/misc/ruby-mode.el
index cffd853bb..782d04914 100644
--- a/misc/ruby-mode.el
+++ b/misc/ruby-mode.el
@@ -694,7 +694,10 @@ An end of a defun is found by moving forward from the beginning of one."
(make-local-variable 'font-lock-syntactic-keywords)
(setq font-lock-syntactic-keywords
'(("\\$\\([#\"'`$\\]\\)" 1 (1 . nil))
- ("\\(#\\)[{$@]" 1 (1 . nil))))
+ ("\\(#\\)[{$@]" 1 (1 . nil))
+ ("\\(/\\).*\\(/\\)"
+ (1 (7 . ?'))
+ (2 (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)))