emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] trunk r115427: Fix typos in doc files (bug#16089).


From: Juanma Barranquero
Subject: [Emacs-diffs] trunk r115427: Fix typos in doc files (bug#16089).
Date: Sun, 08 Dec 2013 15:35:53 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 115427
revision-id: address@hidden
parent: address@hidden
fixes bug: http://debbugs.gnu.org/16089
committer: Juanma Barranquero <address@hidden>
branch nick: trunk
timestamp: Sun 2013-12-08 16:33:27 +0100
message:
  Fix typos in doc files (bug#16089).
  
  * emacs/msdog.texi (Windows Keyboard): Fix typo.
  
  * lispref/display.texi (Progress, Face Remapping):
  * lispref/processes.texi (Serial Ports):
  * lispref/windows.texi (Recombining Windows): Fix typos.
  
  * misc/dbus.texi (Properties and Annotations): Fix typo.
modified:
  doc/emacs/ChangeLog            changelog-20091113204419-o5vbwnq5f7feedwu-6227
  doc/emacs/msdog.texi           msdog.texi-20091113204419-o5vbwnq5f7feedwu-6269
  doc/lispref/ChangeLog          changelog-20091113204419-o5vbwnq5f7feedwu-6155
  doc/lispref/display.texi       
display.texi-20091113204419-o5vbwnq5f7feedwu-6172
  doc/lispref/processes.texi     
processes.texi-20091113204419-o5vbwnq5f7feedwu-6207
  doc/lispref/windows.texi       
windows.texi-20091113204419-o5vbwnq5f7feedwu-6224
  doc/misc/ChangeLog             changelog-20091113204419-o5vbwnq5f7feedwu-6331
  doc/misc/dbus.texi             dbus.texi-20091113204419-o5vbwnq5f7feedwu-7963
=== modified file 'doc/emacs/ChangeLog'
--- a/doc/emacs/ChangeLog       2013-11-30 18:34:58 +0000
+++ b/doc/emacs/ChangeLog       2013-12-08 15:33:27 +0000
@@ -1,3 +1,7 @@
+2013-12-08  Juanma Barranquero  <address@hidden>
+
+       * msdog.texi (Windows Keyboard): Fix typo.
+
 2013-11-30  Glenn Morris  <address@hidden>
 
        * Makefile.in (distclean): Remove Makefile.

=== modified file 'doc/emacs/msdog.texi'
--- a/doc/emacs/msdog.texi      2013-02-09 12:52:01 +0000
+++ b/doc/emacs/msdog.texi      2013-12-08 15:33:27 +0000
@@ -482,7 +482,7 @@
 @address@hidden, for its own use.  These key combinations are
 intercepted by the system before Emacs can see them.  You can use the
 @code{w32-register-hot-key} function to allow a key sequence to be
-seen by Emacs instead of being grabbed by Windows.  This functions
+seen by Emacs instead of being grabbed by Windows.  This function
 registers a key sequence as a @dfn{hot key}, overriding the special
 meaning of that key sequence for Windows.  (MS-Windows is told that
 the key sequence is a hot key only when one of the Emacs windows has

=== modified file 'doc/lispref/ChangeLog'
--- a/doc/lispref/ChangeLog     2013-12-04 00:12:02 +0000
+++ b/doc/lispref/ChangeLog     2013-12-08 15:33:27 +0000
@@ -1,3 +1,9 @@
+2013-12-08  Juanma Barranquero  <address@hidden>
+
+       * display.texi (Progress, Face Remapping):
+       * processes.texi (Serial Ports):
+       * windows.texi (Recombining Windows): Fix typos.  (Bug#16089)
+
 2013-12-04  Juri Linkov  <address@hidden>
 
        * searching.texi (Search and Replace): Fix `unread-command-events'

=== modified file 'doc/lispref/display.texi'
--- a/doc/lispref/display.texi  2013-11-08 10:27:15 +0000
+++ b/doc/lispref/display.texi  2013-12-08 15:33:27 +0000
@@ -439,7 +439,7 @@
 
 The first two arguments have the same meaning as for
 @code{progress-reporter-update}.  Optional @var{new-message} allows
-you to change the message of the @var{reporter}.  Since this functions
+you to change the message of the @var{reporter}.  Since this function
 always updates the echo area, such a change will be immediately
 presented to the user.
 @end defun
@@ -2683,7 +2683,7 @@
 modes to remap faces in the buffers they control.
 
 @defun face-remap-add-relative face &rest specs
-This functions adds the face spec in @var{specs} as relative
+This function adds the face spec in @var{specs} as relative
 remappings for face @var{face} in the current buffer.  The remaining
 arguments, @var{specs}, should form either a list of face names, or a
 property list of attribute/value pairs.

=== modified file 'doc/lispref/processes.texi'
--- a/doc/lispref/processes.texi        2013-02-12 17:36:54 +0000
+++ b/doc/lispref/processes.texi        2013-12-08 15:33:27 +0000
@@ -2613,7 +2613,7 @@
 @cindex stopbits, in serial connections
 @cindex flowcontrol, in serial connections
 
-This functions configures a serial port connection.  Arguments are
+This function configures a serial port connection.  Arguments are
 specified as keyword/argument pairs.  Attributes that are not given
 are re-initialized from the process's current configuration (available
 via the function @code{process-contact}), or set to reasonable default

=== modified file 'doc/lispref/windows.texi'
--- a/doc/lispref/windows.texi  2013-12-03 01:19:24 +0000
+++ b/doc/lispref/windows.texi  2013-12-08 15:33:27 +0000
@@ -1164,7 +1164,7 @@
 
 @cindex window combination limit
 @defun set-window-combination-limit window limit
-This functions sets the @dfn{combination limit} of the window
+This function sets the @dfn{combination limit} of the window
 @var{window} to @var{limit}.  This value can be retrieved via the
 function @code{window-combination-limit}.  See below for its effects;
 note that it is only meaningful for internal windows.  The

=== modified file 'doc/misc/ChangeLog'
--- a/doc/misc/ChangeLog        2013-12-06 14:43:10 +0000
+++ b/doc/misc/ChangeLog        2013-12-08 15:33:27 +0000
@@ -1,3 +1,7 @@
+2013-12-08  Juanma Barranquero  <address@hidden>
+
+       * dbus.texi (Properties and Annotations): Fix typo.
+
 2013-12-06  Bastien Guerry  <address@hidden>
 
        * org.texi: Don't include Emacs version within Org's version.

=== modified file 'doc/misc/dbus.texi'
--- a/doc/misc/dbus.texi        2013-12-05 15:34:30 +0000
+++ b/doc/misc/dbus.texi        2013-12-08 15:33:27 +0000
@@ -760,7 +760,7 @@
 @end defun
 
 @defun dbus-get-all-managed-objects bus service path
-This functions returns all objects at @var{bus}, @var{service},
+This function returns all objects at @var{bus}, @var{service},
 @var{path}, and the children of @var{path}.  The result is a list of
 objects.  Every object is a cons of an existing path name, and the
 list of available interface objects.  An interface object is another


reply via email to

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