Function: srecode-semantic-handle-:kill

srecode-semantic-handle-:kill is a byte-compiled function defined in args.el.gz.

Signature

(srecode-semantic-handle-:kill DICT)

Documentation

Add macros into the dictionary DICT based on the kill ring.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/srecode/args.el.gz
;;; :kill ARGUMENT HANDLING
;;
;; When a :kill argument is required, fill the dictionary with
;; information about the current kill ring.
(defun srecode-semantic-handle-:kill (dict)
  "Add macros into the dictionary DICT based on the kill ring."
  (srecode-dictionary-set-value dict "KILL" (car kill-ring))
  (srecode-dictionary-set-value dict "KILL2" (nth 1 kill-ring))
  (srecode-dictionary-set-value dict "KILL3" (nth 2 kill-ring))
  (srecode-dictionary-set-value dict "KILL4" (nth 3 kill-ring))
  )