comparison lisp/dired.el @ 105957:25e1d7e37015

* widget.el (define-widget): Purecopy the docstring. * international/mule-cmds.el (charset): Do not purecopy the docstring here, define-widget does it. * textmodes/texinfo.el (texinfo-open-quote, texinfo-close-quote): * textmodes/bibtex-style.el (auto-mode-alist): * progmodes/inf-lisp.el (inferior-lisp-prompt): * progmodes/compile.el (compile-command): * language/korea-util.el (default-korean-keyboard): * international/mule-conf.el (file-coding-system-alist): * emacs-lisp/eldoc.el (eldoc-minor-mode-string): * tooltip.el (tooltip-frame-parameters): * newcomment.el (comment-end, comment-padding): * dired.el (dired-trivial-filenames): * comint.el (comint-file-name-prefix): Purecopy initial values.
author Dan Nicolaescu <dann@ics.uci.edu>
date Wed, 11 Nov 2009 19:24:20 +0000
parents a0f778f4a995
children f4dc8b8f20d2
comparison
equal deleted inserted replaced
105956:31f80330b77b 105957:25e1d7e37015
103 always set this variable to t." 103 always set this variable to t."
104 :type 'boolean 104 :type 'boolean
105 :group 'dired-mark) 105 :group 'dired-mark)
106 106
107 ;;;###autoload 107 ;;;###autoload
108 (defcustom dired-trivial-filenames "^\\.\\.?$\\|^#" 108 (defcustom dired-trivial-filenames (purecopy "^\\.\\.?$\\|^#")
109 "Regexp of files to skip when finding first file of a directory. 109 "Regexp of files to skip when finding first file of a directory.
110 A value of nil means move to the subdir line. 110 A value of nil means move to the subdir line.
111 A value of t means move to first file." 111 A value of t means move to first file."
112 :type '(choice (const :tag "Move to subdir" nil) 112 :type '(choice (const :tag "Move to subdir" nil)
113 (const :tag "Move to first" t) 113 (const :tag "Move to first" t)