* misc/ruby-mode.el (ruby-font-lock-syntactic-keywords): syntax
classes are not allowed inside character classes. [ruby-talk:60996] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3325 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
bd86e81602
commit
5fd433efbb
@ -1,3 +1,9 @@
|
|||||||
|
Fri Jan 10 01:23:45 2003 Nobuyoshi Nakada <nobu.nokada@softhome.net>
|
||||||
|
|
||||||
|
* misc/ruby-mode.el (ruby-font-lock-syntactic-keywords): syntax
|
||||||
|
classes are not allowed inside character classes.
|
||||||
|
[ruby-talk:60996]
|
||||||
|
|
||||||
Thu Jan 9 23:28:01 2003 Nobuyoshi Nakada <nobu.nokada@softhome.net>
|
Thu Jan 9 23:28:01 2003 Nobuyoshi Nakada <nobu.nokada@softhome.net>
|
||||||
|
|
||||||
* configure.in: AC_MSG_FAILURE is a new macro in 2.54b or later.
|
* configure.in: AC_MSG_FAILURE is a new macro in 2.54b or later.
|
||||||
|
@ -790,17 +790,17 @@ An end of a defun is found by moving forward from the beginning of one."
|
|||||||
("\\(#\\)[{$@]" 1 (1 . nil))
|
("\\(#\\)[{$@]" 1 (1 . nil))
|
||||||
;; the last $' in the string ,'...$' is not variable
|
;; the last $' in the string ,'...$' is not variable
|
||||||
;; the last ?' in the string ,'...?' is not ascii code
|
;; the last ?' in the string ,'...?' is not ascii code
|
||||||
("\\(^\\|[[\\s <+(,=]\\)\\('\\)[^'\n\\\\]*\\(\\\\.[^'\n\\\\]*\\)*[?$]\\('\\)"
|
("\\(^\\|[[ \t\n<+(,=]\\)\\('\\)[^'\n\\\\]*\\(\\\\.[^'\n\\\\]*\\)*[?$]\\('\\)"
|
||||||
(2 (7 . nil))
|
(2 (7 . nil))
|
||||||
(4 (7 . nil)))
|
(4 (7 . nil)))
|
||||||
;; the last $` in the string ,`...$` is not variable
|
;; the last $` in the string ,`...$` is not variable
|
||||||
;; the last ?` in the string ,`...?` is not ascii code
|
;; the last ?` in the string ,`...?` is not ascii code
|
||||||
("\\(^\\|[[\\s <+(,=]\\)\\(`\\)[^`\n\\\\]*\\(\\\\.[^`\n\\\\]*\\)*[?$]\\(`\\)"
|
("\\(^\\|[[ \t\n<+(,=]\\)\\(`\\)[^`\n\\\\]*\\(\\\\.[^`\n\\\\]*\\)*[?$]\\(`\\)"
|
||||||
(2 (7 . nil))
|
(2 (7 . nil))
|
||||||
(4 (7 . nil)))
|
(4 (7 . nil)))
|
||||||
;; the last $" in the string ,"...$" is not variable
|
;; the last $" in the string ,"...$" is not variable
|
||||||
;; the last ?" in the string ,"...?" is not ascii code
|
;; the last ?" in the string ,"...?" is not ascii code
|
||||||
("\\(^\\|[[\\s <+(,=]\\)\\(\"\\)[^\"\n\\\\]*\\(\\\\.[^\"\n\\\\]*\\)*[?$]\\(\"\\)"
|
("\\(^\\|[[ \t\n<+(,=]\\)\\(\"\\)[^\"\n\\\\]*\\(\\\\.[^\"\n\\\\]*\\)*[?$]\\(\"\\)"
|
||||||
(2 (7 . nil))
|
(2 (7 . nil))
|
||||||
(4 (7 . nil)))
|
(4 (7 . nil)))
|
||||||
;; $' $" $` .... are variables
|
;; $' $" $` .... are variables
|
||||||
@ -811,7 +811,7 @@ An end of a defun is found by moving forward from the beginning of one."
|
|||||||
(4 (7 . ?/))
|
(4 (7 . ?/))
|
||||||
(6 (7 . ?/)))
|
(6 (7 . ?/)))
|
||||||
;; %Q!...!
|
;; %Q!...!
|
||||||
("\\(^\\|[[\\s <+(,=]\\)%[xrqQ]?\\([^a-zA-Z0-9 \n]\\)[^\n\\\\]*\\(\\\\.[^\n\\\\]*\\)*\\(\\2\\)"
|
("\\(^\\|[[ \t\n<+(,=]\\)%[xrqQwW]?\\([^<[{(a-zA-Z0-9 \n]\\)[^\n\\\\]*\\(\\\\.[^\n\\\\]*\\)*\\(\\2\\)"
|
||||||
(2 (7 . nil))
|
(2 (7 . nil))
|
||||||
(4 (7 . nil)))
|
(4 (7 . nil)))
|
||||||
("^\\(=\\)begin\\(\\s \\|$\\)" 1 (7 . nil))
|
("^\\(=\\)begin\\(\\s \\|$\\)" 1 (7 . nil))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user