1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-03 11:33:37 +00:00

(mail-extr-safe-move-sexp): Make sure this doesn't

signal errors even for pathological From headers.
This commit is contained in:
Richard M. Stallman 1996-09-13 00:28:33 +00:00
parent 378df08c37
commit 16f45d1b8d

View 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 !!!