mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-24 02:24:46 +08:00
* 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:
parent
5fec0fc5d1
commit
6b3bf56090
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user