mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-30 10:52:50 +00:00
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:
parent
527e2883c3
commit
cf17350fb8
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=41786
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user