Skip to content

Commit e18e26c

Browse files
committed
Remove unnecessary use of ECASE.
ECASE used when operating over a variable that is set to one of three known failures. Allegro didn't like that the error case was unreachable (clever of it to realize it was unreachable).
1 parent 4b048e6 commit e18e26c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hddl/hddl-pprint.lisp

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ in the form of a list of actions."
124124
(parse-integer line :junk-allowed t)
125125
(collecting
126126
(cons id
127-
(ecase format
127+
(case format
128128
(:comma-separated
129129
(comma-separated-task->sexp (subseq (string-upcase line) (1+ pos))))
130130
(:s-expression

0 commit comments

Comments
 (0)