comparison lisp/international/mule-cmds.el @ 105950:e411fa8e0abf

* 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.
author Dan Nicolaescu <dann@ics.uci.edu>
date Wed, 11 Nov 2009 06:36:41 +0000
parents 6bc99fd16720
children 25e1d7e37015
comparison
equal deleted inserted replaced
105949:981ea078cf76 105950:e411fa8e0abf
2813 2813
2814 2814
2815 ;; Pretty description of encoded string 2815 ;; Pretty description of encoded string
2816 2816
2817 ;; Alist of ISO 2022 control code vs the corresponding mnemonic string. 2817 ;; Alist of ISO 2022 control code vs the corresponding mnemonic string.
2818 (defvar iso-2022-control-alist 2818 (defconst iso-2022-control-alist
2819 '((?\x1b . "ESC") 2819 '((?\x1b . "ESC")
2820 (?\x0e . "SO") 2820 (?\x0e . "SO")
2821 (?\x0f . "SI") 2821 (?\x0f . "SI")
2822 (?\x8e . "SS2") 2822 (?\x8e . "SS2")
2823 (?\x8f . "SS3") 2823 (?\x8f . "SS3")