# HG changeset patch # User Dave Love # Date 955652640 0 # Node ID 147fceec5b4fa369cebd13465617a4eb3d5a0464 # Parent 69dea80bbb876d95d324e1caa1b997719b280f11 (keywordp): Remove. diff -r 69dea80bbb87 -r 147fceec5b4f lisp/emacs-lisp/cl-compat.el --- a/lisp/emacs-lisp/cl-compat.el Thu Apr 13 19:03:34 2000 +0000 +++ b/lisp/emacs-lisp/cl-compat.el Thu Apr 13 19:04:00 2000 +0000 @@ -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)))))