diff options
author | Yoni Rabkin <yrk@gnu.org> | 2014-12-08 11:00:04 -0500 |
---|---|---|
committer | Yoni Rabkin <yrk@gnu.org> | 2014-12-08 11:00:04 -0500 |
commit | e46e2adc003461139a0f746768ee660fe96a8db7 (patch) | |
tree | 3272d34a0136be6c9d86d9c08ac272823e39819f | |
parent | c654b307c827a622d35e6c9de8554c769652c5d7 (diff) |
* rt-liberation.el: Syntax bug fix.
Sorry!
-rw-r--r-- | rt-liberation.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rt-liberation.el b/rt-liberation.el index 46e7cd0..81872dd 100644 --- a/rt-liberation.el +++ b/rt-liberation.el @@ -1102,7 +1102,7 @@ string then that will be the name of the new buffer." (defun rt-liber-multi-delete-spam () "Delete marked tickets as spam." (interactive) - (error "this feature is currently broken! I'm working on it..." + (error "this feature is currently broken! I'm working on it...") ;; (cond ((featurep 'rt-liberation-multi) ;; (when (y-or-n-p "Delete marked tickets as spam? ") ;; (rt-liber-multi-flag-as-spam-and-delete))) @@ -1392,7 +1392,7 @@ If FIELD already exists, update to VALUE." (defun rt-liber-browser-mark-as-spam () "Mark the current ticket as spam, and delete it." (interactive) - (error "this feature is currently broken! I'm working on it..." + (error "this feature is currently broken! I'm working on it...") ;; (if (y-or-n-p "Delete marked ticket as spam? ") ;; (let ((id (rt-liber-browser-ticket-id-at-point))) ;; (rt-liber-command-set-cf |