diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2003-02-18 11:07:40 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2003-02-18 11:07:40 +0000 |
commit | a8eb445b5380e4146854427c9a8155481954a475 (patch) | |
tree | 7c6e84ccaad4c02f795ab363812edfdb2ee977ea /lisp/mail/rfc822.el | |
parent | e29bddc1a59df6a79a8e2e695110c7ed6565ac6b (diff) | |
download | emacs-a8eb445b5380e4146854427c9a8155481954a475.tar.gz |
(rfc822-nuke-whitespace): Fix character constant.
Diffstat (limited to 'lisp/mail/rfc822.el')
-rw-r--r-- | lisp/mail/rfc822.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mail/rfc822.el b/lisp/mail/rfc822.el index 7c32b251bf9..989f43cd5a5 100644 --- a/lisp/mail/rfc822.el +++ b/lisp/mail/rfc822.el @@ -75,7 +75,7 @@ (forward-char -1) (delete-char 2) t) - ((memq ch '(?\ ?\t ?\n)) + ((memq ch '(?\ ?\t ?\n)) (delete-region (point) (progn (skip-chars-forward " \t\n") (point))) t) |