diff options
| author | Juanma Barranquero | 2006-11-12 05:28:37 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2006-11-12 05:28:37 +0000 |
| commit | 9fc917591dbaf095269ddc534dc87184579f182f (patch) | |
| tree | 8b70ef3a695797b978532994388336e1faf026f6 | |
| parent | a2c2f1964fdc2d16a8b7dff866577c36a8fadb6c (diff) | |
| download | emacs-9fc917591dbaf095269ddc534dc87184579f182f.tar.gz emacs-9fc917591dbaf095269ddc534dc87184579f182f.zip | |
(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.el | 1 |
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'.") | |||
| 253 | (kill-all-local-variables) | 253 | (kill-all-local-variables) |
| 254 | (setq major-mode 'reb-mode | 254 | (setq major-mode 'reb-mode |
| 255 | mode-name "RE Builder") | 255 | mode-name "RE Builder") |
| 256 | (set (make-local-variable 'blink-matching-paren) nil) | ||
| 256 | (use-local-map reb-mode-map) | 257 | (use-local-map reb-mode-map) |
| 257 | (reb-mode-common) | 258 | (reb-mode-common) |
| 258 | (run-mode-hooks 'reb-mode-hook)) | 259 | (run-mode-hooks 'reb-mode-hook)) |