(fill-cited-region): Use `if' instead of `when'.
authormorioka <morioka>
Tue, 20 Jul 1999 04:56:03 +0000 (04:56 +0000)
committermorioka <morioka>
Tue, 20 Jul 1999 04:56:03 +0000 (04:56 +0000)
mu-cite.el

index ec059be..87ec6ed 100644 (file)
@@ -429,12 +429,12 @@ TABLE defaults to the current buffer's category table."
          (let ((b (match-beginning 0))
                (e (match-end 0)))
            (delete-region b e)
-           (when (and (> b (point-min))
-                      (let ((cat (char-category
-                                  (char-before b))))
-                        (or (string-match "a" cat)
-                            (string-match "l" cat))))
-             (insert " "))))
+           (if (and (> b (point-min))
+                    (let ((cat (char-category
+                                (char-before b))))
+                      (or (string-match "a" cat)
+                          (string-match "l" cat))))
+               (insert " "))))
        (goto-char (point-min))
        (fill-region (point-min) (point-max))))))