]> git.eshelyaron.com Git - emacs.git/commitdiff
* help-fns.el (describe-variable): Fix 2010-12-17 change (Bug#7511).
authorLeo Liu <sdl.web@gmail.com>
Mon, 20 Dec 2010 11:31:15 +0000 (19:31 +0800)
committerChong Yidong <cyd@stupidchicken.com>
Mon, 20 Dec 2010 11:31:15 +0000 (19:31 +0800)
lisp/ChangeLog
lisp/help-fns.el

index 25cc72d0b7f3874c4c7e0c3593560f6b3e8858b4..dcdfa3ebc8826dddf905f4eecb23243f9aa579aa 100644 (file)
@@ -1,3 +1,7 @@
+2010-12-20  Leo  <sdl.web@gmail.com>
+
+       * help-fns.el (describe-variable): Fix 2010-12-17 change.
+
 2010-12-20  Juri Linkov  <juri@jurta.org>
 
        * isearch.el (isearch-lazy-highlight-error): New variable.
index 5743e1f601970e3e038b1bedcd189a2bddf6fbc3..5050244237d4d72d8e766f91125830b4345a1bbb 100644 (file)
@@ -639,7 +639,7 @@ it is displayed along with the global value."
                (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)