diff options
author | Simon Marshall <simon@gnu.org> | 1996-02-28 12:17:10 +0000 |
---|---|---|
committer | Simon Marshall <simon@gnu.org> | 1996-02-28 12:17:10 +0000 |
commit | 625d837ef49873605963a33953e882c68030d7d3 (patch) | |
tree | 6552506d53415c6e1a0cd1a0090f28446113ab26 /lisp/paren.el | |
parent | 343204bdd17595672954dc34d3ec4a1a155193e9 (diff) | |
download | emacs-625d837ef49873605963a33953e882c68030d7d3.tar.gz |
Don't toggle on window-setup-hook.
Diffstat (limited to 'lisp/paren.el')
-rw-r--r-- | lisp/paren.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/paren.el b/lisp/paren.el index cad0116fa71..810fa691980 100644 --- a/lisp/paren.el +++ b/lisp/paren.el @@ -160,7 +160,7 @@ after `show-paren-delay' seconds of Emacs idle time." (delete-overlay show-paren-overlay-1))))))) ;;; For back compatibility we turn ourselves on if we're dumped or loaded. -(add-hook 'window-setup-hook 'show-paren-mode) +(add-hook 'window-setup-hook '(lambda () (show-paren-mode t))) (show-paren-mode t) (provide 'paren) |