comparison lispintro/emacs-lisp-intro.texi @ 56940:ea9bb593b003

Thanks to Christopher Allan Webber, fix typo.
author Robert J. Chassell <bob@rattlesnake.com>
date Sun, 05 Sep 2004 15:44:28 +0000
parents 0d765aaa0e44
children 37199d6ac2c7 cce1c0ee76ee
comparison
equal deleted inserted replaced
56939:51ddfe0b89c6 56940:ea9bb593b003
1 \input texinfo @c -*-texinfo-*- 1 @c \input texinfo @c -*-texinfo-*-
2 @comment %**start of header 2 @comment %**start of header
3 @setfilename ../info/eintr 3 @setfilename ../info/eintr
4 @c sethtmlfilename emacs-lisp-intro.html 4 @c sethtmlfilename emacs-lisp-intro.html
5 @settitle Programming in Emacs Lisp 5 @settitle Programming in Emacs Lisp
6 @syncodeindex vr cp 6 @syncodeindex vr cp
24 @set edition-number 2.12 24 @set edition-number 2.12
25 @set update-date 2003 Nov 19 25 @set update-date 2003 Nov 19
26 26
27 @ignore 27 @ignore
28 ## Summary of shell commands to create various output formats: 28 ## Summary of shell commands to create various output formats:
29
30 pushd /usr/local/src/emacs/lispintro/
29 31
30 ## Info output 32 ## Info output
31 makeinfo --no-split --paragraph-indent=0 --verbose emacs-lisp-intro.texi 33 makeinfo --no-split --paragraph-indent=0 --verbose emacs-lisp-intro.texi
32 34
33 ## DVI output 35 ## DVI output
6086 @code{(prefix-numeric-value arg)}, which converts the raw argument to a 6088 @code{(prefix-numeric-value arg)}, which converts the raw argument to a
6087 number. This number is multiplied by the buffer size in the following 6089 number. This number is multiplied by the buffer size in the following
6088 expression: 6090 expression:
6089 6091
6090 @smallexample 6092 @smallexample
6091 (* (buffer-size) (prefix-numeric-value arg) 6093 (* (buffer-size) (prefix-numeric-value arg))
6092 @end smallexample 6094 @end smallexample
6093 6095
6094 @noindent 6096 @noindent
6095 This multiplication creates a number that may be larger than the size of 6097 This multiplication creates a number that may be larger than the size of
6096 the buffer---seven times larger if the argument is 7, for example. Ten 6098 the buffer---seven times larger if the argument is 7, for example. Ten