aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Paul Wallington2005-11-30 00:55:12 +0000
committerJohn Paul Wallington2005-11-30 00:55:12 +0000
commit24374f5a1dafd5be4fdd2eb32f338516c6836459 (patch)
tree988a50a27822f72f15b71547f7fd697f27ea9d17
parentde7124a7bda8ceeaf502775849f7aabf3a97c2be (diff)
downloademacs-24374f5a1dafd5be4fdd2eb32f338516c6836459.tar.gz
emacs-24374f5a1dafd5be4fdd2eb32f338516c6836459.zip
(describe-function-1): Fill arglist.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/help-fns.el4
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index b95bd692f8f..ae1a178ae0f 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12005-11-30 John Paul Wallington <jpw@gnu.org>
2
3 * help-fns.el (describe-function-1): Fill arglist output.
4
12005-11-30 Kim F. Storm <storm@cua.dk> 52005-11-30 Kim F. Storm <storm@cua.dk>
2 6
3 * emulation/cua-rect.el (cua--rectangle-overlays): Make permanent-local. 7 * emulation/cua-rect.el (cua--rectangle-overlays): Make permanent-local.
diff --git a/lisp/help-fns.el b/lisp/help-fns.el
index 6e1bd62d04b..c3bff927300 100644
--- a/lisp/help-fns.el
+++ b/lisp/help-fns.el
@@ -436,7 +436,9 @@ face (according to `face-differs-from-default-p')."
436 (format "\nMacro: %s" (format-kbd-macro def))) 436 (format "\nMacro: %s" (format-kbd-macro def)))
437 (t "[Missing arglist. Please make a bug report.]"))) 437 (t "[Missing arglist. Please make a bug report.]")))
438 (high (help-highlight-arguments use doc))) 438 (high (help-highlight-arguments use doc)))
439 (insert (car high) "\n") 439 (let ((fill-begin (point)))
440 (insert (car high) "\n")
441 (fill-region fill-begin (point)))
440 (setq doc (cdr high)))) 442 (setq doc (cdr high))))
441 (let ((obsolete (and 443 (let ((obsolete (and
442 ;; function might be a lambda construct. 444 ;; function might be a lambda construct.