emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs/lisp ChangeLog bindings.el help.el


From: Dan Nicolaescu
Subject: [Emacs-diffs] emacs/lisp ChangeLog bindings.el help.el
Date: Mon, 14 Sep 2009 23:28:44 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Dan Nicolaescu <dann>   09/09/14 23:28:44

Modified files:
        lisp           : ChangeLog bindings.el help.el 

Log message:
        * bindings.el (mode-line-mode-menu): Add purecopy calls for :help.
        * help.el (help-for-help-internal): Add purecopy calls for text.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/ChangeLog?cvsroot=emacs&r1=1.16167&r2=1.16168
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/bindings.el?cvsroot=emacs&r1=1.224&r2=1.225
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/help.el?cvsroot=emacs&r1=1.347&r2=1.348

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.16167
retrieving revision 1.16168
diff -u -b -r1.16167 -r1.16168
--- ChangeLog   14 Sep 2009 04:42:04 -0000      1.16167
+++ ChangeLog   14 Sep 2009 23:28:40 -0000      1.16168
@@ -1,8 +1,10 @@
 2009-09-14  Dan Nicolaescu  <address@hidden>
 
+       * bindings.el (mode-line-mode-menu): Add purecopy calls for :help.
+       * help.el (help-for-help-internal): Add purecopy calls for text.
+
        * vc.el (top): print-log method now takes an optional SHORTLOG
        argument.  Add a new method: root.
-
        (vc-root-diff, vc-print-root-log): New functions.
        (vc-log-short-style): New variable.
        (vc-print-log-internal): Add support for showing short logs.

Index: bindings.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/bindings.el,v
retrieving revision 1.224
retrieving revision 1.225
diff -u -b -r1.224 -r1.225
--- bindings.el 11 Sep 2009 06:38:44 -0000      1.224
+++ bindings.el 14 Sep 2009 23:28:43 -0000      1.225
@@ -507,49 +507,49 @@
 ;; Global ones can go on the menubar (Options --> Show/Hide).
 (define-key mode-line-mode-menu [overwrite-mode]
   `(menu-item ,(purecopy "Overwrite (Ovwrt)") overwrite-mode
-             :help "Overwrite mode: typed characters replace existing text"
+             :help ,(purecopy "Overwrite mode: typed characters replace 
existing text")
              :button (:toggle . overwrite-mode)))
 (define-key mode-line-mode-menu [outline-minor-mode]
   `(menu-item ,(purecopy "Outline (Outl)") outline-minor-mode
              ;; XXX: This needs a good, brief description.
-             :help ""
+             :help ,(purecopy "")
              :button (:toggle . (bound-and-true-p outline-minor-mode))))
 (define-key mode-line-mode-menu [highlight-changes-mode]
   `(menu-item ,(purecopy "Highlight changes (Chg)") highlight-changes-mode
-             :help "Show changes in the buffer in a distinctive color"
+             :help ,(purecopy "Show changes in the buffer in a distinctive 
color")
              :button (:toggle . (bound-and-true-p highlight-changes-mode))))
 (define-key mode-line-mode-menu [hide-ifdef-mode]
   `(menu-item ,(purecopy "Hide ifdef (Ifdef)") hide-ifdef-mode
-             :help "Show/Hide code within #ifdef constructs"
+             :help ,(purecopy "Show/Hide code within #ifdef constructs")
              :button (:toggle . (bound-and-true-p hide-ifdef-mode))))
 (define-key mode-line-mode-menu [glasses-mode]
   `(menu-item ,(purecopy "Glasses (o^o)") glasses-mode
-             :help "Insert virtual separators to make long identifiers easy to 
read"
+             :help ,(purecopy "Insert virtual separators to make long 
identifiers easy to read")
              :button (:toggle . (bound-and-true-p glasses-mode))))
 (define-key mode-line-mode-menu [font-lock-mode]
   `(menu-item ,(purecopy "Font Lock") font-lock-mode
-             :help "Syntax coloring"
+             :help ,(purecopy "Syntax coloring")
              :button (:toggle . font-lock-mode)))
 (define-key mode-line-mode-menu [flyspell-mode]
   `(menu-item ,(purecopy "Flyspell (Fly)") flyspell-mode
-             :help "Spell checking on the fly"
+             :help ,(purecopy "Spell checking on the fly")
              :button (:toggle . (bound-and-true-p flyspell-mode))))
 (define-key mode-line-mode-menu [auto-revert-tail-mode]
   `(menu-item ,(purecopy "Auto revert tail (Tail)") auto-revert-tail-mode
-             :help "Revert the tail of the buffer when buffer grows"
+             :help ,(purecopy "Revert the tail of the buffer when buffer 
grows")
              :enable (buffer-file-name)
              :button (:toggle . (bound-and-true-p auto-revert-tail-mode))))
 (define-key mode-line-mode-menu [auto-revert-mode]
   `(menu-item ,(purecopy "Auto revert (ARev)") auto-revert-mode
-             :help "Revert the buffer when the file on disk changes"
+             :help ,(purecopy "Revert the buffer when the file on disk 
changes")
              :button (:toggle . (bound-and-true-p auto-revert-mode))))
 (define-key mode-line-mode-menu [auto-fill-mode]
   `(menu-item ,(purecopy "Auto fill (Fill)") auto-fill-mode
-             :help "Automatically insert new lines"
+             :help ,(purecopy "Automatically insert new lines")
              :button (:toggle . auto-fill-function)))
 (define-key mode-line-mode-menu [abbrev-mode]
   `(menu-item ,(purecopy "Abbrev (Abbrev)") abbrev-mode
-             :help "Automatically expand abbreviations"
+             :help ,(purecopy "Automatically expand abbreviations")
              :button (:toggle . abbrev-mode)))
 
 (defun mode-line-minor-mode-help (event)

Index: help.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/help.el,v
retrieving revision 1.347
retrieving revision 1.348
diff -u -b -r1.347 -r1.348
--- help.el     19 Aug 2009 18:07:10 -0000      1.347
+++ help.el     14 Sep 2009 23:28:43 -0000      1.348
@@ -202,7 +202,8 @@
 (defalias 'help-for-help 'help-for-help-internal)
 ;; It can't find this, but nobody will look.
 (make-help-screen help-for-help-internal
-  "Type a help option: [abcCdefFgiIkKlLmnprstvw.] C-[cdefmnoptw] or ?"
+  (purecopy "Type a help option: [abcCdefFgiIkKlLmnprstvw.] C-[cdefmnoptw] or 
?")
+  (purecopy
   "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.)
 
@@ -247,7 +248,7 @@
 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)
 
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]