Skip to content

Commit

Permalink
Bug fix. Arglists were in reverse order. Remember kids (into () ..) r…
Browse files Browse the repository at this point in the history
…everses seq.
  • Loading branch information
scottjad committed Sep 17, 2010
1 parent c8f6b42 commit 0123925
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/swank/commands/contrib/swank_arglists.clj
Expand Up @@ -39,9 +39,9 @@
current (first arglists)
remaining (rest arglists)]
(if (position-in-arglist? current pos)
(into '() (concat checked
[(highlight-position current pos)]
remaining))
(apply list (concat checked
[(highlight-position current pos)]
remaining))
(when (seq remaining)
(recur (conj checked current)
(first remaining)
Expand Down

0 comments on commit 0123925

Please sign in to comment.