diff options
| author | Dan Nicolaescu | 2009-11-11 19:24:20 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2009-11-11 19:24:20 +0000 |
| commit | aaa448c984ad227585dac4a2fe2ee5bdc467e25e (patch) | |
| tree | 73cfced623c9a2f6596f52eb261a28660031cc33 /lisp/progmodes | |
| parent | 04420943de5a7a92f94c7642b76990c77ca751f8 (diff) | |
| download | emacs-aaa448c984ad227585dac4a2fe2ee5bdc467e25e.tar.gz emacs-aaa448c984ad227585dac4a2fe2ee5bdc467e25e.zip | |
* 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.
Diffstat (limited to 'lisp/progmodes')
| -rw-r--r-- | lisp/progmodes/compile.el | 2 | ||||
| -rw-r--r-- | lisp/progmodes/inf-lisp.el | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 91bfcf01bee..f101fe65064 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el | |||
| @@ -588,7 +588,7 @@ The value nil as an element means to try the default directory." | |||
| 588 | :group 'compilation) | 588 | :group 'compilation) |
| 589 | 589 | ||
| 590 | ;;;###autoload | 590 | ;;;###autoload |
| 591 | (defcustom compile-command "make -k " | 591 | (defcustom compile-command (purecopy "make -k ") |
| 592 | "Last shell command used to do a compilation; default for next compilation. | 592 | "Last shell command used to do a compilation; default for next compilation. |
| 593 | 593 | ||
| 594 | Sometimes it is useful for files to supply local values for this variable. | 594 | Sometimes it is useful for files to supply local values for this variable. |
diff --git a/lisp/progmodes/inf-lisp.el b/lisp/progmodes/inf-lisp.el index e19da49a223..bb07642bcea 100644 --- a/lisp/progmodes/inf-lisp.el +++ b/lisp/progmodes/inf-lisp.el | |||
| @@ -159,7 +159,7 @@ but it works only in Common Lisp." | |||
| 159 | :group 'inferior-lisp) | 159 | :group 'inferior-lisp) |
| 160 | 160 | ||
| 161 | ;;;###autoload | 161 | ;;;###autoload |
| 162 | (defcustom inferior-lisp-prompt "^[^> \n]*>+:? *" | 162 | (defcustom inferior-lisp-prompt (purecopy "^[^> \n]*>+:? *") |
| 163 | "Regexp to recognize prompts in the Inferior Lisp mode. | 163 | "Regexp to recognize prompts in the Inferior Lisp mode. |
| 164 | Defaults to \"^[^> \\n]*>+:? *\", which works pretty good for Lucid, kcl, | 164 | Defaults to \"^[^> \\n]*>+:? *\", which works pretty good for Lucid, kcl, |
| 165 | and franz. This variable is used to initialize `comint-prompt-regexp' in the | 165 | and franz. This variable is used to initialize `comint-prompt-regexp' in the |