diff options
author | Leo Liu <sdl.web@gmail.com> | 2010-12-20 19:31:15 +0800 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2010-12-20 19:31:15 +0800 |
commit | e1a235757a06328c5262c19e37e89428b32571ae (patch) | |
tree | 7a881d8def41676ff161fa6d93e87dd79c450e53 /lisp/help-fns.el | |
parent | 957e5dd1e98253145a6d8bf5dd392c74ac4b8409 (diff) | |
download | emacs-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.el | 2 |
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) |