diff options
| author | Paul Eggert | 2012-12-22 08:25:40 -0800 |
|---|---|---|
| committer | Paul Eggert | 2012-12-22 08:25:40 -0800 |
| commit | f99f164170af8b7ee84bb229da6ec17b1df7c7bd (patch) | |
| tree | 46c1c5edd4fab11f4cafc4d9200d1a125b941060 /doc/lispintro | |
| parent | f109a67ecb16c7698539b4fd92c113257e282d53 (diff) | |
| download | emacs-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.texi | 23 |
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 |
| 229 | Edition @value{edition-number}, @value{update-date} | 229 | Edition @value{edition-number}, @value{update-date} |
| 230 | @sp 1 | 230 | @sp 1 |
| 231 | Copyright @copyright{} 1990-1995, 1997, 2001-2012 Free Software Foundation, Inc. | 231 | Copyright @copyright{} 1990--1995, 1997, 2001--2012 Free Software |
| 232 | Foundation, 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 |
| 6283 | The second argument is @code{(/ size 10)}. This expression divides | 6284 | The second argument is @code{(/ size 10)}. This expression divides |
| 6284 | the numeric value by ten --- the numeric value of the size of the | 6285 | the numeric value by ten---the numeric value of the size of the |
| 6285 | accessible portion of the buffer. This produces a number that tells | 6286 | accessible portion of the buffer. This produces a number that tells |
| 6286 | how many characters make up one tenth of the buffer size. (In Lisp, | 6287 | how 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 | ||
| 9403 | For me, the major use of the @code{set-variable} command is to suggest | 9404 | For me, the major use of the @code{set-variable} command is to suggest |
| 9404 | variables that I might want to set in my @file{.emacs} file. There | 9405 | variables that I might want to set in my @file{.emacs} file. There |
| 9405 | are now more than 700 such variables --- far too many to remember | 9406 | are now more than 700 such variables, far too many to remember |
| 9406 | readily. Fortunately, you can press @key{TAB} after calling the | 9407 | readily. 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 | |||
| 11195 | of the work you have to do when writing a @code{while} expression. | 11196 | of the work you have to do when writing a @code{while} expression. |
| 11196 | 11197 | ||
| 11197 | Like a @code{while} loop, a @code{dolist} loops. What is different is | 11198 | Like a @code{while} loop, a @code{dolist} loops. What is different is |
| 11198 | that it automatically shortens the list each time it loops --- it | 11199 | that 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 |
| 11200 | the @sc{car} of each shorter version of the list to the first of its | 11201 | the @sc{car} of each shorter version of the list to the first of its |
| 11201 | arguments. | 11202 | arguments. |
| 11202 | 11203 | ||
| @@ -13300,8 +13301,8 @@ We can see that this is a decrementing counter @code{while} loop, | |||
| 13300 | using the expression @code{(setq arg (1- arg))} as the decrementer. | 13301 | using the expression @code{(setq arg (1- arg))} as the decrementer. |
| 13301 | That expression is not far from the @code{while}, but is hidden in | 13302 | That expression is not far from the @code{while}, but is hidden in |
| 13302 | another Lisp macro, an @code{unless} macro. Unless we are at the end | 13303 | another Lisp macro, an @code{unless} macro. Unless we are at the end |
| 13303 | of the buffer --- that is what the @code{eobp} function determines; it | 13304 | of the buffer---that is what the @code{eobp} function determines; it |
| 13304 | is an abbreviation of @samp{End Of Buffer P} --- we decrease the value | 13305 | is an abbreviation of @samp{End Of Buffer P}---we decrease the value |
| 13305 | of @code{arg} by one. | 13306 | of @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): | |||
| 15657 | The @code{directory-files-and-attributes} function returns a list of | 15658 | The @code{directory-files-and-attributes} function returns a list of |
| 15658 | lists. Each of the lists within the main list consists of 13 | 15659 | lists. Each of the lists within the main list consists of 13 |
| 15659 | elements. The first element is a string that contains the name of the | 15660 | elements. The first element is a string that contains the name of the |
| 15660 | file -- which, in GNU/Linux, may be a `directory file', that is to | 15661 | file---which, in GNU/Linux, may be a `directory file', that is to |
| 15661 | say, a file with the special attributes of a directory. The second | 15662 | say, a file with the special attributes of a directory. The second |
| 15662 | element of the list is @code{t} for a directory, a string | 15663 | element of the list is @code{t} for a directory, a string |
| 15663 | for symbolic link (the string is the name linked to), or @code{nil}. | 15664 | for 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 |
| 16854 | paradoxical statement is the secret of GNU Emacs. The plain, `out of | 16855 | paradoxical statement is the secret of GNU Emacs. The plain, `out of |
| 16855 | the box' Emacs is a generic tool. Most people who use it, customize | 16856 | the box' Emacs is a generic tool. Most people who use it, customize |
| 16856 | it to suit themselves. | 16857 | it 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 |
| 18283 | out the line. | 18284 | out the line. |
| 18284 | 18285 | ||
| 18285 | Remember, ``You don't have to like Emacs to like it'' --- your own | 18286 | Remember, ``You don't have to like Emacs to like it''---your own |
| 18286 | Emacs can have different colors, different commands, and different | 18287 | Emacs can have different colors, different commands, and different |
| 18287 | keys than a default Emacs. | 18288 | keys 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 |
| 21949 | The largest group of functions contain 10 -- 19 words and symbols each. | 21950 | The 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 |