Mercurial > emacs
comparison lispintro/emacs-lisp-intro.texi @ 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 | 24f8e84cb04d |
children | fb149efd0c72 |
comparison
equal
deleted
inserted
replaced
42505:16944501dc7a | 42506:d918430979ea |
---|---|
9851 than the @code{desired-number} of repetitions and @code{nil} for false if | 9851 than the @code{desired-number} of repetitions and @code{nil} for false if |
9852 the value of @code{count} is equal to or is greater than the | 9852 the value of @code{count} is equal to or is greater than the |
9853 @code{desired-number}. The expression that increments the count can be | 9853 @code{desired-number}. The expression that increments the count can be |
9854 a simple @code{setq} such as @code{(setq count (1+ count))}, where | 9854 a simple @code{setq} such as @code{(setq count (1+ count))}, where |
9855 @code{1+} is a built-in function in Emacs Lisp that adds 1 to its | 9855 @code{1+} is a built-in function in Emacs Lisp that adds 1 to its |
9856 argument. (The expression @code{(1+ count)} has the same result as | 9856 argument. (The expression @w{@code{(1+ count)}} has the same result as |
9857 @code{(+ count 1)}, but is easier for a human to read.) | 9857 @code{(+ count 1)}, but is easier for a human to read.) |
9858 | 9858 |
9859 @need 1250 | 9859 @need 1250 |
9860 The template for a @code{while} loop controlled by an incrementing | 9860 The template for a @code{while} loop controlled by an incrementing |
9861 counter looks like this: | 9861 counter looks like this: |