diff options
author | Karl Heuer <kwzh@gnu.org> | 1996-02-21 21:21:55 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1996-02-21 21:21:55 +0000 |
commit | 44bea10aefe0ac434e07aced765d7573db1cce08 (patch) | |
tree | 16e10ebcea16bf3c3f321b97f0d82e48c65ff488 /lisp/paren.el | |
parent | db3f571abd102a9e9f08456be78dfa041f1cb9b2 (diff) | |
download | emacs-44bea10aefe0ac434e07aced765d7573db1cce08.tar.gz |
Use run-with-idle-timer, not post-command-idle-hook.
Diffstat (limited to 'lisp/paren.el')
-rw-r--r-- | lisp/paren.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/paren.el b/lisp/paren.el index fffbbc8a938..e556b6c646c 100644 --- a/lisp/paren.el +++ b/lisp/paren.el @@ -133,15 +133,14 @@ (if window-system (progn (setq blink-matching-paren-on-screen nil) - (add-hook 'post-command-idle-hook 'show-paren-command-hook))) + (run-with-idle-timer .1 t 'show-paren-command-hook))) ;;; This is in case paren.el is preloaded. (add-hook 'window-setup-hook (function (lambda () (if window-system (progn (setq blink-matching-paren-on-screen nil) - (add-hook 'post-command-idle-hook - 'show-paren-command-hook)))))) + (run-with-idle-timer .1 t 'show-paren-command-hook)))))) (provide 'paren) ;;; paren.el ends here |