emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] emacs doc/emacs/ChangeLog doc/emacs/mark.texi l...


From: Juanma Barranquero
Subject: [Emacs-diffs] emacs doc/emacs/ChangeLog doc/emacs/mark.texi l...
Date: Mon, 02 Mar 2009 08:55:49 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Juanma Barranquero <lektu>      09/03/02 08:55:49

Modified files:
        doc/emacs      : ChangeLog mark.texi 
        lisp           : doc-view.el font-lock.el 
        lisp/erc       : ChangeLog.02 
        lisp/mh-e      : ChangeLog.1 
        src            : gtkutil.c 

Log message:
        Fix typos.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/doc/emacs/ChangeLog?cvsroot=emacs&r1=1.293&r2=1.294
http://cvs.savannah.gnu.org/viewcvs/emacs/doc/emacs/mark.texi?cvsroot=emacs&r1=1.8&r2=1.9
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/doc-view.el?cvsroot=emacs&r1=1.81&r2=1.82
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/font-lock.el?cvsroot=emacs&r1=1.348&r2=1.349
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/erc/ChangeLog.02?cvsroot=emacs&r1=1.11&r2=1.12
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/mh-e/ChangeLog.1?cvsroot=emacs&r1=1.19&r2=1.20
http://cvs.savannah.gnu.org/viewcvs/emacs/src/gtkutil.c?cvsroot=emacs&r1=1.146&r2=1.147

Patches:
Index: doc/emacs/ChangeLog
===================================================================
RCS file: /sources/emacs/emacs/doc/emacs/ChangeLog,v
retrieving revision 1.293
retrieving revision 1.294
diff -u -b -r1.293 -r1.294
--- doc/emacs/ChangeLog 1 Mar 2009 19:08:39 -0000       1.293
+++ doc/emacs/ChangeLog 2 Mar 2009 08:55:47 -0000       1.294
@@ -1,3 +1,7 @@
+2009-03-02  Juanma Barranquero  <address@hidden>
+
+       * mark.texi (Marking Objects): Fix typo.
+
 2009-03-01  Chong Yidong  <address@hidden>
 
        * abbrevs.texi (Expanding Abbrevs): Mention abbrev-expand-functions

Index: doc/emacs/mark.texi
===================================================================
RCS file: /sources/emacs/emacs/doc/emacs/mark.texi,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -b -r1.8 -r1.9
--- doc/emacs/mark.texi 8 Jan 2009 05:28:50 -0000       1.8
+++ doc/emacs/mark.texi 2 Mar 2009 08:55:47 -0000       1.9
@@ -180,7 +180,7 @@
   Similarly, @kbd{C-M-h} (@code{mark-defun}) sets mark and point
 around major top-level definitions (@pxref{Moving by Defuns}), and
 @kbd{C-x C-p} (@code{mark-page}) does the same for pages
-(@pxref{Pages}).  These treat repeated invokations and prefix
+(@pxref{Pages}).  These treat repeated invocations and prefix
 arguments similarly to @code{mark-paragraph}.
 
   Finally, @kbd{C-x h} (@code{mark-whole-buffer}) sets up the entire

Index: lisp/doc-view.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/doc-view.el,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -b -r1.81 -r1.82
--- lisp/doc-view.el    9 Feb 2009 15:33:49 -0000       1.81
+++ lisp/doc-view.el    2 Mar 2009 08:55:47 -0000       1.82
@@ -62,7 +62,7 @@
 ;; slice you can use `doc-view-set-slice' (bound to `s s') which will query you
 ;; for the coordinates of the slice's top-left corner and its width and height.
 ;; A much more convenient way to do the same is offered by the command
-;; `doc-view-set-slice-using-mouse' (bound to `s m').  After invokation you
+;; `doc-view-set-slice-using-mouse' (bound to `s m').  After invocation you
 ;; only have to press mouse-1 at the top-left corner and drag it to the
 ;; bottom-right corner of the desired slice.  To reset the slice use
 ;; `doc-view-reset-slice' (bound to `s r').
@@ -74,7 +74,7 @@
 ;; `C-r' you can do the same, but backwards.  To search for a new regexp give a
 ;; prefix arg to one of the search functions, e.g. by typing `C-u C-s'.  The
 ;; searching works by using a plain text representation of the document.  If
-;; that doesn't already exist the first invokation of `doc-view-search' (or
+;; that doesn't already exist the first invocation of `doc-view-search' (or
 ;; `doc-view-search-backward') starts the conversion.  When that finishes and
 ;; you're still viewing the document (i.e. you didn't switch to another buffer)
 ;; you're queried for the regexp then.

Index: lisp/font-lock.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/font-lock.el,v
retrieving revision 1.348
retrieving revision 1.349
diff -u -b -r1.348 -r1.349
--- lisp/font-lock.el   19 Feb 2009 22:24:06 -0000      1.348
+++ lisp/font-lock.el   2 Mar 2009 08:55:48 -0000       1.349
@@ -2239,7 +2239,8 @@
                "\\)\\)\\>"
                ;; Any whitespace and defined object.
                "[ \t'\(]*"
-               "\\(setf[ \t]+\\sw+)\\|\\sw+\\)?")
+               "\\(setf[ \t]+\\sw+\\|\\sw+\\)?"
+               "[ \t)]*")
        (1 font-lock-keyword-face)
        (9 (cond ((match-beginning 3) font-lock-function-name-face)
                ((match-beginning 6) font-lock-variable-name-face)

Index: lisp/erc/ChangeLog.02
===================================================================
RCS file: /sources/emacs/emacs/lisp/erc/ChangeLog.02,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -b -r1.11 -r1.12
--- lisp/erc/ChangeLog.02       5 Jan 2009 03:21:26 -0000       1.11
+++ lisp/erc/ChangeLog.02       2 Mar 2009 08:55:48 -0000       1.12
@@ -2371,7 +2371,7 @@
        Minor docstring fixes (using M-x checkdoc-current-buffer)
          If you find time, and you are native english speaker, do that too!!
 
-       * erc.el 1.195: fixed macro-invokation
+       * erc.el 1.195: fixed macro-invocation
 
 2002-01-31  Andreas Fuchs  <address@hidden>
 

Index: lisp/mh-e/ChangeLog.1
===================================================================
RCS file: /sources/emacs/emacs/lisp/mh-e/ChangeLog.1,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -b -r1.19 -r1.20
--- lisp/mh-e/ChangeLog.1       15 Jan 2009 03:17:16 -0000      1.19
+++ lisp/mh-e/ChangeLog.1       2 Mar 2009 08:55:48 -0000       1.20
@@ -8034,7 +8034,7 @@
        XEmacs too. Sanitize so that it will work using least-common
        denominator versions of 'make'. Tested using GNU make, Solaris make,
        and Berkely make.
-       (all): Use recursive invokation based on the emacs or xemacs
+       (all): Use recursive invocation based on the emacs or xemacs
        executable passed on the 'make EMACS=xemacs' command line.
        (XEMACS_OPTIONS): The incantation to be passed to an xemacs editor
        to compile things properly.

Index: src/gtkutil.c
===================================================================
RCS file: /sources/emacs/emacs/src/gtkutil.c,v
retrieving revision 1.146
retrieving revision 1.147
diff -u -b -r1.146 -r1.147
--- src/gtkutil.c       26 Feb 2009 10:11:34 -0000      1.146
+++ src/gtkutil.c       2 Mar 2009 08:55:49 -0000       1.147
@@ -2588,7 +2588,7 @@
 /* Update the menu item W so it corresponds to VAL.
    SELECT_CB is the callback to use when a menu item is selected.
    HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
-   CL_DATA is the data to set in the widget for menu invokation.  */
+   CL_DATA is the data to set in the widget for menu invocation.  */
 
 static void
 xg_update_menu_item (val, w, select_cb, highlight_cb, cl_data)




reply via email to

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