aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLute Kamstra2005-04-11 23:34:04 +0000
committerLute Kamstra2005-04-11 23:34:04 +0000
commit60c19d5ef80f707669a7dc2d4e4b07f1956e338d (patch)
tree724e1a4599645b1a4b8eaa0bfdd0aeaeb644a411
parent8016430ace3e56f8003f73ed52b5e107c6755603 (diff)
downloademacs-60c19d5ef80f707669a7dc2d4e4b07f1956e338d.tar.gz
emacs-60c19d5ef80f707669a7dc2d4e4b07f1956e338d.zip
(rc-generic-mode, rul-generic-mode): Fix auto-mode-alist entries.
(etc-fstab-generic-mode): Tweak fontification.
-rw-r--r--lisp/generic-x.el12
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/generic-x.el b/lisp/generic-x.el
index bb8d91be9df..f700ff6041d 100644
--- a/lisp/generic-x.el
+++ b/lisp/generic-x.el
@@ -876,7 +876,7 @@ generic-x to enable the specified modes."
876 '("^#[ \t]*\\(\\sw+\\)\\>[ \t]*\\(\\sw+\\)?" 876 '("^#[ \t]*\\(\\sw+\\)\\>[ \t]*\\(\\sw+\\)?"
877 (1 font-lock-constant-face) 877 (1 font-lock-constant-face)
878 (2 font-lock-variable-name-face nil t)))) 878 (2 font-lock-variable-name-face nil t))))
879 '("\\.[rR][cC]$") 879 '("\\.[rR][cC]\\'")
880 nil 880 nil
881 "Generic mode for MS-Windows Resource files." 881 "Generic mode for MS-Windows Resource files."
882 :group 'generic-x)) 882 :group 'generic-x))
@@ -1497,7 +1497,7 @@ generic-x to enable the specified modes."
1497 (generic-make-keywords-list 1497 (generic-make-keywords-list
1498 installshield-funarg-constants-list 1498 installshield-funarg-constants-list
1499 font-lock-variable-name-face "[^_]" "[^_]"))) ; is this face the best choice? 1499 font-lock-variable-name-face "[^_]" "[^_]"))) ; is this face the best choice?
1500 '("\\.[rR][uU][lL]$") 1500 '("\\.[rR][uU][lL]\\'")
1501 '(generic-rul-mode-setup-function) 1501 '(generic-rul-mode-setup-function)
1502 "Generic mode for InstallShield RUL files." 1502 "Generic mode for InstallShield RUL files."
1503 :group 'generic-x) 1503 :group 'generic-x)
@@ -1675,8 +1675,8 @@ generic-x to enable the specified modes."
1675 "auto" 1675 "auto"
1676 "ignore") 1676 "ignore")
1677 '(("^\\([/-A-Za-z0-9_]+\\)\\s-+\\([/-A-Za-z0-9_]+\\)" 1677 '(("^\\([/-A-Za-z0-9_]+\\)\\s-+\\([/-A-Za-z0-9_]+\\)"
1678 (1 font-lock-type-face) 1678 (1 font-lock-type-face t)
1679 (2 font-lock-variable-name-face))) 1679 (2 font-lock-variable-name-face t)))
1680 '("/etc/[v]*fstab\\'") 1680 '("/etc/[v]*fstab\\'")
1681 (list 1681 (list
1682 (function 1682 (function
@@ -1758,7 +1758,7 @@ generic-x to enable the specified modes."
1758 ;; List of additional font-lock-expressions 1758 ;; List of additional font-lock-expressions
1759 '(("\\([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+\\)" 1 font-lock-constant-face) 1759 '(("\\([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+\\)" 1 font-lock-constant-face)
1760 ("^\\([.A-Za-z0-9]+\\)" 1 font-lock-variable-name-face)) 1760 ("^\\([.A-Za-z0-9]+\\)" 1 font-lock-variable-name-face))
1761 ;; List of additional automode-alist expressions 1761 ;; List of additional auto-mode-alist expressions
1762 nil 1762 nil
1763 ;; List of set up functions to call 1763 ;; List of set up functions to call
1764 nil 1764 nil
@@ -1779,7 +1779,7 @@ generic-x to enable the specified modes."
1779 '("nameserver" "domain" "search" "sortlist" "options") 1779 '("nameserver" "domain" "search" "sortlist" "options")
1780 ;; List of additional font-lock-expressions 1780 ;; List of additional font-lock-expressions
1781 nil 1781 nil
1782 ;; List of additional automode-alist expressions 1782 ;; List of additional auto-mode-alist expressions
1783 '("/etc/resolv[e]?.conf\\'") 1783 '("/etc/resolv[e]?.conf\\'")
1784 ;; List of set up functions to call 1784 ;; List of set up functions to call
1785 nil 1785 nil