summaryrefslogtreecommitdiff
path: root/doc/lispintro/emacs-lisp-intro.texi
diff options
context:
space:
mode:
Diffstat (limited to 'doc/lispintro/emacs-lisp-intro.texi')
-rw-r--r--doc/lispintro/emacs-lisp-intro.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi
index 9aefe1da17a..b13b16285c7 100644
--- a/doc/lispintro/emacs-lisp-intro.texi
+++ b/doc/lispintro/emacs-lisp-intro.texi
@@ -227,7 +227,7 @@ supports it in developing GNU and promoting software freedom.''
@c learn Emacs Lisp starting with the Emacs Lisp Reference Manual.
@c
@c Richard Stallman <rms@gnu.org>,
-@c https://lists.gnu.org/archive/html/emacs-devel/2018-05/msg00374.html
+@c https://lists.gnu.org/r/emacs-devel/2018-05/msg00374.html
@shortcontents
@contents
@@ -17523,7 +17523,7 @@ Here is the definition:
;;; Line to top of window;
;;; replace three keystroke sequence C-u 0 C-l
(defun line-to-top-of-window ()
- "Move the line point is on to top of window."
+ "Move the line that point is on to top of window."
(interactive)
(recenter 0))
@end group