(eword-encode-char-type): Return nil for ?\n.
authormorioka <morioka>
Tue, 27 Oct 1998 07:32:30 +0000 (07:32 +0000)
committermorioka <morioka>
Tue, 27 Oct 1998 07:32:30 +0000 (07:32 +0000)
eword-encode.el

index fecd854..c87d5fa 100644 (file)
@@ -109,7 +109,7 @@ MODE is allows `text', `comment', `phrase' or nil.  Default value is
 ;;;
 
 (defsubst eword-encode-char-type (character)
-  (if (or (eq character ? )(eq character ?\t))
+  (if (memq character '(?  ?\t ?\n))
       nil
     (char-charset character)
     ))