diff options
author | Sean Allred <code@seanallred.com> | 2014-12-20 02:00:24 -0500 |
---|---|---|
committer | Sean Allred <code@seanallred.com> | 2014-12-20 02:00:24 -0500 |
commit | f80f38e87c86070433a9a8c2a6fbf75b490b6875 (patch) | |
tree | 34f4dab1be163164b1f476a0dc82511c40f0104c | |
parent | ad070b3401f47f11b8ad7b623f05aba7e769e03c (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. |