diff options
author | Deepak Goel <deego@gnufans.org> | 2007-12-06 17:56:42 +0000 |
---|---|---|
committer | Deepak Goel <deego@gnufans.org> | 2007-12-06 17:56:42 +0000 |
commit | 6bb355e8fa24921802b16638358e743c237ef422 (patch) | |
tree | bcaf92af8d8d66d5b9f19f242c83826aae856f91 /lisp/allout.el | |
parent | 92770f6264eb4ff2c82d0a14f5a1908e9cabeb8d (diff) | |
download | emacs-6bb355e8fa24921802b16638358e743c237ef422.tar.gz |
Fix buggy calls to `error'.
Diffstat (limited to 'lisp/allout.el')
-rw-r--r-- | lisp/allout.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/allout.el b/lisp/allout.el index 8878c56735f..c0175032bd8 100644 --- a/lisp/allout.el +++ b/lisp/allout.el @@ -1501,7 +1501,7 @@ See `allout-encryption-ciphertext-rejection-regexps' for rejection reasons.") (condition-case failure (setq allout-after-save-decrypt (allout-encrypt-decrypted except-mark)) - (error (progn + (error "%s" (progn (message "allout-write-file-hook-handler suppressing error %s" failure) |