# HG changeset patch # User Richard M. Stallman # Date 806262850 0 # Node ID 1243b1f01079a507bf11acf8f98e795cd46ff3f0 # Parent 9d8cf42ed0ba818ad5b99b74123fce3fac398489 (mail-fetch-field): Use buffer-substring-no-properties. diff -r 9d8cf42ed0ba -r 1243b1f01079 lisp/mail/mail-utils.el --- a/lisp/mail/mail-utils.el Thu Jul 20 17:43:52 1995 +0000 +++ b/lisp/mail/mail-utils.el Thu Jul 20 17:54:10 1995 +0000 @@ -174,7 +174,8 @@ (forward-char -1)) (setq value (concat value (if (string= value "") "" ", ") - (buffer-substring opoint (point)))))) + (buffer-substring-no-properties + opoint (point)))))) (and (not (string= value "")) value)) (if (re-search-forward name nil t) (progn @@ -186,7 +187,7 @@ (forward-char -1) (while (member (preceding-char) '(? ?\t)) (forward-char -1)) - (buffer-substring opoint (point))))))))) + (buffer-substring-no-properties opoint (point))))))))) ;; Parse a list of tokens separated by commas. ;; It runs from point to the end of the visible part of the buffer.