Previous: Code for current-kill, Up: current-kill [Contents][Index]
current-kill
in OutlineThe current-kill
function looks complex, but as usual, it can be
understood by taking it apart piece by piece. First look at it in skeletal
form:
(defun current-kill (n &optional do-not-move) "Rotate the yanking point by N places, and then return that kill." (let varlist body…)
This function takes two arguments, one of which is optional. It has a documentation string. It is not interactive.
• Body of current-kill | ||
• Digression concerning error | How to mislead humans, but not computers. | |
• Determining the Element |