+2003-06-07 Heikki Junes <hjunes@cc.hut.fi>
+
+ * lilypond-indent.el: match only one type of slurs in
+ LilyPond-show-paren-function.
+
2003-06-05 Jan Nieuwenhuizen <janneke@gnu.org>
* debian/GNUmakefile (EXTRA_DIST_FILES):
(setq paren-regexp (concat (car paren-regexp) "\\|" (cdr paren-regexp))))
(setq paren-regexp (concat (mapconcat 'car (mapcar 'cdr regexp-alist) "\\|") "\\|"
(mapconcat 'cdr (mapcar 'cdr regexp-alist) "\\|")))))
+ (if (and (eq dir 1)
+ (memq (char-after oldpos) '(?[ ?{)))
+ (forward-char 1))
(while (and (if (/= dir 1)
(> level 0)
(< level 0))
(narrow-to-region
(max (point-min) (- (point) blink-matching-paren-distance))
(min (point-max) (+ (point) blink-matching-paren-distance))))
- (if (memq bracket-type '(?> ?} ?< ?{))
+ (if (and (equal this-command 'LilyPond-electric-close-paren)
+ (memq bracket-type '(?> ?} ?< ?{)))
;; < { need to be mutually balanced and nested, so search backwards for both of these bracket types
(LilyPond-scan-containing-sexp nil nil dir)
;; whereas ( ) slurs within music don't, so only need to search for ( )