aboutsummaryrefslogtreecommitdiffstats
path: root/utils.c
diff options
context:
space:
mode:
authorSteve Slaven <bpk@hoopajoo.net>2005-03-21 18:49:34 (GMT)
committerSteve Slaven <bpk@hoopajoo.net>2005-03-21 18:49:34 (GMT)
commitabe994ae16b892106e0b36d7be5bfd7e1100075c (patch)
treebe899fbb5d23e280ca8ce17b1bf2da4d9afe0f28 /utils.c
parentcb2555e19237930a25989a7cd2bee4589f1d515d (diff)
downloadpowwow-abe994ae16b892106e0b36d7be5bfd7e1100075c.zip
powwow-abe994ae16b892106e0b36d7be5bfd7e1100075c.tar.gz
powwow-abe994ae16b892106e0b36d7be5bfd7e1100075c.tar.bz2
Internally renamed some option flags to match their #opt counterparts:
echo_int => opt_info echo_key => opt_keyecho echo_ext => opt_echo As per the 1.2.6-dain patch
Diffstat (limited to 'utils.c')
-rw-r--r--utils.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/utils.c b/utils.c
index 52d7c10..302d1d9 100644
--- a/utils.c
+++ b/utils.c
@@ -893,7 +893,7 @@ int read_settings __P0 (void)
left = ptrmax(ptrbuf);
len = 0;
- echo_int = a_nice = 0;
+ opt_info = a_nice = 0;
for (n = 0; n < MAX_HASH; n++) {
while (aliases[n])
@@ -1220,9 +1220,9 @@ int save_settings __P0 (void)
opt_words ? '+' : '-',
opt_compact ? '+' : '-',
opt_debug ? '+' : '-',
- echo_ext ? '+' : '-',
- echo_int ? '+' : '-',
- echo_key ? '+' : '-',
+ opt_echo ? '+' : '-',
+ opt_info ? '+' : '-',
+ opt_keyecho ? '+' : '-',
opt_speedwalk ? '+' : '-',
opt_wrap ? '+' : '-',
opt_autoprint ? '+' : '-',