emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] emacs/lisp ChangeLog epa.el hi-lock.el speedbar...


From: Juanma Barranquero
Subject: [Emacs-diffs] emacs/lisp ChangeLog epa.el hi-lock.el speedbar...
Date: Tue, 29 Sep 2009 02:26:25 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Juanma Barranquero <lektu>      09/09/29 02:26:24

Modified files:
        lisp           : ChangeLog epa.el hi-lock.el speedbar.el 
        lisp/calc      : calc-prog.el 
        lisp/language  : hanja-util.el 
        lisp/progmodes : hideshow.el 

Log message:
        * speedbar.el (speedbar-item-delete):
        * calc/calc-prog.el (calc-kbd-if):
        * language/hanja-util.el (hanja-init-load): Fix typos in messages.
        
        * epa.el (epa-key-list-mode-map):
        * hi-lock.el (hi-lock-menu): Fix typos in menus.
        
        * progmodes/hideshow.el (hs-allow-nesting): Reflow docstring.
        (hs-show-hook): Fix typo in docstring.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/ChangeLog?cvsroot=emacs&r1=1.16286&r2=1.16287
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/epa.el?cvsroot=emacs&r1=1.18&r2=1.19
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/hi-lock.el?cvsroot=emacs&r1=1.57&r2=1.58
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/speedbar.el?cvsroot=emacs&r1=1.106&r2=1.107
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/calc/calc-prog.el?cvsroot=emacs&r1=1.47&r2=1.48
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/language/hanja-util.el?cvsroot=emacs&r1=1.7&r2=1.8
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/progmodes/hideshow.el?cvsroot=emacs&r1=1.81&r2=1.82

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.16286
retrieving revision 1.16287
diff -u -b -r1.16286 -r1.16287
--- ChangeLog   29 Sep 2009 02:17:00 -0000      1.16286
+++ ChangeLog   29 Sep 2009 02:26:20 -0000      1.16287
@@ -1,3 +1,15 @@
+2009-09-29  Juanma Barranquero  <address@hidden>
+
+       * speedbar.el (speedbar-item-delete):
+       * calc/calc-prog.el (calc-kbd-if):
+       * language/hanja-util.el (hanja-init-load): Fix typos in messages.
+
+       * epa.el (epa-key-list-mode-map):
+       * hi-lock.el (hi-lock-menu): Fix typos in menus.
+
+       * progmodes/hideshow.el (hs-allow-nesting): Reflow docstring.
+       (hs-show-hook): Fix typo in docstring.
+
 2009-09-29  Glenn Morris  <address@hidden>
 
        * Makefile.in (lisptagsfiles4): New.

Index: epa.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/epa.el,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -b -r1.18 -r1.19
--- epa.el      21 Aug 2009 14:59:53 -0000      1.18
+++ epa.el      29 Sep 2009 02:26:23 -0000      1.19
@@ -234,7 +234,7 @@
       '(menu-item "Decrypt File..." epa-decrypt-file
                  :help "Decrypt FILE"))
     (define-key menu-map [epa-encrypt-file]
-      '(menu-item "Encrypt File.." epa-encrypt-file
+      '(menu-item "Encrypt File..." epa-encrypt-file
                  :help "Encrypt FILE for RECIPIENTS"))
     (define-key menu-map [separator-epa-key-list] '(menu-item "--"))
     (define-key menu-map [epa-key-list-delete-keys]

Index: hi-lock.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/hi-lock.el,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -b -r1.57 -r1.58
--- hi-lock.el  23 Apr 2009 01:34:58 -0000      1.57
+++ hi-lock.el  29 Sep 2009 02:26:23 -0000      1.58
@@ -253,7 +253,7 @@
 
 (define-key-after hi-lock-menu [highlight-lines-matching-regexp]
   '(menu-item "Highlight Lines..." highlight-lines-matching-regexp
-              :help "Highlight lines containing match of PATTERN (a 
regexp).."))
+              :help "Highlight lines containing match of PATTERN (a regexp)."))
 
 (define-key-after hi-lock-menu [unhighlight-regexp]
   '(menu-item "Remove Highlighting..." unhighlight-regexp

Index: speedbar.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/speedbar.el,v
retrieving revision 1.106
retrieving revision 1.107
diff -u -b -r1.106 -r1.107
--- speedbar.el 18 Sep 2009 07:48:59 -0000      1.106
+++ speedbar.el 29 Sep 2009 02:26:23 -0000      1.107
@@ -1648,7 +1648,7 @@
          (if (file-directory-p f)
              (delete-directory f)
            (delete-file f))
-         (speedbar-message "Okie dokie..")
+         (speedbar-message "Okie dokie.")
          (let ((p (point)))
            (speedbar-refresh)
            (goto-char p))

Index: calc/calc-prog.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/calc/calc-prog.el,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -b -r1.47 -r1.48
--- calc/calc-prog.el   15 Sep 2009 02:35:22 -0000      1.47
+++ calc/calc-prog.el   29 Sep 2009 02:26:24 -0000      1.48
@@ -1209,7 +1209,7 @@
      (calc-pop-stack 1)
      (if (math-is-true cond)
         (if defining-kbd-macro
-            (message "If true.."))
+            (message "If true..."))
        (if defining-kbd-macro
           (message "Condition is false; skipping to Z: or Z] ..."))
        (calc-kbd-skip-to-else-if t)))))

Index: language/hanja-util.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/language/hanja-util.el,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -b -r1.7 -r1.8
--- language/hanja-util.el      5 Jan 2009 02:17:07 -0000       1.7
+++ language/hanja-util.el      29 Sep 2009 02:26:24 -0000      1.8
@@ -39,7 +39,7 @@
 (defun hanja-init-load ()
   "Initialize `hanja-table' (which see)."
   (when (not hanja-table)
-    (message "Hanja table loading..")
+    (message "Hanja table loading...")
     (setq hanja-table (make-char-table nil))
     (mapc
      (lambda (x) (aset hanja-table (car x) (cdr x)))

Index: progmodes/hideshow.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/progmodes/hideshow.el,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -b -r1.81 -r1.82
--- progmodes/hideshow.el       25 Sep 2009 00:32:26 -0000      1.81
+++ progmodes/hideshow.el       29 Sep 2009 02:26:24 -0000      1.82
@@ -304,8 +304,8 @@
 
 (defvar hs-allow-nesting nil
   "*If non-nil, hiding remembers internal blocks.
-This means that when the outer block is shown again, any
-previously hidden internal blocks remain hidden.")
+This means that when the outer block is shown again,
+any previously hidden internal blocks remain hidden.")
 
 (defvar hs-hide-hook nil
   "*Hook called (with `run-hooks') at the end of commands to hide text.
@@ -315,7 +315,7 @@
 (defvar hs-show-hook nil
   "*Hook called (with `run-hooks') at the end of commands to show text.
 These commands include the toggling commands (when the result is to show
-a block), `hs-show-all' and `hs-show-block'..")
+a block), `hs-show-all' and `hs-show-block'.")
 
 (defvar hs-set-up-overlay nil
   "*Function called with one arg, OV, a newly initialized overlay.




reply via email to

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