Add $foo window names back to acme, enabled with -'$'.

See the comment in wind.c about why this isn't the right
solution.
This commit is contained in:
rsc 2005-03-14 20:53:10 +00:00
parent 7551b2ec8b
commit d96da29b37
4 changed files with 209 additions and 7 deletions

View file

@ -96,6 +96,9 @@ void startplumbing(void);
Runestr runestr(Rune*, uint);
Range range(int, int);
int expandenv(Rune**, uint*);
int abbrevenv(Rune**, uint*);
#define runemalloc(a) (Rune*)emalloc((a)*sizeof(Rune))
#define runerealloc(a, b) (Rune*)erealloc((a), (b)*sizeof(Rune))
#define runemove(a, b, c) memmove((a), (b), (c)*sizeof(Rune))