Function: rotate-yank-pointer

rotate-yank-pointer is an interactive and byte-compiled function defined in simple.el.gz.

Signature

(rotate-yank-pointer ARG)

Documentation

Rotate the yanking point in the kill ring.

With ARG, rotate that many kills forward (or backward, if negative).

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/simple.el.gz
(defun rotate-yank-pointer (arg)
  "Rotate the yanking point in the kill ring.
With ARG, rotate that many kills forward (or backward, if negative)."
  (interactive "p")
  (current-kill arg))