* lisp/emacs-lisp/elp.el (elp-results): Fix off-by-one in header. (Bug#2746)
This commit is contained in:
parent
14369ab313
commit
509742cc29
2 changed files with 5 additions and 1 deletions
|
@ -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))))))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue