aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNikolaj Schumacher <[email protected]>2011-03-05 18:38:48 -0800
committerGlenn Morris <[email protected]>2011-03-05 18:38:48 -0800
commit509742cc29a0878b7b1decbc5afc94e29813d630 (patch)
treead52105d0834f567e099b1cfa063e26efcc801d1
parent14369ab313e41c1360542b37b5b53a52ab78a2c3 (diff)
* lisp/emacs-lisp/elp.el (elp-results): Fix off-by-one in header. (Bug#2746)
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/emacs-lisp/elp.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index b2788dd689..ff365579ec 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
+2011-03-06 Nikolaj Schumacher <[email protected]> (tiny change)
+
+ * emacs-lisp/elp.el (elp-results): Fix off-by-one in header. (Bug#2746)
+
2011-03-06 Kevin Ryde <[email protected]>
* 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 910eff3c78..73af3a5708 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))))))