Index: re-builder.el =================================================================== RCS file: /cvsroot/emacs/emacs/lisp/emacs-lisp/re-builder.el,v retrieving revision 1.20 diff -u -u -r1.20 re-builder.el --- re-builder.el 27 Feb 2005 10:35:51 -0000 1.20 +++ re-builder.el 27 Feb 2005 17:17:00 -0000 @@ -71,6 +71,9 @@ ;; is a package by me and its support may go away as it is nearly the ;; same as the `sregex' package in Emacs) +;; Note that the `sregex,' `rx' and `lisp-re' syntaxes will only be +;; available in XEmacs if you've installed them yourself. + ;; Editing symbolic expressions is done through a major mode derived ;; from `emacs-lisp-mode' so you'll get all the good stuff like ;; automatic indentation and font-locking etc. @@ -148,9 +151,9 @@ (defface reb-match-0 '((((class color) (background light)) - :background "lightblue") + (:background "lightblue")) (((class color) (background dark)) - :background "steelblue4") + (:background "steelblue4")) (t :inverse-video t)) "Used for displaying the whole match." @@ -158,9 +161,9 @@ (defface reb-match-1 '((((class color) (background light)) - :background "aquamarine") + (:background "aquamarine")) (((class color) (background dark)) - :background "blue3") + (:background "blue3")) (t :inverse-video t)) "Used for displaying the first matching subexpression." @@ -168,9 +171,9 @@ (defface reb-match-2 '((((class color) (background light)) - :background "springgreen") + (:background "springgreen")) (((class color) (background dark)) - :background "chartreuse4") + (:background "chartreuse4")) (t :inverse-video t)) "Used for displaying the second matching subexpression." @@ -178,9 +181,9 @@ (defface reb-match-3 '((((class color) (background light)) - :background "yellow") + (:background "yellow")) (((class color) (background dark)) - :background "sienna4") + (:background "sienna4")) (t :inverse-video t)) "Used for displaying the third matching subexpression."