diff options
| author | Robert J. Chassell | 2001-12-07 14:25:16 +0000 |
|---|---|---|
| committer | Robert J. Chassell | 2001-12-07 14:25:16 +0000 |
| commit | 6964db142f8436c6af64cb2ac64a3961d02a8162 (patch) | |
| tree | 9ec9ed150313ce4da67a85c404ccae8ecf2cc6c2 | |
| parent | b85238397a4bfe4391e23029fce5ab6ff3fa2937 (diff) | |
| download | emacs-6964db142f8436c6af64cb2ac64a3961d02a8162.tar.gz emacs-6964db142f8436c6af64cb2ac64a3961d02a8162.zip | |
Fixed typographic error.
| -rw-r--r-- | lispintro/emacs-lisp-intro.texi | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lispintro/emacs-lisp-intro.texi b/lispintro/emacs-lisp-intro.texi index 42251c39234..8807f5439e8 100644 --- a/lispintro/emacs-lisp-intro.texi +++ b/lispintro/emacs-lisp-intro.texi | |||
| @@ -21,8 +21,8 @@ | |||
| 21 | 21 | ||
| 22 | @comment %**end of header | 22 | @comment %**end of header |
| 23 | 23 | ||
| 24 | @set edition-number 2.02 | 24 | @set edition-number 2.03 |
| 25 | @set update-date 2001 Nov 25 | 25 | @set update-date 2001 Dec 7 |
| 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: |
| @@ -4950,10 +4950,10 @@ complicated than shown here. The line reads | |||
| 4950 | @noindent | 4950 | @noindent |
| 4951 | (The expression works nearly the same as before. It sets a mark at | 4951 | (The expression works nearly the same as before. It sets a mark at |
| 4952 | the highest numbered place in the buffer that it can. However, in | 4952 | the highest numbered place in the buffer that it can. However, in |
| 4953 | this version, @code{push-mark} has two additional arguments The second | 4953 | this version, @code{push-mark} has two additional arguments. The |
| 4954 | argument to @code{push-mark} is @code{nil}. This tells the function | 4954 | second argument to @code{push-mark} is @code{nil}. This tells the |
| 4955 | it should @emph{not} display a message that says `Mark set' when it | 4955 | function it @emph{should} display a message that says `Mark set' when |
| 4956 | pushes the mark. The third argument is @code{t}. This tells | 4956 | it pushes the mark. The third argument is @code{t}. This tells |
| 4957 | @code{push-mark} to activate the mark when Transient Mark mode is | 4957 | @code{push-mark} to activate the mark when Transient Mark mode is |
| 4958 | turned on. Transient Mark mode highlights the currently active | 4958 | turned on. Transient Mark mode highlights the currently active |
| 4959 | region. It is usually turned off.) | 4959 | region. It is usually turned off.) |