]> code.delx.au - gnu-emacs/commitdiff
* src/cmds.c (forward_char, backward_char): Mention the optional argument.
authorXue Fuqiao <xfq.free@gmail.com>
Tue, 13 Aug 2013 14:09:12 +0000 (22:09 +0800)
committerXue Fuqiao <xfq.free@gmail.com>
Tue, 13 Aug 2013 14:09:12 +0000 (22:09 +0800)
src/ChangeLog
src/cmds.c

index 7c6f9c3557f733d07bf6f03f8ad8c66719b12d0c..a0a37f0628d8a6c64c6ef75a323e76da16f70476 100644 (file)
@@ -1,3 +1,7 @@
+2013-08-13  Xue Fuqiao  <xfq.free@gmail.com>
+
+       * cmds.c (forward_char, backward_char): Mention the optional argument.
+
 2013-08-13  Dmitry Antipov  <dmantipov@yandex.ru>
 
        * window.h (struct window): Convert left_fringe_width
index 3ebad50184a06b49026131338c3e630476dd8355..ce91877f85e85f051a7fba22dbaf09895d6ab0ca 100644 (file)
@@ -86,6 +86,7 @@ DEFUN ("forward-char", Fforward_char, Sforward_char, 0, 1, "^p",
        doc: /* Move point N characters forward (backward if N is negative).
 On reaching end or beginning of buffer, stop and signal error.
 Interactively, N is the numeric prefix argument.
+If N is omitted or nil, move point 1 character forward.
 
 Depending on the bidirectional context, the movement may be to the
 right or to the left on the screen.  This is in contrast with
@@ -99,6 +100,7 @@ DEFUN ("backward-char", Fbackward_char, Sbackward_char, 0, 1, "^p",
        doc: /* Move point N characters backward (forward if N is negative).
 On attempt to pass beginning or end of buffer, stop and signal error.
 Interactively, N is the numeric prefix argument.
+If N is omitted or nil, move point 1 character backward.
 
 Depending on the bidirectional context, the movement may be to the
 right or to the left on the screen.  This is in contrast with