# HG changeset patch # User Robert J. Chassell # Date 1010079891 0 # Node ID d918430979ea24be234f55602f71b7bfe96bc8e2 # Parent 16944501dc7afb2fb41c28054efcc970b87b5a1f Put @w{...} around an expression with a poor printed copy page break. Edit lambda-*.eps image files so arrows line up properly. diff -r 16944501dc7a -r d918430979ea lispintro/emacs-lisp-intro.texi --- a/lispintro/emacs-lisp-intro.texi Thu Jan 03 17:00:52 2002 +0000 +++ b/lispintro/emacs-lisp-intro.texi Thu Jan 03 17:44:51 2002 +0000 @@ -9853,7 +9853,7 @@ @code{desired-number}. The expression that increments the count can be a simple @code{setq} such as @code{(setq count (1+ count))}, where @code{1+} is a built-in function in Emacs Lisp that adds 1 to its -argument. (The expression @code{(1+ count)} has the same result as +argument. (The expression @w{@code{(1+ count)}} has the same result as @code{(+ count 1)}, but is easier for a human to read.) @need 1250