sbase

suckless unix tools
git clone git://git.2f30.org/sbase
Log | Files | Refs | README | LICENSE

commit ea986ea50489969a0c4201a0c4e56efeef214914
parent 627119df9f4548f25d7d9fd0f62f78997d5667f2
Author: FRIGN <dev@frign.de>
Date:   Fri,  2 Oct 2015 15:43:17 +0200

Match \v as escaped character

Thanks Greg for noticing this!

Diffstat:
Mod.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/od.c b/od.c @@ -56,7 +56,7 @@ printchar(FILE *f, unsigned char c) } break; case 'c': - if (strchr("\a\b\t\n\b\f\r\0", c)) { + if (strchr("\a\b\t\n\v\f\r\0", c)) { fprintf(f, "%3s ", escdict[c]); } else { fprintf(f, "%3c ", c);