diff options
author | Timo Sirainen <cras@irssi.org> | 2000-05-15 14:22:34 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2000-05-15 14:22:34 +0000 |
commit | c3a45ce00e574f6d1d64c57b7dfe1307100acc6e (patch) | |
tree | 498b7f1db25fa6b92100052430fa928a6d366549 | |
parent | 20af1dfcfe45b7b3a00433d8317db364bd775ed6 (diff) | |
download | irssi-c3a45ce00e574f6d1d64c57b7dfe1307100acc6e.zip |
bugfix
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@218 dbcabf3a-b0e7-0310-adc4-f8d773084564
-rw-r--r-- | src/fe-common/core/module-formats.c | 1 | ||||
-rw-r--r-- | src/fe-common/core/printtext.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/src/fe-common/core/module-formats.c b/src/fe-common/core/module-formats.c index a224a809..5ddb5f7e 100644 --- a/src/fe-common/core/module-formats.c +++ b/src/fe-common/core/module-formats.c @@ -33,7 +33,6 @@ FORMAT_REC fecommon_core_formats[] = { { "daychange", "Day changed to $[-2.0]{0}-$[-2.0]1 $2", 3, { 1, 1, 1 } }, { "talking_with", "You are now talking with %_$0%_", 1, { 0 } }, { "refnum_too_low", "Window number must be greater than 1", 0 }, - { "refnum_not_found", "No such window: $0", 1, { 0 } }, /*REMOVE!!!!!!!!*/ { "windowlist_header", "Ref Name Active item Server Level", 0 }, { "windowlist_line", "$[3]0 %|$[20]1 $[15]2 $[15]3 $4", 5, { 1, 0, 0, 0, 0 } }, { "windowlist_footer", "", 0 }, diff --git a/src/fe-common/core/printtext.c b/src/fe-common/core/printtext.c index c499388f..7d45e39d 100644 --- a/src/fe-common/core/printtext.c +++ b/src/fe-common/core/printtext.c @@ -348,7 +348,6 @@ static char *output_format_text_args(TEXT_DEST_REC *dest, FORMAT_REC *format, co /* read all optional arguments to arglist[] list so they can be used in any order.. */ - memset(arglist, 0, sizeof(arglist)); /*REMOVE!!!!!!!*/ read_arglist(args, format, arglist, sizeof(arglist)/sizeof(void*), buffer, sizeof(buffer)); |