emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] trunk r114083: * emacs-lisp-intro.texi (beginning-of-buffe


From: Glenn Morris
Subject: [Emacs-diffs] trunk r114083: * emacs-lisp-intro.texi (beginning-of-buffer complete): Update function details.
Date: Sun, 01 Sep 2013 01:18:54 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 114083
revision-id: address@hidden
parent: address@hidden
fixes bug: http://debbugs.gnu.org/15085
author: Dani Moncayo <address@hidden>
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Sat 2013-08-31 18:18:41 -0700
message:
  * emacs-lisp-intro.texi (beginning-of-buffer complete): Update function 
details.
modified:
  doc/lispintro/ChangeLog        changelog-20091113204419-o5vbwnq5f7feedwu-6128
  doc/lispintro/emacs-lisp-intro.texi 
emacslispintro.texi-20091113204419-o5vbwnq5f7feedwu-6143
=== modified file 'doc/lispintro/ChangeLog'
--- a/doc/lispintro/ChangeLog   2013-08-28 06:01:52 +0000
+++ b/doc/lispintro/ChangeLog   2013-09-01 01:18:41 +0000
@@ -1,3 +1,8 @@
+2013-09-01  Dani Moncayo  <address@hidden>
+
+       * emacs-lisp-intro.texi (beginning-of-buffer complete):
+       Update function details.  (Bug#15085)
+
 2013-08-28  Paul Eggert  <address@hidden>
 
        * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,

=== modified file 'doc/lispintro/emacs-lisp-intro.texi'
--- a/doc/lispintro/emacs-lisp-intro.texi       2013-08-12 00:09:11 +0000
+++ b/doc/lispintro/emacs-lisp-intro.texi       2013-09-01 01:18:41 +0000
@@ -6323,7 +6323,7 @@
                         (/ (+ 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 @@
 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 @@
 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
 


reply via email to

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