emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r100537: * cmds.c (Fforward_char, F


From: Juanma Barranquero
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r100537: * cmds.c (Fforward_char, Fbackward_char): Fix typos in docstrings.
Date: Mon, 07 Jun 2010 12:35:57 +0200
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 100537
committer: Juanma Barranquero <address@hidden>
branch nick: trunk
timestamp: Mon 2010-06-07 12:35:57 +0200
message:
  * cmds.c (Fforward_char, Fbackward_char): Fix typos in docstrings.
    (Fforward_line, Fbeginning_of_line): Reflow docstrings.
modified:
  src/ChangeLog
  src/cmds.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2010-06-06 08:57:39 +0000
+++ b/src/ChangeLog     2010-06-07 10:35:57 +0000
@@ -1,3 +1,8 @@
+2010-06-07  Juanma Barranquero  <address@hidden>
+
+       * cmds.c (Fforward_char, Fbackward_char): Fix typos in docstrings.
+       (Fforward_line, Fbeginning_of_line): Reflow docstrings.
+
 2010-06-06  Dan Nicolaescu  <address@hidden>
 
        Remove BSTRING related code, all platforms define it.

=== modified file 'src/cmds.c'
--- a/src/cmds.c        2010-05-25 00:54:13 +0000
+++ b/src/cmds.c        2010-06-07 10:35:57 +0000
@@ -62,7 +62,7 @@
 
 Depending on the bidirectional context, the movement may be to the
 right or to the left on the screen.  This is in contrast with
-\\[right-arrow-command], which see.  */)
+\\[right-char], which see.  */)
      (n)
      Lisp_Object n;
 {
@@ -102,7 +102,7 @@
 
 Depending on the bidirectional context, the movement may be to the
 right or to the left on the screen.  This is in contrast with
-\\[left-arrow-command], which see.  */)
+\\[left-char], which see.  */)
      (n)
      Lisp_Object n;
 {
@@ -122,7 +122,7 @@
 Returns the count of lines left to move.  If moving forward,
 that is N - number of lines moved; if backward, N + number moved.
 With positive N, a non-empty line at the end counts as one line
-  successfully moved (for the return value).  */)
+successfully moved (for the return value).  */)
      (n)
      Lisp_Object n;
 {
@@ -167,8 +167,8 @@
 If point reaches the beginning or end of buffer, it stops there.
 
 This function constrains point to the current field unless this moves
-point to a different line than the original, unconstrained result.  If
-N is nil or 1, and a front-sticky field starts at point, the point
+point to a different line than the original, unconstrained result.
+If N is nil or 1, and a front-sticky field starts at point, the point
 does not move.  To ignore field boundaries bind
 `inhibit-field-text-motion' to t, or use the `forward-line' function
 instead.  For instance, `(forward-line 0)' does the same thing as


reply via email to

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