emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r103548: * lisp/emacs-lisp/elp.el (el


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r103548: * lisp/emacs-lisp/elp.el (elp-results): Fix off-by-one in header. (Bug#2746)
Date: Sat, 05 Mar 2011 18:38:48 -0800
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 103548
author: Nikolaj Schumacher <address@hidden>
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Sat 2011-03-05 18:38:48 -0800
message:
  * lisp/emacs-lisp/elp.el (elp-results): Fix off-by-one in header.  (Bug#2746)
modified:
  lisp/ChangeLog
  lisp/emacs-lisp/elp.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2011-03-06 02:30:44 +0000
+++ b/lisp/ChangeLog    2011-03-06 02:38:48 +0000
@@ -1,3 +1,7 @@
+2011-03-06  Nikolaj Schumacher  <address@hidden>  (tiny change)
+
+       * emacs-lisp/elp.el (elp-results): Fix off-by-one in header.  (Bug#2746)
+
 2011-03-06  Kevin Ryde  <address@hidden>
 
        * textmodes/sgml-mode.el (sgml-fill-nobreak): Give it a doc.  (Bug#5326)

=== modified file 'lisp/emacs-lisp/elp.el'
--- a/lisp/emacs-lisp/elp.el    2011-01-26 08:36:39 +0000
+++ b/lisp/emacs-lisp/elp.el    2011-03-06 02:38:48 +0000
@@ -630,7 +630,7 @@
                                    '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))))))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]