diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-07-27 01:54:56 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-07-27 01:54:56 +0000 |
commit | b9c22adf8a795edf4b2387a05473f33e619ddbcf (patch) | |
tree | 596c17a95d1cb45a6ed8648c64efe3ea57f0293c /lisp | |
parent | 9f993a1044305652dbee613b562b74ee110ad7e2 (diff) | |
download | emacs-b9c22adf8a795edf4b2387a05473f33e619ddbcf.tar.gz emacs-b9c22adf8a795edf4b2387a05473f33e619ddbcf.tar.bz2 emacs-b9c22adf8a795edf4b2387a05473f33e619ddbcf.zip |
(mail-extr-voodoo): Handle unmatched quotes in the comment-deletion loop.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/mail/mail-extr.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mail/mail-extr.el b/lisp/mail/mail-extr.el index 4b5fa650e62..b7975928253 100644 --- a/lisp/mail/mail-extr.el +++ b/lisp/mail/mail-extr.el @@ -1456,7 +1456,7 @@ If ADDRESS contains more than one RFC-822 address, only the first is (let ((cbeg (point))) (set-syntax-table mail-extr-address-text-comment-syntax-table) (cond ((memq (following-char) '(?\' ?\`)) - (search-forward "'" nil t + (search-forward "'" nil 'move (if (eq ?\' (following-char)) 2 1))) (t (or (mail-extr-safe-move-sexp 1) |