summaryrefslogtreecommitdiff
path: root/lisp/faces.el
diff options
context:
space:
mode:
authorDan Nicolaescu <dann@ics.uci.edu>2009-11-11 06:36:41 +0000
committerDan Nicolaescu <dann@ics.uci.edu>2009-11-11 06:36:41 +0000
commit2f7f4beee9769664ec99df193a16fef337d8812a (patch)
tree77e35fd95f6903ae58fcfbce4187ac3bb63493e2 /lisp/faces.el
parenta042de45b167334d8725debf27e6ece1be0a1f57 (diff)
downloademacs-2f7f4beee9769664ec99df193a16fef337d8812a.tar.gz
emacs-2f7f4beee9769664ec99df193a16fef337d8812a.tar.bz2
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.el4
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."
valid)))
-(defvar face-attribute-name-alist
+(defconst face-attribute-name-alist
'((:family . "font family")
(:foundry . "font foundry")
(:width . "character set width")
@@ -1235,7 +1235,7 @@ Value is a list (FACE NEW-VALUE) where FACE is the face read
;;; Listing faces.
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-(defvar list-faces-sample-text
+(defconst list-faces-sample-text
"abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"*Text string to display as the sample text for `list-faces-display'.")