aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/package.lisp1
-rw-r--r--src/util.lisp4
2 files changed, 0 insertions, 5 deletions
diff --git a/src/package.lisp b/src/package.lisp
index 0582459..0022788 100644
--- a/src/package.lisp
+++ b/src/package.lisp
@@ -105,7 +105,6 @@
#:unlines
#:words
#:unwords
- #:symbol-named
#:memstring=
#:define-simple-error
#:plist-to-cmd-args
diff --git a/src/util.lisp b/src/util.lisp
index 887ebd1..a76b6c1 100644
--- a/src/util.lisp
+++ b/src/util.lisp
@@ -72,10 +72,6 @@
(defun unwords (words)
(format nil "~{~A~^ ~}" words))
-(defmacro symbol-named (name symbol)
- `(and (symbolp ,symbol)
- (string= (symbol-name ',name) (symbol-name ,symbol))))
-
(defun memstring= (string list)
(member string list :test #'string=))