From: Richard M Stallman Date: Wed, 14 Oct 2020 23:17:48 +0000 (-0400) Subject: Clarify wording X-Git-Tag: emacs-28.0.90~5633 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=051d31cc797e3601b4a8704bc62343f633cba423;p=emacs.git Clarify wording Clarify doc string of line-to-top-of-window. --- diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi index 1bd2849bb3e..b13b16285c7 100644 --- a/doc/lispintro/emacs-lisp-intro.texi +++ b/doc/lispintro/emacs-lisp-intro.texi @@ -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