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/textmodes | |
| 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/textmodes')
| -rw-r--r-- | lisp/textmodes/bibtex-style.el | 2 | ||||
| -rw-r--r-- | lisp/textmodes/texinfo.el | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lisp/textmodes/bibtex-style.el b/lisp/textmodes/bibtex-style.el index ef5dd38e3bf..6f67d11d78e 100644 --- a/lisp/textmodes/bibtex-style.el +++ b/lisp/textmodes/bibtex-style.el | |||
| @@ -63,7 +63,7 @@ | |||
| 63 | ("\\<\\(FUNCTION\\|MACRO\\)\\s-+{\\([^}\n]+\\)}" | 63 | ("\\<\\(FUNCTION\\|MACRO\\)\\s-+{\\([^}\n]+\\)}" |
| 64 | (2 font-lock-function-name-face)))) | 64 | (2 font-lock-function-name-face)))) |
| 65 | 65 | ||
| 66 | ;;;###autoload (add-to-list 'auto-mode-alist '("\\.bst\\'" . bibtex-style-mode)) | 66 | ;;;###autoload (add-to-list 'auto-mode-alist (cons (purecopy "\\.bst\\'") 'bibtex-style-mode)) |
| 67 | 67 | ||
| 68 | ;;;###autoload | 68 | ;;;###autoload |
| 69 | (define-derived-mode bibtex-style-mode nil "BibStyle" | 69 | (define-derived-mode bibtex-style-mode nil "BibStyle" |
diff --git a/lisp/textmodes/texinfo.el b/lisp/textmodes/texinfo.el index d7098639ae5..6b32c165d82 100644 --- a/lisp/textmodes/texinfo.el +++ b/lisp/textmodes/texinfo.el | |||
| @@ -42,13 +42,13 @@ | |||
| 42 | :group 'docs) | 42 | :group 'docs) |
| 43 | 43 | ||
| 44 | ;;;###autoload | 44 | ;;;###autoload |
| 45 | (defcustom texinfo-open-quote "``" | 45 | (defcustom texinfo-open-quote (purecopy "``") |
| 46 | "String inserted by typing \\[texinfo-insert-quote] to open a quotation." | 46 | "String inserted by typing \\[texinfo-insert-quote] to open a quotation." |
| 47 | :type 'string | 47 | :type 'string |
| 48 | :group 'texinfo) | 48 | :group 'texinfo) |
| 49 | 49 | ||
| 50 | ;;;###autoload | 50 | ;;;###autoload |
| 51 | (defcustom texinfo-close-quote "''" | 51 | (defcustom texinfo-close-quote (purecopy "''") |
| 52 | "String inserted by typing \\[texinfo-insert-quote] to close a quotation." | 52 | "String inserted by typing \\[texinfo-insert-quote] to close a quotation." |
| 53 | :type 'string | 53 | :type 'string |
| 54 | :group 'texinfo) | 54 | :group 'texinfo) |