diff options
author | Valentin Batz <senneth@irssi.org> | 2004-09-15 12:11:43 +0000 |
---|---|---|
committer | senneth <senneth@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2004-09-15 12:11:43 +0000 |
commit | 8ea717b67609a7ddaa6481e49fc638a4b40e84e8 (patch) | |
tree | 10e28c5a7f6ade72b86ad7fd8c680320ecafa36b /src/fe-common/core/module-formats.c | |
parent | 55bcc420a713d5bfac3813f7bc002de0b0c13538 (diff) | |
download | irssi-8ea717b67609a7ddaa6481e49fc638a4b40e84e8.zip |
Fixed memleak in recode.c, fixed typo in special_vars.txt, fixed bug 105, fixed bug 106
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3295 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/fe-common/core/module-formats.c')
-rw-r--r-- | src/fe-common/core/module-formats.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fe-common/core/module-formats.c b/src/fe-common/core/module-formats.c index 2bd4c23d..6d13ed08 100644 --- a/src/fe-common/core/module-formats.c +++ b/src/fe-common/core/module-formats.c @@ -218,6 +218,7 @@ FORMAT_REC fecommon_core_formats[] = { { "invalid_time", "Invalid timestamp", 0 }, { "invalid_level", "Invalid message level", 0 }, { "invalid_size", "Invalid size", 0 }, + { "invalid_charset", "Invalid charset: $0", 1, { 0 } }, /* ---- */ { NULL, "Themes", 0 }, @@ -253,7 +254,6 @@ FORMAT_REC fecommon_core_formats[] = { { "conversion_added", "Added {hilight $0}/{hilight $1} to conversion database", 2, { FORMAT_STRING, FORMAT_STRING } }, { "conversion_removed", "Removed {hilight $0} from conversion database", 1, { FORMAT_STRING } }, { "conversion_not_found", "{hilight $0} not found in conversion database", 1, { FORMAT_STRING } }, - { "conversion_not_supported", "Conversion to the character set {hilight $0} is not supported",1, { FORMAT_STRING } }, { "recode_header", "%#Target Character set", 0 }, { "recode_line", "%#%|$[!30]0 $1", 2, { FORMAT_STRING, FORMAT_STRING } }, @@ -261,7 +261,7 @@ FORMAT_REC fecommon_core_formats[] = { { NULL, "Misc", 0 }, { "unknown_chat_protocol", "Unknown chat protocol: $0", 1, { 0 } }, - { "unknown_chatnet", "Unknown chat network: $0 (create it with /IRCNET ADD)", 1, { 0 } }, + { "unknown_chatnet", "Unknown chat network: $0 (create it with /NETWORK ADD)", 1, { 0 } }, { "not_toggle", "Value must be either ON, OFF or TOGGLE", 0 }, { "perl_error", "Perl error: $0", 1, { 0 } }, { "bind_header", "%#Key Action", 0 }, |