]> git.eshelyaron.com Git - emacs.git/commitdiff
(mail-fetch-field): Use buffer-substring-no-properties.
authorRichard M. Stallman <rms@gnu.org>
Thu, 20 Jul 1995 17:54:10 +0000 (17:54 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 20 Jul 1995 17:54:10 +0000 (17:54 +0000)
lisp/mail/mail-utils.el

index 3798ab78dcef3d911f909dd753ee994cbf7efb04..6cf718060c7bcc0b41b3a8ace0b78d6a189cb13e 100644 (file)
@@ -174,7 +174,8 @@ If third arg ALL is non-nil, concatenate all such fields with commas between."
                  (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 @@ If third arg ALL is non-nil, concatenate all such fields with commas between."
                (forward-char -1)
                (while (member (preceding-char) '(?  ?\t))
                  (forward-char -1))
-               (buffer-substring opoint (point)))))))))
+               (buffer-substring-no-properties opoint (point)))))))))
 \f
 ;; Parse a list of tokens separated by commas.
 ;; It runs from point to the end of the visible part of the buffer.