emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/emacs-23 r100322: * help-fns.el (describe-v


From: Chong Yidong
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-23 r100322: * help-fns.el (describe-variable): Fix 2010-12-17 change (Bug#7511).
Date: Mon, 20 Dec 2010 19:31:15 +0800
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 100322
author: Leo <address@hidden>
committer: Chong Yidong <address@hidden>
branch nick: emacs-23
timestamp: Mon 2010-12-20 19:31:15 +0800
message:
  * help-fns.el (describe-variable): Fix 2010-12-17 change (Bug#7511).
modified:
  lisp/ChangeLog
  lisp/help-fns.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2010-12-20 01:18:15 +0000
+++ b/lisp/ChangeLog    2010-12-20 11:31:15 +0000
@@ -1,3 +1,7 @@
+2010-12-20  Leo  <address@hidden>
+
+       * help-fns.el (describe-variable): Fix 2010-12-17 change.
+
 2010-12-20  Juri Linkov  <address@hidden>
 
        * isearch.el (isearch-lazy-highlight-error): New variable.

=== modified file 'lisp/help-fns.el'
--- a/lisp/help-fns.el  2010-12-17 11:38:22 +0000
+++ b/lisp/help-fns.el  2010-12-20 11:31:15 +0000
@@ -639,7 +639,7 @@
                (let ((from (point)))
                  (terpri)
                  (pp val)
-                 (if (< (point) (- 68 (line-beginning-position -1)))
+                 (if (< (point) (+ 68 (line-beginning-position 0)))
                      (delete-region from (1+ from))
                    (delete-region (1- from) from)))))
            (terpri)


reply via email to

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