summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2006-11-12 05:28:37 +0000
committerJuanma Barranquero <lekktu@gmail.com>2006-11-12 05:28:37 +0000
commit9fc917591dbaf095269ddc534dc87184579f182f (patch)
tree8b70ef3a695797b978532994388336e1faf026f6
parenta2c2f1964fdc2d16a8b7dff866577c36a8fadb6c (diff)
downloademacs-9fc917591dbaf095269ddc534dc87184579f182f.tar.gz
(reb-mode): Set `blink-matching-paren' to nil in the *RE-Builder*
buffer (it causes spurious error messages).
-rw-r--r--lisp/emacs-lisp/re-builder.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/re-builder.el b/lisp/emacs-lisp/re-builder.el
index 5dc67e4ac21..cae4be8addd 100644
--- a/lisp/emacs-lisp/re-builder.el
+++ b/lisp/emacs-lisp/re-builder.el
@@ -253,6 +253,7 @@ Except for Lisp syntax this is the same as `reb-regexp'.")
(kill-all-local-variables)
(setq major-mode 'reb-mode
mode-name "RE Builder")
+ (set (make-local-variable 'blink-matching-paren) nil)
(use-local-map reb-mode-map)
(reb-mode-common)
(run-mode-hooks 'reb-mode-hook))