From e9d23744534dcce90c83110092be4a5567f88383 Mon Sep 17 00:00:00 2001 From: hmurata Date: Fri, 12 Jul 2002 16:34:33 +0000 Subject: [PATCH] * elmo-split.el (elmo-split-and): Fixed condition. --- elmo/ChangeLog | 4 ++++ elmo/elmo-split.el | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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)) -- 1.7.10.4