1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-30 08:09:04 +00:00

(window-setup-hook): Add hook function.

This commit is contained in:
Richard M. Stallman 1993-08-03 17:45:17 +00:00
parent 2829f7e326
commit 520bca5791

View File

@ -125,7 +125,14 @@
(progn
(setq blink-paren-function nil)
(add-hook 'post-command-hook '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-paren-function nil)
(add-hook 'post-command-hook
'show-paren-command-hook))))))
(provide 'paren)
;;; paren.el ends here