diff options
| author | Nikolaj Schumacher | 2011-03-05 18:38:48 -0800 |
|---|---|---|
| committer | Glenn Morris | 2011-03-05 18:38:48 -0800 |
| commit | 509742cc29a0878b7b1decbc5afc94e29813d630 (patch) | |
| tree | ad52105d0834f567e099b1cfa063e26efcc801d1 | |
| parent | 14369ab313e41c1360542b37b5b53a52ab78a2c3 (diff) | |
| download | emacs-509742cc29a0878b7b1decbc5afc94e29813d630.tar.gz emacs-509742cc29a0878b7b1decbc5afc94e29813d630.zip | |
* 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 @@ | |||
| 1 | 2011-03-06 Nikolaj Schumacher <me@nschum.de> (tiny change) | ||
| 2 | |||
| 3 | * emacs-lisp/elp.el (elp-results): Fix off-by-one in header. (Bug#2746) | ||
| 4 | |||
| 1 | 2011-03-06 Kevin Ryde <user42@zip.com.au> | 5 | 2011-03-06 Kevin Ryde <user42@zip.com.au> |
| 2 | 6 | ||
| 3 | * textmodes/sgml-mode.el (sgml-fill-nobreak): Give it a doc. (Bug#5326) | 7 | * 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." | |||
| 630 | 'display (list 'space :align-to column) | 630 | 'display (list 'space :align-to column) |
| 631 | 'face 'fixed-pitch) | 631 | 'face 'fixed-pitch) |
| 632 | title) | 632 | title) |
| 633 | (setq column (+ column 1 | 633 | (setq column (+ column 2 |
| 634 | (if (= column 0) | 634 | (if (= column 0) |
| 635 | elp-field-len | 635 | elp-field-len |
| 636 | (length title)))))) | 636 | (length title)))))) |