aboutsummaryrefslogtreecommitdiff
path: root/sx.el
diff options
context:
space:
mode:
authorSean Allred <code@seanallred.com>2014-12-15 16:33:29 -0500
committerSean Allred <code@seanallred.com>2014-12-15 16:33:29 -0500
commit3e332ab028d1b15b1a255411206368e53b372ff9 (patch)
tree67d12328b8f93d1147872f89af9645979d4ee425 /sx.el
parent203402f10a7bce27b30d19aa71b96dad9a0e6b3c (diff)
parent0a2f984d0771b9a921696af1fe3bad10cdbb7b54 (diff)
Merge pull request #158 from vermiculus/fix-some-warnings
Fix some warnings
Diffstat (limited to 'sx.el')
-rw-r--r--sx.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/sx.el b/sx.el
index 096e20b..c8d4e5b 100644
--- a/sx.el
+++ b/sx.el
@@ -104,6 +104,11 @@ is intentionally skipped."
(setq tail (cdr tail)))
(setcdr tail (cons x (cdr tail)))))
+(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))))
+
(defun sx-message (format-string &rest args)
"Display FORMAT-STRING as a message with ARGS.
See `format'."