Restore traditional behaviour by allowing tabs in strings. In deference

to the new age of internationalisation, I used isblank() instead of a
literal '\t'.
This commit is contained in:
Stephen McKay 1998-12-14 13:27:48 +00:00
parent 527e2883c3
commit cf17350fb8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=41786

View file

@ -59,9 +59,9 @@
#include "libiberty.h"
#ifdef isascii
#define isgraphic(c) (isascii (c) && isprint (c))
#define isgraphic(c) (isascii (c) && (isprint (c) || isblank (c)))
#else
#define isgraphic(c) (isprint (c))
#define isgraphic(c) (isprint (c) || isblank (c))
#endif
#ifndef errno