comparison lispintro/emacs-lisp-intro.texi @ 73619:e8162495e1ae

* 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.
author Robert J. Chassell <bob@rattlesnake.com>
date Thu, 02 Nov 2006 11:26:40 +0000
parents 242f2b7c7873
children a171b46b168c
comparison
equal deleted inserted replaced
73618:d23b82051e84 73619:e8162495e1ae
22 @c clear print-postscript-figures 22 @c clear print-postscript-figures
23 @c --------- 23 @c ---------
24 24
25 @comment %**end of header 25 @comment %**end of header
26 26
27 @set edition-number 3.01 27 @set edition-number 3.02
28 @set update-date 2006 Oct 31 28 @set update-date 2006 November 2
29 29
30 @ignore 30 @ignore
31 ## Summary of shell commands to create various output formats: 31 ## Summary of shell commands to create various output formats:
32 32
33 pushd /usr/local/src/emacs/lispintro/ 33 pushd /usr/local/src/emacs/lispintro/
10253 In GNU Emacs 22, the @code{kill-new} function calls 10253 In GNU Emacs 22, the @code{kill-new} function calls
10254 10254
10255 @code{(setq kill-ring-yank-pointer kill-ring)} 10255 @code{(setq kill-ring-yank-pointer kill-ring)}
10256 10256
10257 (defun rotate-yank-pointer (arg) 10257 (defun rotate-yank-pointer (arg)
10258 "Rotate the yanking point in the kill ring." 10258 "Rotate the yanking point in the kill ring.
10259 With argument, rotate that many kills forward (or backward, if negative)." 10259 With argument, rotate that many kills forward (or backward, if negative)."
10260 (interactive "p") 10260 (interactive "p")
10261 (current-kill arg)) 10261 (current-kill arg))
10262 10262
10263 (defun current-kill (n &optional do-not-move) 10263 (defun current-kill (n &optional do-not-move)