From: Heikki Junes Date: Mon, 21 Jul 2003 20:32:31 +0000 (+0000) Subject: turn on blink-matching-paren. X-Git-Tag: release/1.7.30~135 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=ec74d96b7f0607e61f8d45a6de0c217afaf535bb;p=lilypond.git turn on blink-matching-paren. --- diff --git a/ChangeLog b/ChangeLog index 1d2a0915f7..f8a5d25033 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,9 @@ -2003-07-20 Heikki Junes +2003-07-21 Heikki Junes * lilypond-font-lock.el: do not try to match two-char slurs \) \]. + * lilypond-mode.el: turn on blink-matching-paren. + 2003-07-21 Jan Nieuwenhuizen * scm/output-sodipodi.scm (svg-header): Fix typo. diff --git a/lilypond-mode.el b/lilypond-mode.el index 19c5ad9b13..ca5b3beed6 100644 --- a/lilypond-mode.el +++ b/lilypond-mode.el @@ -1136,7 +1136,13 @@ LilyPond-xdvi-command\t\tcommand to display dvi files -- bit superfluous" (progn (make-local-variable 'paren-mode) (paren-set-mode 'paren) - )) + (make-local-variable 'blink-matching-paren) + (setq blink-matching-paren t) + ) + (progn + (make-local-variable 'blink-matching-paren-on-screen) + (setq blink-matching-paren-on-screen t) + )) ;; run the mode hook. LilyPond-mode-hook use is deprecated (run-hooks 'LilyPond-mode-hook))