diff options
author | Dani Moncayo <dmoncayo@gmail.com> | 2013-08-31 18:18:41 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2013-08-31 18:18:41 -0700 |
commit | 5229f00af6b0a901903bff4c68c049b6eb80cb59 (patch) | |
tree | 12ad42fd8f761559e6e22fc9a4e60dcda3fcdaf3 /doc/lispintro | |
parent | 2c347217caf044cc83559b9e3b59de81bb4d8b82 (diff) | |
download | emacs-5229f00af6b0a901903bff4c68c049b6eb80cb59.tar.gz |
* emacs-lisp-intro.texi (beginning-of-buffer complete): Update function details.
Fixes: debbugs:15085
Diffstat (limited to 'doc/lispintro')
-rw-r--r-- | doc/lispintro/ChangeLog | 5 | ||||
-rw-r--r-- | doc/lispintro/emacs-lisp-intro.texi | 11 |
2 files changed, 7 insertions, 9 deletions
diff --git a/doc/lispintro/ChangeLog b/doc/lispintro/ChangeLog index a47183f4d27..7c2cf7c1e07 100644 --- a/doc/lispintro/ChangeLog +++ b/doc/lispintro/ChangeLog @@ -1,3 +1,8 @@ +2013-09-01 Dani Moncayo <dmoncayo@gmail.com> + + * emacs-lisp-intro.texi (beginning-of-buffer complete): + Update function details. (Bug#15085) + 2013-08-28 Paul Eggert <eggert@cs.ucla.edu> * Makefile.in (SHELL): Now @SHELL@, not /bin/sh, diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi index 18ea8e87e19..b3087a276a8 100644 --- a/doc/lispintro/emacs-lisp-intro.texi +++ b/doc/lispintro/emacs-lisp-intro.texi @@ -6323,7 +6323,7 @@ and avoids clobbering the mark." (/ (+ 10 (* size (prefix-numeric-value arg))) 10))) (point-min)))) - (if arg (forward-line 1))) + (if (and arg (not (consp arg))) (forward-line 1))) @end group @end smallexample @@ -6390,7 +6390,7 @@ to move point to the beginning of the next line if the command is invoked with an argument: @smallexample -(if arg (forward-line 1))) +(if (and arg (not (consp arg))) (forward-line 1)) @end smallexample @noindent @@ -6401,13 +6401,6 @@ tenths of the way through the buffer, which is a nicety that is, perhaps, not necessary, but which, if it did not occur, would be sure to draw complaints. -On the other hand, it also means that if you specify the command with -a @kbd{C-u}, but without a number, that is to say, if the `raw prefix -argument' is simply a cons cell, then the command puts you at the -beginning of the second line @dots{} I don't know whether this is -intended or whether no one has dealt with the code to avoid this -happening. - @node Second Buffer Related Review @section Review |