]> git.eshelyaron.com Git - emacs.git/commitdiff
(describe-function-1): Fill arglist.
authorJohn Paul Wallington <jpw@pobox.com>
Wed, 30 Nov 2005 00:55:12 +0000 (00:55 +0000)
committerJohn Paul Wallington <jpw@pobox.com>
Wed, 30 Nov 2005 00:55:12 +0000 (00:55 +0000)
lisp/ChangeLog
lisp/help-fns.el

index b95bd692f8fc43b6bbb166aca260bf0fd0caadc2..ae1a178ae0f328195cf7756302c4e812d4c8009e 100644 (file)
@@ -1,3 +1,7 @@
+2005-11-30  John Paul Wallington  <jpw@gnu.org>
+
+       * help-fns.el (describe-function-1): Fill arglist output.
+
 2005-11-30  Kim F. Storm  <storm@cua.dk>
 
        * emulation/cua-rect.el (cua--rectangle-overlays): Make permanent-local.
index 6e1bd62d04bca1f0f3897aba4265330681324462..c3bff9273007dbba4e2202e742682cfb27843f6f 100644 (file)
@@ -436,7 +436,9 @@ face (according to `face-differs-from-default-p')."
                          (format "\nMacro: %s" (format-kbd-macro def)))
                         (t "[Missing arglist.  Please make a bug report.]")))
                  (high (help-highlight-arguments use doc)))
-            (insert (car high) "\n")
+            (let ((fill-begin (point)))
+             (insert (car high) "\n")
+             (fill-region fill-begin (point)))
             (setq doc (cdr high))))
         (let ((obsolete (and
                          ;; function might be a lambda construct.