chiark
/
gitweb
/
~mdw
/
clg
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
d1ce759
)
Added :except keyword to use with :ignore-prefix in DEFINE-TYPES-BY-INTROSPECTION
author
espen
<espen>
Sun, 24 Mar 2002 12:56:03 +0000
(12:56 +0000)
committer
espen
<espen>
Sun, 24 Mar 2002 12:56:03 +0000
(12:56 +0000)
glib/gtype.lisp
patch
|
blob
|
blame
|
history
diff --git
a/glib/gtype.lisp
b/glib/gtype.lisp
index 8f8e3c044cf6e4c0db35fa81bc9fa034c188bae4..2b4a2d0625129cfcf117b6951f67b965232ef7fc 100644
(file)
--- a/
glib/gtype.lisp
+++ b/
glib/gtype.lisp
@@
-15,7
+15,7
@@
;; License along with this library; if not, write to the Free Software
;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
;; License along with this library; if not, write to the Free Software
;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-;; $Id: gtype.lisp,v 1.1
5 2002-01-20 14:09:52
espen Exp $
+;; $Id: gtype.lisp,v 1.1
6 2002-03-24 12:56:03
espen Exp $
(in-package "GLIB")
(in-package "GLIB")
@@
-332,7
+332,11
@@
(defun expand-type-definitions (prefix &optional args)
#'(lambda (options)
(and
(string-prefix-p (first options) name)
#'(lambda (options)
(and
(string-prefix-p (first options) name)
- (getf (cdr options) :ignore-prefix)))
+ (getf (cdr options) :ignore-prefix)
+ (not (some
+ #'(lambda (exception)
+ (string= name exception))
+ (getf (cdr options) :except)))))
args))))
(find-types prefix))))
args))))
(find-types prefix))))