common-lisp.net
/
users/frideau/exscribe.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
690246d
)
Comment out a defun identifierp that's better done in fare-utils.
author
Francois-Rene Rideau
<tunes@google.com>
Wed, 29 Feb 2012 19:23:02 +0000 (14:23 -0500)
committer
Francois-Rene Rideau
<tunes@google.com>
Wed, 29 Feb 2012 19:23:02 +0000 (14:23 -0500)
macros.lisp
patch
|
blob
|
blame
|
history
diff --git
a/macros.lisp
b/macros.lisp
index
7a12da2
..
632742e
100644
(file)
--- a/
macros.lisp
+++ b/
macros.lisp
@@
-33,10
+33,12
@@
(intern (symbol-name x) package)
(error "~A isn't a keyword" x)))
+#| ; a better(?) version is in fare-utils/base/parse-cl-syntax.lisp
(defun identifierp (x)
(and (symbolp x)
(not #+sbcl (sb-c::constantp x)
#-sbcl (or (keywordp x) (typep x 'boolean)))))
+|#
(defun decode-optional-spec (spec)
(labels ((err () (error "invalid optional argument specification ~W" spec))