* strings.c (isgraphic): Interpret <TAB> as a printable character,

analogous to <SPACE>.

Approved by:	Nick Clifton <nickc@cygnus.com>
		<200005222243.PAA14590@elmo.cygnus.com>
This commit is contained in:
David O'Brien 2000-06-02 18:55:04 +00:00
parent 5fec0fc5d1
commit 6b3bf56090
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2000-06-02 David O'Brien <obrien@FreeBSD.org>
* strings.c (isgraphic): Interpret <TAB> as a printable character,
analogous to <SPACE>.
2000-05-30 Alan Modra <alan@linuxcare.com.au>
* objdump.c (display_target_list): Use bfd_close_all_done, not

View File

@ -77,9 +77,9 @@
#endif
#ifdef isascii
#define isgraphic(c) (isascii (c) && isprint (c))
#define isgraphic(c) (isascii (c) && (isprint (c) || (c) == '\t'))
#else
#define isgraphic(c) (isprint (c))
#define isgraphic(c) (isprint (c) || (c) == '\t')
#endif
#ifndef errno