]> code.delx.au - gnu-emacs/blobdiff - lisp/emacs-lisp/cl-compat.el
Add new maintainer (deego).
[gnu-emacs] / lisp / emacs-lisp / cl-compat.el
index 7d5b6492edfbd94b4976d808fbfdbdac4abdb4fb..9afe4fe426a0e9b45b307e623d30cb338429caf5 100644 (file)
@@ -54,9 +54,6 @@
 (defmacro defkeyword (x &optional doc)
   (list* 'defconst x (list 'quote x) (and doc (list doc))))
 
-(defun keywordp (sym)
-  (and (symbolp sym) (eq (aref (symbol-name sym) 0) ?\:) (set sym sym)))
-
 (defun keyword-of (sym)
   (or (keywordp sym) (keywordp (intern (format ":%s" sym)))))
 
 (provide 'cl-compat)
 
 ;;; cl-compat.el ends here
-