Skip to content

Commit 2daadc7

Browse files
authored
Merge pull request #7 from prednaz/master
Fix `cl-multiple-value-bind` and hence `purescript-pursuit`
2 parents 8db1d02 + 19616c3 commit 2daadc7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

purescript-mode.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ May return a qualified name."
212212
(skip-chars-backward " \t"))
213213

214214
(let ((case-fold-search nil))
215-
(multiple-value-bind (start end)
215+
(cl-multiple-value-bind (start end)
216216
(if (looking-at "\\s_")
217217
(list (progn (skip-syntax-backward "_") (point))
218218
(progn (skip-syntax-forward "_") (point)))

0 commit comments

Comments
 (0)