Skip to content

Commit

Permalink
Merge pull request 7max#17 from slyrus/sbcl-debug-name-fix
Browse files Browse the repository at this point in the history
check to see if debug-name is an atom before treating it as a list
  • Loading branch information
slyrus authored Jun 21, 2017
2 parents dae29d4 + b7d8f15 commit c262fab
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/naming-sbcl.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ will be: package.foo.bar.baz
(symbol-name debug-name)))))
debug-name)
(cond
((atom debug-name)
(string debug-name))
((member (first debug-name) '(flet labels lambda))
(include-block-debug-name? (second debug-name)))
((eq 'labels (first debug-name))
Expand Down

0 comments on commit c262fab

Please sign in to comment.