diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-05-23 21:46:18 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-05-23 21:46:18 +0000 |
| commit | 698dbf0c4f4bb76f0c8b1a0b22cc303e8fa61079 (patch) | |
| tree | ef12245c801ebbc4b6e2e94bafd2618cb3c179ee | |
| parent | e7bb657ef68b763aa45d2680aeffa90509cde1c8 (diff) | |
| download | ruby-698dbf0c4f4bb76f0c8b1a0b22cc303e8fa61079.tar.gz ruby-698dbf0c4f4bb76f0c8b1a0b22cc303e8fa61079.tar.xz ruby-698dbf0c4f4bb76f0c8b1a0b22cc303e8fa61079.zip | |
* misc/ruby-mode.el (ruby-font-lock-syntactic-keywords): string
literals to be matched non-greedy.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@8512 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | misc/ruby-mode.el | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Tue May 24 06:45:31 2005 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * misc/ruby-mode.el (ruby-font-lock-syntactic-keywords): string + literals to be matched non-greedy. + Tue May 24 00:34:32 2005 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> * test/soap/calc: method name 'set' was able to crash with a class Set. diff --git a/misc/ruby-mode.el b/misc/ruby-mode.el index 61d865060..e13e84633 100644 --- a/misc/ruby-mode.el +++ b/misc/ruby-mode.el @@ -999,7 +999,7 @@ balanced expression is found." ("\\(#\\)[{$@]" 1 (1 . nil)) ;; the last $', $", $` in the respective string is not variable ;; the last ?', ?", ?` in the respective string is not ascii code - ("\\(^\\|[\[ \t\n<+\(,=]\\)\\(['\"`]\\)\\(\\\\.\\|\\2\\|[^'\"`\n\\\\]\\)*\\\\?[?$]\\(\\2\\)" + ("\\(^\\|[\[ \t\n<+\(,=]\\)\\(['\"`]\\)\\(\\\\.\\|\\2\\|[^'\"`\n\\\\]\\)*?\\\\?[?$]\\(\\2\\)" (2 (7 . nil)) (4 (7 . nil))) ;; $' $" $` .... are variables |
