* isearch.el (isearch-help-for-help-internal): Purecopy the second arg.
* help-macro.el (make-help-screen): Avoid using an ambiguous function
definition where the docstring could be taken for the return value.
+2009-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
+
+ * help.el (help-for-help-internal): Don't purecopy the text (bug#4560).
+ * isearch.el (isearch-help-for-help-internal): Purecopy the second arg.
+ * help-macro.el (make-help-screen): Avoid using an ambiguous function
+ definition where the docstring could be taken for the return value.
+
2009-09-26 Glenn Morris <rgm@gnu.org>
* mail/rmailmm.el (rmail-mime-show-images, rmail-mime-bulk-handler):
and then returns."
(let ((doc-fn (intern (concat (symbol-name fname) "-doc"))))
`(progn
- (defun ,doc-fn () ,help-text)
+ (defun ,doc-fn () ,help-text nil)
(defun ,fname ()
"Help command."
(interactive)
;; It can't find this, but nobody will look.
(make-help-screen help-for-help-internal
(purecopy "Type a help option: [abcCdefFgiIkKlLmnprstvw.] C-[cdefmnoptw] or ?")
- (purecopy
+ ;; Don't purecopy this one, because it's not evaluated (it's
+ ;; directly used as a docstring in a function definition, so it'll
+ ;; be moved to the DOC file anyway: no need for purecopying it).
"You have typed %THIS-KEY%, the help character. Type a Help option:
\(Use SPC or DEL to scroll through this text. Type \\<help-map>\\[help-quit] to exit the Help command.)
C-o Emacs ordering and distribution information.
C-p Info about known Emacs problems.
C-t Emacs TODO list.
-C-w Information on absence of warranty for GNU Emacs.")
+C-w Information on absence of warranty for GNU Emacs."
help-map)
\f
(eval-when-compile (require 'help-macro))
(make-help-screen isearch-help-for-help-internal
- "Type a help option: [bkm] or ?"
+ (purecopy "Type a help option: [bkm] or ?")
"You have typed %THIS-KEY%, the help character. Type a Help option:
\(Type \\<help-map>\\[help-quit] to exit the Help command.)