diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2009-09-30 15:29:50 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2009-09-30 15:29:50 +0000 |
commit | 722ff82f446de770eac44493fee9f4f49a963e51 (patch) | |
tree | 6821aef13a44929374062837a3cdc7a73a50c92b /lisp/emacs-lisp | |
parent | 8240628d21921eb44e123384f45990347a623b46 (diff) | |
download | emacs-722ff82f446de770eac44493fee9f4f49a963e51.tar.gz emacs-722ff82f446de770eac44493fee9f4f49a963e51.tar.bz2 emacs-722ff82f446de770eac44493fee9f4f49a963e51.zip |
* emacs-lisp/eieio.el (boolean-p): Deleted.
* cedet/ede/srecode.el: Fix provide statement.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/eieio.el | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lisp/emacs-lisp/eieio.el b/lisp/emacs-lisp/eieio.el index bd318278018..60a8cef36ce 100644 --- a/lisp/emacs-lisp/eieio.el +++ b/lisp/emacs-lisp/eieio.el @@ -1393,12 +1393,6 @@ Argument FN is the function calling this verifier." (slot-unbound instance (object-class instance) slotname fn) value)) -;;; Missing types that are useful to me. -;; -(defun boolean-p (bool) - "Return non-nil if BOOL is nil or t." - (or (null bool) (eq bool t))) - ;;; Get/Set slots in an object. ;; (defmacro oref (obj slot) |