]> git.eshelyaron.com Git - emacs.git/commitdiff
(mail-extr-safe-move-sexp): Make sure this doesn't
authorRichard M. Stallman <rms@gnu.org>
Fri, 13 Sep 1996 00:28:33 +0000 (00:28 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 13 Sep 1996 00:28:33 +0000 (00:28 +0000)
signal errors even for pathological From headers.

lisp/mail/mail-extr.el

index e72dd2762d8e52cfd3452df8cc9409eebe3ff505..6b0ba81cb9e76c58415ffc8a4b3aa053d1fbebb0 100644 (file)
@@ -696,7 +696,7 @@ by translating things like \"foo!bar!baz@host\" into \"baz@bar.UUCP\".")
   ;; Safely skip over one balanced sexp, if there is one.  Return t if success.
   (` (condition-case error
         (progn
-          (goto-char (scan-sexps (point) (, arg)))
+          (goto-char (or (scan-sexps (point) (, arg)) (point)))
           t)
        (error
        ;; #### kludge kludge kludge kludge kludge kludge kludge !!!