mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-28 07:45:00 +00:00
* emacs-lisp/eieio.el (boolean-p): Deleted.
* cedet/ede/srecode.el: Fix provide statement.
This commit is contained in:
parent
8240628d21
commit
722ff82f44
@ -1,3 +1,11 @@
|
||||
2009-09-30 Eric Ludlam <zappo@gnu.org>
|
||||
|
||||
* emacs-lisp/eieio.el (boolean-p): Deleted.
|
||||
|
||||
2009-09-30 Sascha Wilde <wilde@sha-bang.de>
|
||||
|
||||
* cedet/ede/srecode.el: Fix provide statement.
|
||||
|
||||
2009-09-30 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* cedet/ede/proj.el (ede-proj-target-makefile-miscelaneous):
|
||||
|
@ -1,4 +1,4 @@
|
||||
;;; ede-srecode.el --- EDE utilities on top of SRecoder
|
||||
;;; ede/srecode.el --- EDE utilities on top of SRecoder
|
||||
|
||||
;; Copyright (C) 2008, 2009 Free Software Foundation, Inc.
|
||||
|
||||
@ -101,6 +101,6 @@ Note: Just like `srecode-insert', but templates found in 'ede app."
|
||||
|
||||
))
|
||||
|
||||
(provide 'ede-srecode)
|
||||
(provide 'ede/srecode)
|
||||
|
||||
;;; ede-srecode.el ends here
|
||||
;;; ede/srecode.el ends here
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user