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/files/patch-ad | |
parent | Enable --with-ansi-colours. (diff) |
Suport the American spelling of colour.
Notes
Notes:
svn path=/head/; revision=20913
Diffstat (limited to 'irc/tirc/files/patch-ad')
-rw-r--r-- | irc/tirc/files/patch-ad | 19 |
1 files changed, 19 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)) |