summaryrefslogtreecommitdiff
path: root/lisp/mail/mail-extr.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2003-05-18 21:27:41 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2003-05-18 21:27:41 +0000
commitb1ccc1cee6ed6bd3f10fa2bfc499f66af1fdfc18 (patch)
tree692d35abe34a2a73fe89c221b79d77dfe09832d3 /lisp/mail/mail-extr.el
parentc069d3ac3391b17d735c4868bda7d8148a9333af (diff)
downloademacs-b1ccc1cee6ed6bd3f10fa2bfc499f66af1fdfc18.tar.gz
Use explicit coding tag.
Diffstat (limited to 'lisp/mail/mail-extr.el')
-rw-r--r--lisp/mail/mail-extr.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/mail/mail-extr.el b/lisp/mail/mail-extr.el
index e764fb26b67..8bcc4c72d3a 100644
--- a/lisp/mail/mail-extr.el
+++ b/lisp/mail/mail-extr.el
@@ -1,4 +1,4 @@
-;;; mail-extr.el --- extract full name and address from RFC 822 mail header
+;;; mail-extr.el --- extract full name and address from RFC 822 mail header -*- coding: utf-8 -*-
;; Copyright (C) 1991, 1992, 1993, 1994, 1997, 2001
;; Free Software Foundation, Inc.
@@ -616,11 +616,11 @@ by translating things like \"foo!bar!baz@host\" into \"baz@bar.UUCP\"."
(defsubst mail-extr-skip-whitespace-forward ()
;; v19 fn skip-syntax-forward is more tasteful, but not byte-coded.
- (skip-chars-forward " \t\n\r\240"))
+ (skip-chars-forward " \t\n\r "))
(defsubst mail-extr-skip-whitespace-backward ()
;; v19 fn skip-syntax-backward is more tasteful, but not byte-coded.
- (skip-chars-backward " \t\n\r\240"))
+ (skip-chars-backward " \t\n\r "))
(defsubst mail-extr-undo-backslash-quoting (beg end)