aboutsummaryrefslogtreecommitdiffstats
path: root/profile.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2010-12-05 20:37:25 +0200
committerArnold D. Robbins <arnold@skeeve.com>2010-12-05 20:37:25 +0200
commit6b9ed56f74baa4af529e100dff19afcd23ed7cd8 (patch)
tree9e66902f2792d6e2216a8020805a14b6cccbc028 /profile.c
parent16458663c3bdf640e3352653ea94a89fb2949ad4 (diff)
downloadegawk-6b9ed56f74baa4af529e100dff19afcd23ed7cd8.tar.gz
egawk-6b9ed56f74baa4af529e100dff19afcd23ed7cd8.tar.bz2
egawk-6b9ed56f74baa4af529e100dff19afcd23ed7cd8.zip
More doc and code fixes. See ChangeLogs.
Diffstat (limited to 'profile.c')
-rw-r--r--profile.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/profile.c b/profile.c
index f307786d..291247c9 100644
--- a/profile.c
+++ b/profile.c
@@ -1188,11 +1188,7 @@ pp_string(const char *in_str, size_t len, int delim)
chksize(8); /* total available space is 10 */
- /* print 'em as they came if for whiny users */
- if (whiny_users)
- sprintf(obufout, "%c", *str & 0xff);
- else
- sprintf(obufout, "\\%03o", *str & 0xff);
+ sprintf(obufout, "\\%03o", *str & 0xff);
len = strlen(obufout);
ofre += (10 - len); /* adjust free space count */
obufout += len;