* elmo-split.el (elmo-split-and): Fixed condition.
authorhmurata <hmurata>
Fri, 12 Jul 2002 16:34:33 +0000 (16:34 +0000)
committerhmurata <hmurata>
Fri, 12 Jul 2002 16:34:33 +0000 (16:34 +0000)
elmo/ChangeLog
elmo/elmo-split.el

index 92f1289..5c12eb2 100644 (file)
@@ -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.
index d18b590..0b41a3e 100644 (file)
@@ -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))