diff options
author | Nikolaj Schumacher <me@nschum.de> | 2011-03-05 18:38:48 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2011-03-05 18:38:48 -0800 |
commit | 509742cc29a0878b7b1decbc5afc94e29813d630 (patch) | |
tree | ad52105d0834f567e099b1cfa063e26efcc801d1 | |
parent | 14369ab313e41c1360542b37b5b53a52ab78a2c3 (diff) | |
download | emacs-509742cc29a0878b7b1decbc5afc94e29813d630.tar.gz |
* lisp/emacs-lisp/elp.el (elp-results): Fix off-by-one in header. (Bug#2746)
-rw-r--r-- | lisp/ChangeLog | 4 | ||||
-rw-r--r-- | lisp/emacs-lisp/elp.el | 2 |
2 files changed, 5 insertions, 1 deletions
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 <me@nschum.de> (tiny change) + + * emacs-lisp/elp.el (elp-results): Fix off-by-one in header. (Bug#2746) + 2011-03-06 Kevin Ryde <user42@zip.com.au> * 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)))))) |