* lisp/emacs-lisp/elp.el (elp-results): Fix off-by-one in header. (Bug#2746)
[bpt/emacs.git] / lisp / emacs-lisp / elp.el
index 910eff3..73af3a5 100644 (file)
@@ -630,7 +630,7 @@ displayed."
                                    'display (list 'space :align-to column)
                                    'face 'fixed-pitch)
                        title)
-                    (setq column (+ column 1
+                    (setq column (+ column 2
                                     (if (= column 0)
                                         elp-field-len
                                       (length title))))))