Mercurial > emacs
changeset 51081:a4bb96832880
Use explicit coding tag.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Sun, 18 May 2003 21:27:41 +0000 |
parents | e5124f8f4dc9 |
children | af63282f9b8e |
files | lisp/mail/mail-extr.el |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/mail/mail-extr.el Sun May 18 21:07:01 2003 +0000 +++ b/lisp/mail/mail-extr.el Sun May 18 21:27:41 2003 +0000 @@ -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 @@ (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)