projects
/
elisp
/
wanderlust.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
445e7a1
)
* elmo-split.el (elmo-split-and): Fixed condition.
author
hmurata
<hmurata>
Fri, 12 Jul 2002 16:34:33 +0000
(16:34 +0000)
committer
hmurata
<hmurata>
Fri, 12 Jul 2002 16:34:33 +0000
(16:34 +0000)
elmo/ChangeLog
patch
|
blob
|
history
elmo/elmo-split.el
patch
|
blob
|
history
diff --git
a/elmo/ChangeLog
b/elmo/ChangeLog
index
92f1289
..
5c12eb2
100644
(file)
--- a/
elmo/ChangeLog
+++ b/
elmo/ChangeLog
@@
-1,3
+1,7
@@
+2002-07-12 Hiroya Murata <lapis-lazuli@pop06.odn.ne.jp>
+
+ * elmo-split.el (elmo-split-and): Fixed condition.
+
2002-07-12 Yuuichi Teranishi <teranisi@gohome.org>
* elmo-split.el: New file.
diff --git
a/elmo/elmo-split.el
b/elmo/elmo-split.el
index
d18b590
..
0b41a3e
100644
(file)
--- a/
elmo/elmo-split.el
+++ b/
elmo/elmo-split.el
@@
-129,7
+129,7
@@
Example:
(defun elmo-split-and (buffer &rest args)
(catch 'done
(dolist (arg args)
- (unless (not (elmo-split-eval buffer arg))
+ (unless (elmo-split-eval buffer arg)
(throw 'done nil)))
t))