Function: defkeyword
defkeyword is a macro defined in cl-compat.el.gz.
Signature
(defkeyword X &optional DOC)
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/cl-compat.el.gz
;;; Keyword routines not supported by new package.
(defmacro defkeyword (x &optional doc)
(declare (indent defun))
(cl-list* 'defconst x (list 'quote x) (and doc (list doc))))