diff --git a/PATCH.md b/PATCH.md deleted file mode 100644 index 4af250f..0000000 --- a/PATCH.md +++ /dev/null @@ -1,2 +0,0 @@ -Seconds.patch adds support for seconds to the timestamp in toxic. -To use seconds.patch run patch < seconds.patch while in the directory testing/toxic diff --git a/seconds.patch b/seconds.patch deleted file mode 100644 index d7ce33a..0000000 --- a/seconds.patch +++ /dev/null @@ -1,61 +0,0 @@ ---- chat.c 2013-08-02 17:41:08.866583333 -0700 -+++ chat2.c 2013-08-02 17:38:13.672991322 -0700 -@@ -49,8 +49,10 @@ - - int inthour = timeinfo->tm_hour; - int intmin = timeinfo->tm_min; -+ int intsec = timeinfo->tm_sec; - char min[2]; - char hour[2]; -+ char sec[2]; - sprintf(hour,"%d",inthour); - if (intmin < 10) { - sprintf(min,"0%d",intmin); -@@ -58,10 +60,17 @@ - sprintf(min,"%d",intmin); - } - -+ if (intsec < 10) { -+ sprintf(sec,"0%d",intsec); -+ } else { -+ sprintf(sec,"%d",intsec); -+ } -+ - - wattron(ctx->history, COLOR_PAIR(2)); - wprintw(ctx->history,"%s",hour); -- wprintw(ctx->history,":%s ",min); -+ wprintw(ctx->history,":%s",min); -+ wprintw(ctx->history,":%s",sec); - wattron(ctx->history, COLOR_PAIR(4)); - wprintw(ctx->history, "%s: ", now); - wattron(ctx->history, COLOR_PAIR(4)); -@@ -111,8 +120,10 @@ - - int inthour = timeinfo->tm_hour; //Pretty bad, but it gets the job done - int intmin = timeinfo->tm_min; -+ int intsec = timeinfo ->tm_sec; - char min[2]; - char hour[2]; -+ char sec[2]; - sprintf(hour,"%d",inthour); - if (intmin < 10) { - sprintf(min,"0%d",intmin); -@@ -120,9 +131,16 @@ - sprintf(min,"%d",intmin); - } - -+ if (intsec < 10) { -+ sprintf(sec,"0%d",intsec); -+ } else { -+ sprintf(sec,"%d",intsec); -+ } -+ - wattron(ctx->history, COLOR_PAIR(2)); - wprintw(ctx->history,"%s",hour); -- wprintw(ctx->history,":%s ",min); -+ wprintw(ctx->history,":%s",min); -+ wprintw(ctx->history,":%s ",sec); - wattron(ctx->history, COLOR_PAIR(1)); - wprintw(ctx->history, "you: ", ctx->line); - wattroff(ctx->history, COLOR_PAIR(1));