comparison lisp/minibuffer.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 45b3f4e55e6e
children 6a8befbb8e39
comparison
equal deleted inserted replaced
105949:981ea078cf76 105950:e411fa8e0abf
356 If the value is `lazy', the *Completions* buffer is only displayed after 356 If the value is `lazy', the *Completions* buffer is only displayed after
357 the second failed attempt to complete." 357 the second failed attempt to complete."
358 :type '(choice (const nil) (const t) (const lazy)) 358 :type '(choice (const nil) (const t) (const lazy))
359 :group 'minibuffer) 359 :group 'minibuffer)
360 360
361 (defvar completion-styles-alist 361 (defconst completion-styles-alist
362 '((emacs21 362 '((emacs21
363 completion-emacs21-try-completion completion-emacs21-all-completions 363 completion-emacs21-try-completion completion-emacs21-all-completions
364 "Simple prefix-based completion.") 364 "Simple prefix-based completion.")
365 (emacs22 365 (emacs22
366 completion-emacs22-try-completion completion-emacs22-all-completions 366 completion-emacs22-try-completion completion-emacs22-all-completions