diff lisp/cl-compat.el @ 412:697ef44129c6 r21-2-14

Import from CVS: tag r21-2-14
author cvs
date Mon, 13 Aug 2007 11:20:41 +0200
parents b8cc9ab3f761
children
line wrap: on
line diff
--- a/lisp/cl-compat.el	Mon Aug 13 11:19:22 2007 +0200
+++ b/lisp/cl-compat.el	Mon Aug 13 11:20:41 2007 +0200
@@ -56,10 +56,8 @@
 (defmacro defkeyword (x &optional doc)
   (list* 'defconst x (list 'quote x) (and doc (list doc))))
 
-;; XEmacs change.
-;; We have built-in function.
-;;(defun keywordp (sym)
-;;  (and (symbolp sym) (eq (aref (symbol-name sym) 0) ?\:) (set sym sym)))
+(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)))))