1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-04 11:40:22 +00:00

* help-fns.el (describe-variable): Fix 2010-12-17 change (Bug#7511).

This commit is contained in:
Leo Liu 2010-12-20 19:31:15 +08:00 committed by Chong Yidong
parent 957e5dd1e9
commit e1a235757a
2 changed files with 5 additions and 1 deletions

View 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.

View 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)