diff options
author | Kjell Wooding <kjell@cvs.openbsd.org> | 2008-06-13 19:10:18 +0000 |
---|---|---|
committer | Kjell Wooding <kjell@cvs.openbsd.org> | 2008-06-13 19:10:18 +0000 |
commit | caa47d9de6f7aa5b73ac1a14b51a10ffa6de0b48 (patch) | |
tree | a9e4ac0dac61b23c8554082d9368533d04ecbd4c /usr.bin/mg/def.h | |
parent | 611deb6fc7ad982974b2771342e24b2d0de47e74 (diff) |
phessler noted that c-mode ignored blinking braces.
Add "c-handle-special-brace" which does a blink and indent, rather
than just a selfinsert and indent
Diffstat (limited to 'usr.bin/mg/def.h')
-rw-r--r-- | usr.bin/mg/def.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/mg/def.h b/usr.bin/mg/def.h index da4e15853a1..bd3b8ce677f 100644 --- a/usr.bin/mg/def.h +++ b/usr.bin/mg/def.h @@ -1,4 +1,4 @@ -/* $OpenBSD: def.h,v 1.103 2008/06/12 01:58:44 kjell Exp $ */ +/* $OpenBSD: def.h,v 1.104 2008/06/13 19:10:17 kjell Exp $ */ /* This file is in the public domain. */ @@ -622,6 +622,7 @@ int add_autoexec(const char *, const char *); void mail_init(void); /* cmode.c X */ int cmode(int, int); +int cc_brace(int, int); int cc_char(int, int); int cc_tab(int, int); int cc_indent(int, int); |