Mercurial > emacs
changeset 42506:d918430979ea
Put @w{...} around an expression with a poor printed copy page break.
Edit lambda-*.eps image files so arrows line up properly.
author | Robert J. Chassell <bob@rattlesnake.com> |
---|---|
date | Thu, 03 Jan 2002 17:44:51 +0000 |
parents | 16944501dc7a |
children | 5791a1f3fd71 |
files | lispintro/emacs-lisp-intro.texi |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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