From: hmurata Date: Fri, 12 Jul 2002 16:34:33 +0000 (+0000) Subject: * elmo-split.el (elmo-split-and): Fixed condition. X-Git-Tag: elmo-mark-root~54 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=e9d23744534dcce90c83110092be4a5567f88383;p=elisp%2Fwanderlust.git * elmo-split.el (elmo-split-and): Fixed condition. --- diff --git a/elmo/ChangeLog b/elmo/ChangeLog index 92f1289..5c12eb2 100644 --- a/elmo/ChangeLog +++ b/elmo/ChangeLog @@ -1,3 +1,7 @@ +2002-07-12 Hiroya Murata + + * elmo-split.el (elmo-split-and): Fixed condition. + 2002-07-12 Yuuichi Teranishi * elmo-split.el: New file. diff --git a/elmo/elmo-split.el b/elmo/elmo-split.el index d18b590..0b41a3e 100644 --- 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))