diff --git a/ChangeLog b/ChangeLog index fef288a7e1..85a941af8e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Tue May 24 06:45:31 2005 Nobuyoshi Nakada + + * misc/ruby-mode.el (ruby-font-lock-syntactic-keywords): string + literals to be matched non-greedy. + Tue May 24 00:39:14 2005 NAKAMURA, Hiroshi * 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 2190a932bb..7f2bcabd58 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