diff options
author | Jim Meyering <jim@meyering.net> | 2005-03-22 14:51:34 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-03-22 14:51:34 +0000 |
commit | e49f13c2cf694ef0bda70d6f7f5e590bc4ec64ce (patch) | |
tree | 4cd5244d412dee8723fbad61055f11bc418615cd /src | |
parent | 4986d56f236744a88a5a7d0ce854a53bf8cfe0d2 (diff) | |
download | coreutils-e49f13c2cf694ef0bda70d6f7f5e590bc4ec64ce.tar.xz |
(get_funky_string): Use '\a', rather than 7, for portability to EBCDIC hosts.
Diffstat (limited to 'src')
-rw-r--r-- | src/ls.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1950,7 +1950,7 @@ get_funky_string (char **dest, const char **src, bool equals_end, num = 0; break; case 'a': /* Bell */ - num = 7; /* Not all C compilers know what \a means */ + num = '\a'; break; case 'b': /* Backspace */ num = '\b'; |