diff options
Diffstat (limited to 'lispintro/emacs-lisp-intro.texi')
-rw-r--r-- | lispintro/emacs-lisp-intro.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lispintro/emacs-lisp-intro.texi b/lispintro/emacs-lisp-intro.texi index 44dc14f20cf..dce9e9055a6 100644 --- a/lispintro/emacs-lisp-intro.texi +++ b/lispintro/emacs-lisp-intro.texi @@ -10255,7 +10255,7 @@ In GNU Emacs 22, the @code{kill-new} function calls @code{(setq kill-ring-yank-pointer kill-ring)} (defun rotate-yank-pointer (arg) - "Rotate the yanking point in the kill ring. + "Rotate the yanking point in the kill ring." With argument, rotate that many kills forward (or backward, if negative)." (interactive "p") (current-kill arg)) |