]> git.eshelyaron.com Git - emacs.git/commitdiff
Doc fix for forward-word and backward-word.
authorXue Fuqiao <xfq.free@gmail.com>
Tue, 13 Aug 2013 14:26:39 +0000 (22:26 +0800)
committerXue Fuqiao <xfq.free@gmail.com>
Tue, 13 Aug 2013 14:26:39 +0000 (22:26 +0800)
* doc/lispref/positions.texi (Word Motion): Remove redundant sentence.
* lisp/simple.el (backward-word): Mention the optional argument.
* src/syntax.c (forward_word): Mention the optional argument.

doc/lispref/ChangeLog
doc/lispref/positions.texi
lisp/ChangeLog
lisp/simple.el
src/ChangeLog
src/syntax.c

index 6df8c3912a3bf97713a91a78d59e4bdc9ee284cb..42b9600a0acae5c8864b24111e303e4031033ad4 100644 (file)
@@ -1,3 +1,7 @@
+2013-08-13  Xue Fuqiao  <xfq.free@gmail.com>
+
+       * positions.texi (Word Motion): Remove redundant sentence.
+
 2013-08-13  Glenn Morris  <rgm@gnu.org>
 
        * lists.texi (List Elements):
index 119ad98a53d8572994721a2dcde1c1f18aaebfbf..5cb1a851a5b850c9da3fbc3957bd3ef63497d936 100644 (file)
@@ -191,8 +191,8 @@ whether a given character is part of a word.  @xref{Syntax Tables}.
 
 @deffn Command forward-word &optional count
 This function moves point forward @var{count} words (or backward if
-@var{count} is negative).  If @var{count} is @code{nil}, it moves
-forward one word.
+@var{count} is negative).  If @var{count} is omitted or @code{nil}, it
+defaults to 1.
 
 ``Moving one word'' means moving until point crosses a
 word-constituent character and then encounters a word-separator
@@ -210,7 +210,7 @@ If @code{inhibit-field-text-motion} is non-@code{nil},
 this function ignores field boundaries.
 
 In an interactive call, @var{count} is specified by the numeric prefix
-argument.  If @var{count} is omitted or @code{nil}, it defaults to 1.
+argument.
 @end deffn
 
 @deffn Command backward-word &optional count
index ff9f4ff87074a135ac36b2ebac61bb6bbabc9acd..0c8791d8af7ad983d69292a118a9fcd030908bb7 100644 (file)
@@ -1,3 +1,7 @@
+2013-08-13  Xue Fuqiao  <xfq.free@gmail.com>
+
+       * simple.el (backward-word): Mention the optional argument.
+
 2013-08-13  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * frameset.el (frameset--make): Rename constructor from make-frameset.
index 0edf5ca8d9c5618a45cec758328a4e4d0f3597a7..6825c41becc14e2dc5a73b36ea2db78b49a66116 100644 (file)
@@ -3338,6 +3338,7 @@ extract characters that are special to a buffer, and should not
 be copied into other buffers."
   (funcall filter-buffer-substring-function beg end delete))
 
+;; FIXME: `with-wrapper-hook' is obsolete
 (defun buffer-substring--filter (beg end &optional delete)
   (with-wrapper-hook filter-buffer-substring-functions (beg end delete)
     (cond
@@ -5670,7 +5671,8 @@ current object."
 \f
 (defun backward-word (&optional arg)
   "Move backward until encountering the beginning of a word.
-With argument ARG, do this that many times."
+With argument ARG, do this that many times.
+If ARG is omitted or nil, move point backward one word."
   (interactive "^p")
   (forward-word (- (or arg 1))))
 
index a0a37f0628d8a6c64c6ef75a323e76da16f70476..28e8ab66e37440bc48c4a38ff8e4686548adcae6 100644 (file)
@@ -1,5 +1,6 @@
 2013-08-13  Xue Fuqiao  <xfq.free@gmail.com>
 
+       * syntax.c (forward_word):
        * cmds.c (forward_char, backward_char): Mention the optional argument.
 
 2013-08-13  Dmitry Antipov  <dmantipov@yandex.ru>
index 6d52d115889065777da232c88a1d5edd05d6cce0..f5b37303a4a06ec4f832e189232b2f28408f0055 100644 (file)
@@ -1464,6 +1464,7 @@ scan_words (register ptrdiff_t from, register EMACS_INT count)
 
 DEFUN ("forward-word", Fforward_word, Sforward_word, 0, 1, "^p",
        doc: /* Move point forward ARG words (backward if ARG is negative).
+If ARG is omitted or nil, move point forward one word.
 Normally returns t.
 If an edge of the buffer or a field boundary is reached, point is left there
 and the function returns nil.  Field boundaries are not noticed if