* features/feature_to_c.sh: Use %s to avoid problems with nawk.

This commit is contained in:
Daniel Jacobowitz 2007-02-08 13:56:13 +00:00
parent 3e46147824
commit fe5dedf464
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2007-02-08 Daniel Jacobowitz <dan@codesourcery.com>
* features/feature_to_c.sh: Use %s to avoid problems with nawk.
2007-02-08 Mark Kettenis <kettenis@gnu.org>
* sparcnbsd-tdep.c: Include "gdbtypes.h" instead of "floatformat.h".

View File

@ -51,7 +51,7 @@ for input; do
} else if (c == "\\") {
printf "'\''\\\\'\'', "
} else if (_ord_[c] >= 32 && _ord_[c] < 127) {
printf "'\''" c "'\'', "
printf "'\''%s'\'', ", c
} else {
printf "'\''\\%03o'\'', ", _ord_[c]
}