=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mg/match.c,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- src/usr.bin/mg/match.c 2008/06/13 19:01:53 1.14 +++ src/usr.bin/mg/match.c 2008/06/14 08:46:30 1.15 @@ -1,4 +1,4 @@ -/* $OpenBSD: match.c,v 1.14 2008/06/13 19:01:53 kjell Exp $ */ +/* $OpenBSD: match.c,v 1.15 2008/06/14 08:46:30 kjell Exp $ */ /* This file is in the public domain. */ @@ -8,9 +8,6 @@ * The hacks in this file implement automatic matching * of (), [], {}, and * other characters. It would be better to have a full-blown syntax table, * but there's enough overhead in the editor as it is. - * - * Since I often edit Scribe code, I've made it possible to blink arbitrary - * characters -- just bind delimiter characters to "blink-matching-paren-hack" */ #include "def.h" @@ -23,7 +20,6 @@ * Balance table. When balance() encounters a character that is to be * matched, it first searches this table for a balancing left-side character. * If the character is not in the table, the character is balanced by itself. - * This is to allow delimiters in Scribe documents to be matched. */ static struct balance { char left, right; @@ -37,7 +33,7 @@ /* * Hack to show matching paren. Self-insert character, then show matching - * character, if any. Bound to "blink-matching-paren-command". + * character, if any. Bound to "blink-and-insert". */ int showmatch(int f, int n)