lisp/apropos.el: Avoid formatting error in compact layout mode.
authorJuanma Barranquero <lekktu@gmail.com>
Mon, 24 Feb 2014 02:38:54 +0000 (03:38 +0100)
committerJuanma Barranquero <lekktu@gmail.com>
Mon, 24 Feb 2014 02:38:54 +0000 (03:38 +0100)
lisp/ChangeLog
lisp/apropos.el

index 12481ef..1e974b1 100644 (file)
@@ -1,3 +1,8 @@
+2014-02-24  Juanma Barranquero  <lekktu@gmail.com>
+
+       * apropos.el (apropos-print): Avoid formatting error when
+       apropos-do-all and apropos-compact-layout are both t.
+
 2014-02-23  Juanma Barranquero  <lekktu@gmail.com>
 
        * apropos.el (apropos-property, apropos-all-words-regexp)
index 47e4448..2cba65e 100644 (file)
@@ -1052,6 +1052,7 @@ If non-nil, TEXT is a string that will be printed as a heading."
       (let ((p apropos-accumulator)
            (old-buffer (current-buffer))
            (inhibit-read-only t)
+           (button-end 0)
            symbol item)
        (set-buffer standard-output)
        (apropos-mode)
@@ -1069,10 +1070,12 @@ If non-nil, TEXT is a string that will be printed as a heading."
              (setq apropos-item
                    (cons (car apropos-item)
                          (cons nil (cdr apropos-item)))))
+         (when (= (point) button-end) (terpri))
          (insert-text-button (symbol-name symbol)
                              'type 'apropos-symbol
                              'skip apropos-multi-type
                              'face 'apropos-symbol)
+         (setq button-end (point))
          (if (and (eq apropos-sort-by-scores 'verbose)
                   (cadr apropos-item))
              (insert " (" (number-to-string (cadr apropos-item)) ") "))