changeset 49846:7e279209f48b

(rfc822-nuke-whitespace): Fix character constant.
author Juanma Barranquero <lekktu@gmail.com>
date Tue, 18 Feb 2003 11:07:40 +0000
parents 35a345af2558
children 78aa91f765c9
files lisp/mail/rfc822.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/mail/rfc822.el	Tue Feb 18 11:06:02 2003 +0000
+++ b/lisp/mail/rfc822.el	Tue Feb 18 11:07:40 2003 +0000
@@ -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)