emacs-bug-tracker
[Top][All Lists]
Advanced

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

[debbugs-tracker] bug#15085: closed (Doc Fix for the Emacs Lips Intro)


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#15085: closed (Doc Fix for the Emacs Lips Intro)
Date: Sun, 01 Sep 2013 01:20:04 +0000

Your message dated Sat, 31 Aug 2013 21:19:01 -0400
with message-id <address@hidden>
and subject line Re: bug#15085: Doc Fix for the Emacs Lips Intro
has caused the debbugs.gnu.org bug report #15085,
regarding Doc Fix for the Emacs Lips Intro
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
15085: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=15085
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: Doc Fix for the Emacs Lips Intro Date: Tue, 13 Aug 2013 12:40:52 +0200
Hi,

The following patch adapts one example (and its explanation) to the
current code.


--- emacs-lisp-intro.texi 2013-08-13 12:14:44 +0200
+++ emacs-lisp-intro.texi 2013-08-13 12:32:36 +0200
@@ -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



-- 
Dani Moncayo



--- End Message ---
--- Begin Message --- Subject: Re: bug#15085: Doc Fix for the Emacs Lips Intro Date: Sat, 31 Aug 2013 21:19:01 -0400 User-agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/)
Version: 24.4

Thanks; applied.


--- End Message ---

reply via email to

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