diff options
Diffstat (limited to 'util.lisp')
-rw-r--r-- | util.lisp | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -37,3 +37,6 @@ YES is everything for which PRED is T, NO is everything else." (defun lambda-opt-p (x) (find x '(cl:&optional cl:&key cl:&aux cl:&allow-other-keys cl:&rest) :test #'eq)) + +(defun make-keyword (name) + (intern (string name) :keyword)) |