make 'typeset -p' (and soon ${foo@$}) output strings safe for re-entry
into AT&T ksh93 (that we still must use octal, in this day and age, because dgk’s \x is broken… tss…) not round-trip, as ksh93 doesn’t encode hi-bit7 or \v, but safe
This commit is contained in:
parent
b90a11f6c5
commit
6724ba505d
4
misc.c
4
misc.c
@ -30,7 +30,7 @@
|
|||||||
#include <grp.h>
|
#include <grp.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
__RCSID("$MirOS: src/bin/mksh/misc.c,v 1.195 2012/07/01 15:54:56 tg Exp $");
|
__RCSID("$MirOS: src/bin/mksh/misc.c,v 1.196 2012/07/20 21:18:45 tg Exp $");
|
||||||
|
|
||||||
#define KSH_CHVT_FLAG
|
#define KSH_CHVT_FLAG
|
||||||
#ifdef MKSH_SMALL
|
#ifdef MKSH_SMALL
|
||||||
@ -1139,7 +1139,7 @@ print_value_quoted(struct shf *shf, const char *s)
|
|||||||
if (c < 32 || c > 0x7E) {
|
if (c < 32 || c > 0x7E) {
|
||||||
/* FALLTHROUGH */
|
/* FALLTHROUGH */
|
||||||
case '\'':
|
case '\'':
|
||||||
shf_fprintf(shf, "\\x%02X", c);
|
shf_fprintf(shf, "\\%03o", c);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user