diff options
author | obrien <obrien@FreeBSD.org> | 1999-08-24 09:53:11 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1999-08-24 09:53:11 +0800 |
commit | b08d523383dc53c19185a2e28e442ba6dcfc9eae (patch) | |
tree | 5235ddb909aecbd95776e8930d275c35e0e757f4 | |
parent | 6b01a67ca6c59a4b20d058b368e1c9bbaed9196d (diff) | |
download | freebsd-ports-gnome-b08d523383dc53c19185a2e28e442ba6dcfc9eae.tar.gz freebsd-ports-gnome-b08d523383dc53c19185a2e28e442ba6dcfc9eae.tar.zst freebsd-ports-gnome-b08d523383dc53c19185a2e28e442ba6dcfc9eae.zip |
Suport the American spelling of colour.
-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 */ |