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 | 096d66302819ae230aa8c50016567577d1415a96 (patch) | |
tree | d1096eb9882b90774384e5a34fa8de8f4fe215f7 /lisp/paren.el | |
parent | 0b901952a06f4fd90018d4ace8e51761206da992 (diff) | |
download | emacs-096d66302819ae230aa8c50016567577d1415a96.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) |