diff options
| -rw-r--r-- | lisp/paren.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/paren.el b/lisp/paren.el index befb4ca4f77..6828d3dc1f7 100644 --- a/lisp/paren.el +++ b/lisp/paren.el | |||
| @@ -130,14 +130,14 @@ | |||
| 130 | 130 | ||
| 131 | (if window-system | 131 | (if window-system |
| 132 | (progn | 132 | (progn |
| 133 | (setq blink-paren-function nil) | 133 | (setq blink-matching-paren-on-screen nil) |
| 134 | (add-hook 'post-command-idle-hook 'show-paren-command-hook))) | 134 | (add-hook 'post-command-idle-hook 'show-paren-command-hook))) |
| 135 | ;;; This is in case paren.el is preloaded. | 135 | ;;; This is in case paren.el is preloaded. |
| 136 | (add-hook 'window-setup-hook | 136 | (add-hook 'window-setup-hook |
| 137 | (function (lambda () | 137 | (function (lambda () |
| 138 | (if window-system | 138 | (if window-system |
| 139 | (progn | 139 | (progn |
| 140 | (setq blink-paren-function nil) | 140 | (setq blink-matching-paren-on-screen nil) |
| 141 | (add-hook 'post-command-idle-hook | 141 | (add-hook 'post-command-idle-hook |
| 142 | 'show-paren-command-hook)))))) | 142 | 'show-paren-command-hook)))))) |
| 143 | (provide 'paren) | 143 | (provide 'paren) |