From: Nikolaj Schumacher Date: Sun, 6 Mar 2011 02:38:48 +0000 (-0800) Subject: * lisp/emacs-lisp/elp.el (elp-results): Fix off-by-one in header. (Bug#2746) X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~674^2~9 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=509742cc29a0878b7b1decbc5afc94e29813d630;p=emacs.git * lisp/emacs-lisp/elp.el (elp-results): Fix off-by-one in header. (Bug#2746) --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b2788dd6899..ff365579ec0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2011-03-06 Nikolaj Schumacher (tiny change) + + * emacs-lisp/elp.el (elp-results): Fix off-by-one in header. (Bug#2746) + 2011-03-06 Kevin Ryde * textmodes/sgml-mode.el (sgml-fill-nobreak): Give it a doc. (Bug#5326) diff --git a/lisp/emacs-lisp/elp.el b/lisp/emacs-lisp/elp.el index 910eff3c78f..73af3a5708f 100644 --- a/lisp/emacs-lisp/elp.el +++ b/lisp/emacs-lisp/elp.el @@ -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))))))