(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