]> git.eshelyaron.com Git - emacs.git/commitdiff
(byte-compile-generate-call-tree): Doc fix.
authorThien-Thi Nguyen <ttn@gnuvola.org>
Wed, 8 Sep 2004 12:04:22 +0000 (12:04 +0000)
committerThien-Thi Nguyen <ttn@gnuvola.org>
Wed, 8 Sep 2004 12:04:22 +0000 (12:04 +0000)
(display-call-tree): Ensure newline after caller/calls blocks.

lisp/emacs-lisp/bytecomp.el

index 0a12f6fae9f7bf6c9d1ede72abee74d58f296fe9..2b0a8e698a6110c5f0e42c537afd36406bdceda6 100644 (file)
@@ -354,7 +354,7 @@ Elements of the list may be be:
 
 (defcustom byte-compile-generate-call-tree nil
   "*Non-nil means collect call-graph information when compiling.
-This records functions were called and from where.
+This records which functions were called and from where.
 If the value is t, compilation displays the call graph when it finishes.
 If the value is neither t nor nil, compilation asks you whether to display
 the graph.
@@ -3878,15 +3878,18 @@ invoked interactively."
                                 (mapconcat 'symbol-name callers ", ")
                               "<top level>"))
              (let ((fill-prefix "    "))
-               (fill-region-as-paragraph p (point)))))
+               (fill-region-as-paragraph p (point)))
+              (unless (= 0 (current-column))
+                (insert "\n"))))
        (if calls
            (progn
              (insert "  calls:\n")
              (setq p (point))
              (insert "    " (mapconcat 'symbol-name calls ", "))
              (let ((fill-prefix "    "))
-               (fill-region-as-paragraph p (point)))))
-       (insert "\n")
+               (fill-region-as-paragraph p (point)))
+              (unless (= 0 (current-column))
+                (insert "\n"))))
        (setq rest (cdr rest)))
 
       (message "Generating call tree...(finding uncalled functions...)")