projects
/
elisp
/
flim.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
336dcde
)
(eword-encode-char-type): Return nil for ?\n.
author
morioka
<morioka>
Tue, 27 Oct 1998 07:32:30 +0000
(07:32 +0000)
committer
morioka
<morioka>
Tue, 27 Oct 1998 07:32:30 +0000
(07:32 +0000)
eword-encode.el
patch
|
blob
|
history
diff --git
a/eword-encode.el
b/eword-encode.el
index
fecd854
..
c87d5fa
100644
(file)
--- a/
eword-encode.el
+++ b/
eword-encode.el
@@
-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)
))