]> git.eshelyaron.com Git - emacs.git/commitdiff
(keywordp): Remove.
authorDave Love <fx@gnu.org>
Thu, 13 Apr 2000 19:04:00 +0000 (19:04 +0000)
committerDave Love <fx@gnu.org>
Thu, 13 Apr 2000 19:04:00 +0000 (19:04 +0000)
lisp/emacs-lisp/cl-compat.el

index 7d5b6492edfbd94b4976d808fbfdbdac4abdb4fb..01cf288ea711fbe528fbeb3b54dcdcb345e293d9 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)))))