emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/doc/lispintro/emacs-lisp-intro.texi, v


From: Karl Berry
Subject: [Emacs-diffs] Changes to emacs/doc/lispintro/emacs-lisp-intro.texi, v
Date: Sun, 05 Oct 2008 00:15:01 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Karl Berry <karl>       08/10/05 00:15:00

Index: emacs-lisp-intro.texi
===================================================================
RCS file: /sources/emacs/emacs/doc/lispintro/emacs-lisp-intro.texi,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -b -r1.8 -r1.9
--- emacs-lisp-intro.texi       13 May 2008 16:41:32 -0000      1.8
+++ emacs-lisp-intro.texi       5 Oct 2008 00:14:59 -0000       1.9
@@ -6,15 +6,17 @@
 @settitle Programming in Emacs Lisp
 @syncodeindex vr cp
 @syncodeindex fn cp
address@hidden odd
 @finalout
 
 @c ---------
 @c <<<< For hard copy printing, this file is now
 @c      set for smallbook, which works for all sizes
 @c      of paper, and with Postscript figures >>>>
address@hidden smallbook
address@hidden smallbook
 @smallbook
 @clear  largebook
address@hidden ifset
 @set print-postscript-figures
 @c set largebook
 @c clear print-postscript-figures
@@ -22,8 +24,20 @@
 
 @comment %**end of header
 
address@hidden per rms and peterb, use 10pt fonts for the main text, mostly to
address@hidden save on paper cost.  
address@hidden Do this inside @tex for now, so current makeinfo does not 
complain.
address@hidden
address@hidden smallbook
address@hidden 10
+\global\let\urlcolor=\Black % don't print links in grayscale
+\global\let\linkcolor=\Black
address@hidden ifset
+\global\hbadness=6666 % don't worry about not-too-underfull boxes
address@hidden tex
+
 @set edition-number 3.08
address@hidden update-date 12 September 2007
address@hidden update-date 4 October 2008
 @ignore
  ## Summary of shell commands to create various output formats:
 
@@ -317,9 +331,9 @@
 @c right handed page after the Table of Contents; hence the following
 @c setting must be for an odd negative number.
 
address@hidden
address@hidden@pageno = -11
address@hidden iftex
address@hidden iftex
address@hidden address@hidden = -11
address@hidden end iftex
 
 @menu
 * Preface::                     What to look for.
@@ -2715,7 +2729,7 @@
 @code{(buffer-name)} is @file{"*info*"}, and the value returned by
 evaluating @code{(buffer-file-name)} is @file{nil}.
 
-On the other hand, while I am writing this Introduction, the value
+On the other hand, while I am writing this document, the value
 returned by evaluating @code{(buffer-name)} is
 @file{"introduction.texinfo"}, and the value returned by evaluating
 @code{(buffer-file-name)} is
@@ -6461,7 +6475,8 @@
                           ;; Avoid overflow for large buffer sizes!
                           (* (prefix-numeric-value arg)
                              (/ size 10))
-                        (/ (+ 10 (* size (prefix-numeric-value arg))) 10)))
+                        (/ (+ 10 (* size (prefix-numeric-value arg)))
+                           10)))
                  (point-min))))
   (if arg (forward-line 1)))
 @end group
@@ -7771,7 +7786,8 @@
   (if (char-table-p translation-table-for-input)
       (setq char (or (aref translation-table-for-input char) char)))
   (kill-region (point) (progn
-                         (search-forward (char-to-string char) nil nil arg)
+                         (search-forward (char-to-string char)
+                                         nil nil arg)
                          (point))))
 @end group
 @end smallexample
@@ -11551,8 +11567,8 @@
 not evaluated.  The function as a whole then returns @code{nil}.
 
 @need 1200
-When you evaluate @code{(print-elements-recursively animals)} in the
address@hidden buffer, you see this result:
+When you evaluate the expression @code{(print-elements-recursively
+animals)} in the @file{*scratch*} buffer, you see this result:
 
 @smallexample
 @group
@@ -11694,7 +11710,7 @@
 
 The number 2 is passed to the @code{triangle-recursively} function.
 
-We know what happens when Emacs evaluates @code{triangle-recursively} with
+We already know what happens when Emacs evaluates @code{triangle-recursively} 
with
 an argument of 2.  After going through the sequence of actions described
 earlier, it returns a value of 3.  So that is what will happen here.
 
@@ -17844,9 +17860,9 @@
 @noindent
 This expression autoloads the @code{html-helper-mode} function.  It
 takes it from the @file{html-helper-mode.el} file (or from the byte
-compiled file @file{html-helper-mode.elc}, if it exists.)  The file
-must be located in a directory specified by @code{load-path}.  The
-documentation says that this is a mode to help you edit documents
+compiled version @file{html-helper-mode.elc}, if that exists.)  The
+file must be located in a directory specified by @code{load-path}.
+The documentation says that this is a mode to help you edit documents
 written in the HyperText Markup Language.  You can call this mode
 interactively by typing @kbd{M-x html-helper-mode}.  (You need to
 duplicate the function's regular documentation in the autoload
@@ -22659,22 +22675,21 @@
 @c Place biographical information on right-hand (verso) page
 
 @tex
+\par\vfill\supereject
 \ifodd\pageno
-    \par\vfill\supereject
     \global\evenheadline={\hfil} \global\evenfootline={\hfil}
     \global\oddheadline={\hfil} \global\oddfootline={\hfil}
-    \page\hbox{}\page
+    %\page\hbox{}\page
 \else
-    \par\vfill\supereject
-    \par\vfill\supereject
+%    \par\vfill\supereject
     \global\evenheadline={\hfil} \global\evenfootline={\hfil}
     \global\oddheadline={\hfil} \global\oddfootline={\hfil}
-    \page\hbox{}\page
-    \page\hbox{}\page
+    %\page\hbox{}%\page
+    %\page\hbox{}%\page
 \fi
 @end tex
 
address@hidden
address@hidden page
 @w{ }
 
 @c ================ Biographical information ================
@@ -22701,19 +22716,19 @@
 airplane.
 @end quotation
 
address@hidden
address@hidden }
-
address@hidden Prevent page number on blank verso, so eject it first.
address@hidden
-\par\vfill\supereject
address@hidden tex
-
address@hidden
address@hidden off
address@hidden @thispage @| @| @thistitle
address@hidden            @| @| @thispage
address@hidden iftex
address@hidden @page
address@hidden @w{ }
address@hidden
address@hidden @c Prevent page number on blank verso, so eject it first.
address@hidden @tex
address@hidden \par\vfill\supereject
address@hidden @end tex
+
address@hidden @iftex
address@hidden @headings off
address@hidden @evenheading @thispage @| @| @thistitle
address@hidden @oddheading            @| @| @thispage
address@hidden @end iftex
 
 @bye
 




reply via email to

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