From 77bc20d394f1e35c0e60efcde457e51f43f51c2b Mon Sep 17 00:00:00 2001 From: Miles Bader Date: Tue, 2 Jul 1996 16:23:34 +0000 Subject: [PATCH] (mail-hist-current-header-name): Use buffer-substring-no-properties. --- lisp/mail/mail-hist.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/mail/mail-hist.el b/lisp/mail/mail-hist.el index 25bdcc2e55f..00a7d1c56ff 100644 --- a/lisp/mail/mail-hist.el +++ b/lisp/mail/mail-hist.el @@ -117,7 +117,7 @@ the message." (and name-start name-end - (downcase (buffer-substring name-start name-end))))))) + (downcase (buffer-substring-no-properties name-start name-end))))))) (defsubst mail-hist-forward-header (count) "Move forward COUNT headers (backward if COUNT is negative). -- 2.11.4.GIT