a result; ignore non-list forms.
+2002-01-24 Katsumi Yamaoka <yamaoka@jpl.org>
+
+ * lisp/gnus-clfns.el (find-cl-run-time-functions): Insert a
+ newline before filling a result; ignore non-list forms.
+
2002-01-24 ARISAWA Akihiro <ari@atesoft.advantest.co.jp>
- * lisp/gnus-sum.el (gnus-summary-show-article): If coding-system is
+ * lisp/gnus-sum.el (gnus-summary-show-article): If coding-system is
specified, bind `default-mime-charset' to it.
2002-01-23 Katsumi Yamaoka <yamaoka@jpl.org>
((and (memq fn clfns)
(listp form))
(push fn fns)))
- (setq forms (append form forms))))
+ (when (listp form)
+ (setq forms (append form forms)))))
(when fns
(if buffer
(set-buffer buffer)
(progn
(insert fill-prefix
(mapconcat (lambda (fn) (format "%s" fn))
- (nreverse fns) " "))
+ (nreverse fns) " ")
+ "\n")
(point)))
(fill-region (point-min) (point-max))
(goto-char (point-min))