diff options
author | Robert J. Chassell <bob@rattlesnake.com> | 2006-11-02 11:26:40 +0000 |
---|---|---|
committer | Robert J. Chassell <bob@rattlesnake.com> | 2006-11-02 11:26:40 +0000 |
commit | 45ddadc02d972475201f34b2e342478f47a3a929 (patch) | |
tree | 6b78f3548b6aa3bb4d1324c2492f6681b6276cf7 /lispintro/emacs-lisp-intro.texi | |
parent | 1e7823d0610945d420922081f678e60e5cf6df2a (diff) | |
download | emacs-45ddadc02d972475201f34b2e342478f47a3a929.tar.gz |
* emacs-lisp-intro.texi (kill-ring-yank-pointer): Revert addition
of extraneous quotation mark to rotate-yank-pointer.
Reset edition-number to 3.02 and update-date to 2006 November 2.
Diffstat (limited to 'lispintro/emacs-lisp-intro.texi')
-rw-r--r-- | lispintro/emacs-lisp-intro.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lispintro/emacs-lisp-intro.texi b/lispintro/emacs-lisp-intro.texi index e06dd809cc3..8a5500efa16 100644 --- a/lispintro/emacs-lisp-intro.texi +++ b/lispintro/emacs-lisp-intro.texi @@ -24,8 +24,8 @@ @comment %**end of header -@set edition-number 3.01 -@set update-date 2006 Oct 31 +@set edition-number 3.02 +@set update-date 2006 November 2 @ignore ## Summary of shell commands to create various output formats: @@ -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)) |