Skip to content

Commit

Permalink
need the comma when deferring errors to the future in yas/eval-lisp
Browse files Browse the repository at this point in the history
  • Loading branch information
joaotavora committed Feb 28, 2012
1 parent 8a40e08 commit 6b755c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yasnippet.el
Original file line number Diff line number Diff line change
Expand Up @@ -1240,7 +1240,7 @@ return an expression that when evaluated will issue an error."
(condition-case err
(read string)
(error (and (not nil-on-error)
`(error (error-message-string err))))))
`(error (error-message-string ,err))))))

(defun yas/read-keybinding (keybinding)
"Read KEYBINDING as a snippet keybinding, return a vector."
Expand Down

0 comments on commit 6b755c9

Please sign in to comment.