summaryrefslogtreecommitdiff
path: root/lisp/help-fns.el
diff options
context:
space:
mode:
authorLeo Liu <sdl.web@gmail.com>2010-12-20 19:31:15 +0800
committerChong Yidong <cyd@stupidchicken.com>2010-12-20 19:31:15 +0800
commite1a235757a06328c5262c19e37e89428b32571ae (patch)
tree7a881d8def41676ff161fa6d93e87dd79c450e53 /lisp/help-fns.el
parent957e5dd1e98253145a6d8bf5dd392c74ac4b8409 (diff)
downloademacs-e1a235757a06328c5262c19e37e89428b32571ae.tar.gz
emacs-e1a235757a06328c5262c19e37e89428b32571ae.tar.bz2
emacs-e1a235757a06328c5262c19e37e89428b32571ae.zip
* help-fns.el (describe-variable): Fix 2010-12-17 change (Bug#7511).
Diffstat (limited to 'lisp/help-fns.el')
-rw-r--r--lisp/help-fns.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/help-fns.el b/lisp/help-fns.el
index 5743e1f6019..5050244237d 100644
--- a/lisp/help-fns.el
+++ b/lisp/help-fns.el
@@ -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)