]> git.eshelyaron.com Git - emacs.git/commitdiff
(rfc822-nuke-whitespace): Fix character constant.
authorJuanma Barranquero <lekktu@gmail.com>
Tue, 18 Feb 2003 11:07:40 +0000 (11:07 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Tue, 18 Feb 2003 11:07:40 +0000 (11:07 +0000)
lisp/mail/rfc822.el

index 7c32b251bf985d75be5c9d0a658c5a4cdf90ed8f..989f43cd5a5146bf1bb12b21f3feb8fd1b38300c 100644 (file)
@@ -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)