aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispintro
diff options
context:
space:
mode:
authorPaul Eggert2012-12-22 08:25:40 -0800
committerPaul Eggert2012-12-22 08:25:40 -0800
commitf99f164170af8b7ee84bb229da6ec17b1df7c7bd (patch)
tree46c1c5edd4fab11f4cafc4d9200d1a125b941060 /doc/lispintro
parentf109a67ecb16c7698539b4fd92c113257e282d53 (diff)
downloademacs-f99f164170af8b7ee84bb229da6ec17b1df7c7bd.tar.gz
emacs-f99f164170af8b7ee84bb229da6ec17b1df7c7bd.zip
Hyphen and dash fixes in texinfo files.
Diffstat (limited to 'doc/lispintro')
-rw-r--r--doc/lispintro/emacs-lisp-intro.texi23
1 files changed, 12 insertions, 11 deletions
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi
index 34ef7cc093c..2f8dfa6ff15 100644
--- a/doc/lispintro/emacs-lisp-intro.texi
+++ b/doc/lispintro/emacs-lisp-intro.texi
@@ -228,7 +228,8 @@ people who are not programmers.
228@sp 1 228@sp 1
229Edition @value{edition-number}, @value{update-date} 229Edition @value{edition-number}, @value{update-date}
230@sp 1 230@sp 1
231Copyright @copyright{} 1990-1995, 1997, 2001-2012 Free Software Foundation, Inc. 231Copyright @copyright{} 1990--1995, 1997, 2001--2012 Free Software
232Foundation, Inc.
232@sp 1 233@sp 1
233 234
234@iftex 235@iftex
@@ -6281,7 +6282,7 @@ the arithmetic, a conversion is necessary, and
6281@findex / @r{(division)} 6282@findex / @r{(division)}
6282@cindex Division 6283@cindex Division
6283The second argument is @code{(/ size 10)}. This expression divides 6284The second argument is @code{(/ size 10)}. This expression divides
6284the numeric value by ten --- the numeric value of the size of the 6285the numeric value by ten---the numeric value of the size of the
6285accessible portion of the buffer. This produces a number that tells 6286accessible portion of the buffer. This produces a number that tells
6286how many characters make up one tenth of the buffer size. (In Lisp, 6287how many characters make up one tenth of the buffer size. (In Lisp,
6287@code{/} is used for division, just as @code{*} is used for 6288@code{/} is used for division, just as @code{*} is used for
@@ -9402,7 +9403,7 @@ either by setting it manually or by using @code{customize}.
9402 9403
9403For me, the major use of the @code{set-variable} command is to suggest 9404For me, the major use of the @code{set-variable} command is to suggest
9404variables that I might want to set in my @file{.emacs} file. There 9405variables that I might want to set in my @file{.emacs} file. There
9405are now more than 700 such variables --- far too many to remember 9406are now more than 700 such variables, far too many to remember
9406readily. Fortunately, you can press @key{TAB} after calling the 9407readily. Fortunately, you can press @key{TAB} after calling the
9407@code{M-x set-variable} command to see the list of variables. 9408@code{M-x set-variable} command to see the list of variables.
9408(@xref{Examining, , Examining and Setting Variables, emacs, 9409(@xref{Examining, , Examining and Setting Variables, emacs,
@@ -11195,8 +11196,8 @@ The @code{dolist} expression does very much the same as the
11195of the work you have to do when writing a @code{while} expression. 11196of the work you have to do when writing a @code{while} expression.
11196 11197
11197Like a @code{while} loop, a @code{dolist} loops. What is different is 11198Like a @code{while} loop, a @code{dolist} loops. What is different is
11198that it automatically shortens the list each time it loops --- it 11199that it automatically shortens the list each time it loops---it
11199`@sc{cdr}s down the list' on its own --- and it automatically binds 11200`@sc{cdr}s down the list' on its own---and it automatically binds
11200the @sc{car} of each shorter version of the list to the first of its 11201the @sc{car} of each shorter version of the list to the first of its
11201arguments. 11202arguments.
11202 11203
@@ -13300,8 +13301,8 @@ We can see that this is a decrementing counter @code{while} loop,
13300using the expression @code{(setq arg (1- arg))} as the decrementer. 13301using the expression @code{(setq arg (1- arg))} as the decrementer.
13301That expression is not far from the @code{while}, but is hidden in 13302That expression is not far from the @code{while}, but is hidden in
13302another Lisp macro, an @code{unless} macro. Unless we are at the end 13303another Lisp macro, an @code{unless} macro. Unless we are at the end
13303of the buffer --- that is what the @code{eobp} function determines; it 13304of the buffer---that is what the @code{eobp} function determines; it
13304is an abbreviation of @samp{End Of Buffer P} --- we decrease the value 13305is an abbreviation of @samp{End Of Buffer P}---we decrease the value
13305of @code{arg} by one. 13306of @code{arg} by one.
13306 13307
13307(If we are at the end of the buffer, we cannot go forward any more and 13308(If we are at the end of the buffer, we cannot go forward any more and
@@ -15657,7 +15658,7 @@ as a list that looks like this (but with more elements):
15657The @code{directory-files-and-attributes} function returns a list of 15658The @code{directory-files-and-attributes} function returns a list of
15658lists. Each of the lists within the main list consists of 13 15659lists. Each of the lists within the main list consists of 13
15659elements. The first element is a string that contains the name of the 15660elements. The first element is a string that contains the name of the
15660file -- which, in GNU/Linux, may be a `directory file', that is to 15661file---which, in GNU/Linux, may be a `directory file', that is to
15661say, a file with the special attributes of a directory. The second 15662say, a file with the special attributes of a directory. The second
15662element of the list is @code{t} for a directory, a string 15663element of the list is @code{t} for a directory, a string
15663for symbolic link (the string is the name linked to), or @code{nil}. 15664for symbolic link (the string is the name linked to), or @code{nil}.
@@ -16850,7 +16851,7 @@ Write a line graph version of the graph printing functions.
16850@cindex Customizing your @file{.emacs} file 16851@cindex Customizing your @file{.emacs} file
16851@cindex Initialization file 16852@cindex Initialization file
16852 16853
16853``You don't have to like Emacs to like it'' -- this seemingly 16854``You don't have to like Emacs to like it''---this seemingly
16854paradoxical statement is the secret of GNU Emacs. The plain, `out of 16855paradoxical statement is the secret of GNU Emacs. The plain, `out of
16855the box' Emacs is a generic tool. Most people who use it, customize 16856the box' Emacs is a generic tool. Most people who use it, customize
16856it to suit themselves. 16857it to suit themselves.
@@ -18282,7 +18283,7 @@ or `All'. (A lower case @samp{p} tell you the percentage above the
18282@emph{top} of the window.) @samp{%-} inserts enough dashes to fill 18283@emph{top} of the window.) @samp{%-} inserts enough dashes to fill
18283out the line. 18284out the line.
18284 18285
18285Remember, ``You don't have to like Emacs to like it'' --- your own 18286Remember, ``You don't have to like Emacs to like it''---your own
18286Emacs can have different colors, different commands, and different 18287Emacs can have different colors, different commands, and different
18287keys than a default Emacs. 18288keys than a default Emacs.
18288 18289
@@ -21946,7 +21947,7 @@ Here is the graph:
21946@sp 2 21947@sp 2
21947 21948
21948@noindent 21949@noindent
21949The largest group of functions contain 10 -- 19 words and symbols each. 21950The largest group of functions contain 10--19 words and symbols each.
21950 21951
21951@node Free Software and Free Manuals 21952@node Free Software and Free Manuals
21952@appendix Free Software and Free Manuals 21953@appendix Free Software and Free Manuals