1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-07-25 18:19:00 +02:00

(get_funky_string): Use '\a', rather than 7, for portability to EBCDIC hosts.

This commit is contained in:
Jim Meyering
2005-03-22 14:51:34 +00:00
parent 4986d56f23
commit e49f13c2cf
+1 -1
View File
@@ -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';