* lisp/emacs-lisp/elp.el (elp-results): Fix off-by-one in header. (Bug#2746)

This commit is contained in:
Nikolaj Schumacher 2011-03-05 18:38:48 -08:00 committed by Glenn Morris
parent 14369ab313
commit 509742cc29
2 changed files with 5 additions and 1 deletions

View 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))))))