diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 1999-08-24 01:53:11 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 1999-08-24 01:53:11 +0000 |
commit | e6ac780082020f4e69c556a054313e7084156191 (patch) | |
tree | d90b94dd68b7a4b09d515921444d231097e7b76b /irc/tirc | |
parent | 941634fc9e63cd133154ea85a711a45f2fc4f9c4 (diff) | |
download | ports-e6ac780082020f4e69c556a054313e7084156191.tar.gz ports-e6ac780082020f4e69c556a054313e7084156191.zip |
Notes
Diffstat (limited to 'irc/tirc')
-rw-r--r-- | irc/tirc/files/patch-ad | 19 | ||||
-rw-r--r-- | irc/tirc/files/patch-ae | 14 |
2 files changed, 33 insertions, 0 deletions
diff --git a/irc/tirc/files/patch-ad b/irc/tirc/files/patch-ad new file mode 100644 index 000000000000..dcd3cbd0c444 --- /dev/null +++ b/irc/tirc/files/patch-ad @@ -0,0 +1,19 @@ +--- cmd.c.orig Sat Feb 20 17:52:12 1999 ++++ cmd.c Mon Aug 23 18:49:49 1999 +@@ -213,6 +213,7 @@ + { "URL", 0, urlcmd, 0, urlhelp }, + { "UPTIME", 0, uptimecmd, 0, uptimehelp }, + { "COLOUR", 0, colourcmd, 0, colourhelp }, ++{ "COLOR", 0, colourcmd, 0, colourhelp }, + { "SOURCE", 0, sourcecmd, 0, sourcehelp }, + { "NCOL", 0, ncolcmd, 0, ncolhelp }, + #ifdef WITH_DLMOD +@@ -1112,7 +1113,7 @@ + } + } + +- if (!strcmp("COLOUR", option) || all) { ++ if (!strcmp("COLOUR", option) || !strcmp("COLOR", option) || all) { + if (args != NULL) { + irc_strupr(args); + if (!strcmp("ON", args)) diff --git a/irc/tirc/files/patch-ae b/irc/tirc/files/patch-ae new file mode 100644 index 000000000000..e8fee19e77a2 --- /dev/null +++ b/irc/tirc/files/patch-ae @@ -0,0 +1,14 @@ +--- odlg.c.orig Mon Aug 23 18:43:40 1999 ++++ odlg.c Mon Aug 23 18:47:49 1999 +@@ -49,9 +49,11 @@ + { "OOD", "Enable the Op-On-Demand facility", CONF_OOD, 0 }, + { "ATTRIBS", "ircII-style inline text attributes", CONF_ATTRIBS, 0 }, + { "COLOUR", "ANSI char cell colourization", CONF_COLOUR, 0 }, ++ { "COLOR", "ANSI char cell colourization", CONF_COLOUR, 0 }, + { "STIPPLE", "Dash-on-off line in status lines", CONF_STIPPLE, 0 }, + { "HIDEMCOL", "Filter out mIRC colour crap", CONF_HIDEMCOL, 0 }, + { "NCOLOUR", "Nickname colourization", CONF_NCOLOUR, 0 }, ++ { "NCOLOR", "Nickname colourization", CONF_NCOLOUR, 0 }, + { "NUMERICS", "Display IRC protocol numerics", CONF_NUMERICS, 0 }, + { "TELEVIDEO", "Disable attribs on my old tvi9050", CONF_TELEVIDEO, 0 }, + { "", "", 0, 0 } /* delimiter */ |