diff options
author | Leo Liu <sdl.web@gmail.com> | 2013-03-23 09:38:56 +0800 |
---|---|---|
committer | Leo Liu <sdl.web@gmail.com> | 2013-03-23 09:38:56 +0800 |
commit | a320a2dbc9840dc1106f14b5f43b0ca0edf2a597 (patch) | |
tree | e5709b1d7f47d3627113783a368316eca9eac662 /lisp/nxml/rng-nxml.el | |
parent | e38e6780432ec53b3297354b04eb7ad8136dd358 (diff) | |
download | emacs-a320a2dbc9840dc1106f14b5f43b0ca0edf2a597.tar.gz |
* lisp/nxml/rng-nxml.el (rng-set-state-after): Do not let-bind
timer-idle-list.
* lisp/nxml/rng-valid.el (rng-validate-while-idle-continue-p)
(rng-next-error-1, rng-previous-error-1): Do not let-bind
timer-idle-list.
Fixes: debbugs:13999
Diffstat (limited to 'lisp/nxml/rng-nxml.el')
-rw-r--r-- | lisp/nxml/rng-nxml.el | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lisp/nxml/rng-nxml.el b/lisp/nxml/rng-nxml.el index cfb8e33cccb..bc070136adb 100644 --- a/lisp/nxml/rng-nxml.el +++ b/lisp/nxml/rng-nxml.el @@ -380,9 +380,7 @@ set `xmltok-dtd'. Returns the position of the end of the token." (< rng-validate-up-to-date-end pos)) ;; Display percentage validated. (force-mode-line-update) - ;; Force redisplay but don't allow idle timers to run. - (let ((timer-idle-list nil)) - (sit-for 0))) + (sit-for 0)) (message "Parsing...done")) (save-excursion (save-restriction |