diff options
author | Peter Breton <pbreton@attbi.com> | 2000-10-08 12:24:23 +0000 |
---|---|---|
committer | Peter Breton <pbreton@attbi.com> | 2000-10-08 12:24:23 +0000 |
commit | 4e953aff359978a749401bac06d83de5909d99e9 (patch) | |
tree | 88e9ff03fccd7e1c18d19880a9c32332dd7cb4c3 /lisp/generic-x.el | |
parent | 059cd2e1afb33ac6a88dda2fa7122b3fbeb5610a (diff) | |
download | emacs-4e953aff359978a749401bac06d83de5909d99e9.tar.gz |
Removed eval-when-compile statements from rul-generic-mode
Diffstat (limited to 'lisp/generic-x.el')
-rw-r--r-- | lisp/generic-x.el | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/lisp/generic-x.el b/lisp/generic-x.el index ccb441b61d0..8335cf038f0 100644 --- a/lisp/generic-x.el +++ b/lisp/generic-x.el @@ -1419,24 +1419,21 @@ you must reload generic-x to enable the specified modes." (1 font-lock-keyword-face) (2 font-lock-constant-face nil t)) ;; system variables - (eval-when-compile - (generic-make-keywords-list - installshield-system-variables-list - 'font-lock-variable-name-face "[^_]" "[^_]")) + (generic-make-keywords-list + installshield-system-variables-list + 'font-lock-variable-name-face "[^_]" "[^_]") ;; system functions (generic-make-keywords-list installshield-system-functions-list 'font-lock-function-name-face "[^_]" "[^_]") ;; type keywords - (eval-when-compile - (generic-make-keywords-list - installshield-types-list - 'font-lock-type-face "[^_]" "[^_]")) + (generic-make-keywords-list + installshield-types-list + 'font-lock-type-face "[^_]" "[^_]") ;; function argument constants - (eval-when-compile - (generic-make-keywords-list - installshield-funarg-constants-list - 'font-lock-variable-name-face "[^_]" "[^_]")) ; is this face the best choice? + (generic-make-keywords-list + installshield-funarg-constants-list + 'font-lock-variable-name-face "[^_]" "[^_]") ; is this face the best choice? ) (list "\\.[rR][uU][lL]$") (list |