diff options
| author | Dan Nicolaescu | 2009-11-11 06:36:41 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2009-11-11 06:36:41 +0000 |
| commit | 2f7f4beee9769664ec99df193a16fef337d8812a (patch) | |
| tree | 77e35fd95f6903ae58fcfbce4187ac3bb63493e2 /lisp/faces.el | |
| parent | a042de45b167334d8725debf27e6ece1be0a1f57 (diff) | |
| download | emacs-2f7f4beee9769664ec99df193a16fef337d8812a.tar.gz emacs-2f7f4beee9769664ec99df193a16fef337d8812a.zip | |
* progmodes/grep.el (grep-regexp-alist):
* international/mule-cmds.el (iso-2022-control-alist):
* emacs-lisp/timer.el (timer-duration-words):
* subr.el (version-separator, version-regexp-alist):
* minibuffer.el (completion-styles-alist):
* faces.el (face-attribute-name-alist, list-faces-sample-text):
Change defvars to defconsts.
Diffstat (limited to 'lisp/faces.el')
| -rw-r--r-- | lisp/faces.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/faces.el b/lisp/faces.el index ebdca457177..e117eb16751 100644 --- a/lisp/faces.el +++ b/lisp/faces.el | |||
| @@ -1047,7 +1047,7 @@ an integer value." | |||
| 1047 | valid))) | 1047 | valid))) |
| 1048 | 1048 | ||
| 1049 | 1049 | ||
| 1050 | (defvar face-attribute-name-alist | 1050 | (defconst face-attribute-name-alist |
| 1051 | '((:family . "font family") | 1051 | '((:family . "font family") |
| 1052 | (:foundry . "font foundry") | 1052 | (:foundry . "font foundry") |
| 1053 | (:width . "character set width") | 1053 | (:width . "character set width") |
| @@ -1235,7 +1235,7 @@ Value is a list (FACE NEW-VALUE) where FACE is the face read | |||
| 1235 | ;;; Listing faces. | 1235 | ;;; Listing faces. |
| 1236 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 1236 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
| 1237 | 1237 | ||
| 1238 | (defvar list-faces-sample-text | 1238 | (defconst list-faces-sample-text |
| 1239 | "abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ" | 1239 | "abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ" |
| 1240 | "*Text string to display as the sample text for `list-faces-display'.") | 1240 | "*Text string to display as the sample text for `list-faces-display'.") |
| 1241 | 1241 | ||