Skip to content

Commit

Permalink
do not downcase symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
thodg committed May 20, 2018
1 parent b603931 commit 2aae465
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion str.lisp
Expand Up @@ -29,7 +29,7 @@
"")

(defmethod atom-str ((x symbol))
(string-downcase (symbol-name x)))
(symbol-name x))

(defmethod atom-str ((x character))
(make-string 1 :initial-element x))
Expand Down

0 comments on commit 2aae465

Please sign in to comment.