diff options
author | Sean Allred <code@seanallred.com> | 2014-12-20 02:00:24 -0500 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-12-22 10:46:41 -0200 |
commit | e3aa448f7d456d857879e53ae7b2268d8b5d97c2 (patch) | |
tree | 8325fccfe122c8a8966a5d1be39c3e028d3e2d24 | |
parent | 06ec0c89a1ecf437d30c3a796f1611a8d8d3dbc0 (diff) |
Hotfix undefined variable
-rw-r--r-- | sx.el | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -107,7 +107,8 @@ is intentionally skipped." (defun sx-user-error (format-string &rest args) "Like `user-error', but prepend FORMAT-STRING with \"[sx]\". See `format'." - (signal 'user-error (list (apply #'format (concat "[sx] " format) args)))) + (signal 'user-error + (list (apply #'format (concat "[sx] " format-string) args)))) (defun sx-message (format-string &rest args) "Display FORMAT-STRING as a message with ARGS. |