aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/widget.el
diff options
context:
space:
mode:
authorDan Nicolaescu2009-11-11 19:24:20 +0000
committerDan Nicolaescu2009-11-11 19:24:20 +0000
commitaaa448c984ad227585dac4a2fe2ee5bdc467e25e (patch)
tree73cfced623c9a2f6596f52eb261a28660031cc33 /lisp/widget.el
parent04420943de5a7a92f94c7642b76990c77ca751f8 (diff)
downloademacs-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/widget.el')
-rw-r--r--lisp/widget.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/widget.el b/lisp/widget.el
index 2614995331d..d8b55a1bfb3 100644
--- a/lisp/widget.el
+++ b/lisp/widget.el
@@ -85,7 +85,7 @@ create identical widgets:
85 85
86The third argument DOC is a documentation string for the widget." 86The third argument DOC is a documentation string for the widget."
87 (put name 'widget-type (cons class args)) 87 (put name 'widget-type (cons class args))
88 (put name 'widget-documentation doc) 88 (put name 'widget-documentation (purecopy doc))
89 name) 89 name)
90 90
91;; This is used by external widget code (in W3, at least). 91;; This is used by external widget code (in W3, at least).