diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-10-11 14:43:11 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-10-11 14:44:13 +0200 |
commit | 7cb463792334d6f59cdfc89165bac2d7783e3913 (patch) | |
tree | 18b7fb205dd3608b65c6c2af7feac0c64ee90299 /doc/lispintro | |
parent | ab60144ea3fd449aeefa2c67eb75c5ea66044bc1 (diff) | |
download | emacs-7cb463792334d6f59cdfc89165bac2d7783e3913.tar.gz |
Minor fix to clarify a sentence in emacs-lisp-intro
* doc/lispintro/emacs-lisp-intro.texi (Simple Extension): Add the word
"that" for clarity. (Bug#43965)
Diffstat (limited to 'doc/lispintro')
-rw-r--r-- | doc/lispintro/emacs-lisp-intro.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi index 32c39c7261b..6ecd552ebb0 100644 --- a/doc/lispintro/emacs-lisp-intro.texi +++ b/doc/lispintro/emacs-lisp-intro.texi @@ -17456,9 +17456,9 @@ Manual}, for more information. @findex line-to-top-of-window @cindex Simple extension in @file{.emacs} file -Here is a simple extension to Emacs that moves the line point is on to -the top of the window. I use this all the time, to make text easier -to read. +Here is a simple extension to Emacs that moves the line that point is +on to the top of the window. I use this all the time, to make text +easier to read. You can put the following code into a separate file and then load it from your @file{.emacs} file, or you can include it within your |