diff options
Diffstat (limited to 'lisp/mail')
| -rw-r--r-- | lisp/mail/mail-extr.el | 6 | ||||
| -rw-r--r-- | lisp/mail/rfc2047.el | 2 | ||||
| -rw-r--r-- | lisp/mail/rfc2231.el | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/lisp/mail/mail-extr.el b/lisp/mail/mail-extr.el index ae3b37ea41c..ee009ecfda4 100644 --- a/lisp/mail/mail-extr.el +++ b/lisp/mail/mail-extr.el | |||
| @@ -655,10 +655,10 @@ Unless NO-REPLACE is true, at each of the positions in LIST-SYMBOL | |||
| 655 | t) | 655 | t) |
| 656 | (error | 656 | (error |
| 657 | ;; #### kludge kludge kludge kludge kludge kludge kludge !!! | 657 | ;; #### kludge kludge kludge kludge kludge kludge kludge !!! |
| 658 | (if (string-equal (nth 1 error) "Unbalanced parentheses") | 658 | (if (string-equal (error-slot-value error 1) "Unbalanced parentheses") |
| 659 | nil | 659 | nil |
| 660 | (while t | 660 | (while t ;;FIXME: Why? |
| 661 | (signal (car error) (cdr error))))))) | 661 | (signal error)))))) |
| 662 | 662 | ||
| 663 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 663 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
| 664 | ;; | 664 | ;; |
diff --git a/lisp/mail/rfc2047.el b/lisp/mail/rfc2047.el index a48b876443b..3961c2a1e25 100644 --- a/lisp/mail/rfc2047.el +++ b/lisp/mail/rfc2047.el | |||
| @@ -543,7 +543,7 @@ Dynamically bind `rfc2047-encoding-type' to change that." | |||
| 543 | (setq last-encoded nil))))) | 543 | (setq last-encoded nil))))) |
| 544 | (error | 544 | (error |
| 545 | (if (or debug-on-quit debug-on-error) | 545 | (if (or debug-on-quit debug-on-error) |
| 546 | (signal (car err) (cdr err)) | 546 | (signal err) |
| 547 | (error "Invalid data for rfc2047 encoding: %s" | 547 | (error "Invalid data for rfc2047 encoding: %s" |
| 548 | (replace-regexp-in-string "[ \t\n]+" " " orig-text)))))))) | 548 | (replace-regexp-in-string "[ \t\n]+" " " orig-text)))))))) |
| 549 | (unless dont-fold | 549 | (unless dont-fold |
diff --git a/lisp/mail/rfc2231.el b/lisp/mail/rfc2231.el index d096176a9b1..70f73018674 100644 --- a/lisp/mail/rfc2231.el +++ b/lisp/mail/rfc2231.el | |||
| @@ -176,7 +176,7 @@ must never cause a Lisp error." | |||
| 176 | (error | 176 | (error |
| 177 | (setq parameters nil) | 177 | (setq parameters nil) |
| 178 | (when signal-error | 178 | (when signal-error |
| 179 | (signal (car err) (cdr err))))) | 179 | (signal err)))) |
| 180 | 180 | ||
| 181 | ;; Now collect and concatenate continuation parameters. | 181 | ;; Now collect and concatenate continuation parameters. |
| 182 | (let ((cparams nil) | 182 | (let ((cparams nil) |