From d5cbe794e990d6b5e9d68551496adf22218cfc63 Mon Sep 17 00:00:00 2001
From: Lukas Fleischer <calcurse@cryptocrack.de>
Date: Sun, 3 Feb 2013 09:54:12 +0100
Subject: Do not prompt for a todo after adding an appointment

We effectively turned the addition of an appointment into a fall through
case by deleting the break statement during refactoring. Revert this
deletion to skip the second prompt.

Regression introduced in f2dca7de3e8b164a4b3af3d58dde2f6776bfbee6.

Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
---
 src/calcurse.c | 1 +
 1 file changed, 1 insertion(+)

(limited to 'src')

diff --git a/src/calcurse.c b/src/calcurse.c
index 43189b0..964d8ac 100644
--- a/src/calcurse.c
+++ b/src/calcurse.c
@@ -146,6 +146,7 @@ static inline void key_add_item(void)
     interact_day_item_add();
     inday = do_storage(0);
     wins_update(FLAG_CAL | FLAG_APP | FLAG_STA);
+    break;
   case TOD:
     interact_todo_add();
     if (todo_hilt() == 0 && todo_nb() == 1)
-- 
cgit v1.2.3-70-g09d2


From ce22b13a4dc435cdbe72304917b4d53932bcbdef Mon Sep 17 00:00:00 2001
From: Michael Smith <crazedpsyc@mail4us.net>
Date: Mon, 4 Feb 2013 19:03:52 +0100
Subject: Close key binding window when reassigning the same key

This allows for canceling a key reassignment. We cannot use a static key
here since every key could potentially be used in a binding. Instead,
just cancel if we are trying to reassign a key that has already been
used for that action before.

Signed-off-by: Michael Smith <crazedpsyc@mail4us.net>
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
---
 src/custom.c | 6 ++++++
 1 file changed, 6 insertions(+)

(limited to 'src')

diff --git a/src/custom.c b/src/custom.c
index df7feef..d569f00 100644
--- a/src/custom.c
+++ b/src/custom.c
@@ -980,6 +980,12 @@ void custom_keys_config(void)
         } else
           not_recognized = 0;
 
+        /* Is the binding used by this action already? If so, just end the reassignment */
+        if (selrow == keys_get_action(keyval)) {
+          delwin(grabwin);
+          break;
+        }
+
         used = keys_assign_binding(keyval, selrow);
         if (used) {
           enum key action;
-- 
cgit v1.2.3-70-g09d2


From a7944d335e9d005e6bbf6f521a5216f98318a131 Mon Sep 17 00:00:00 2001
From: Lukas Fleischer <calcurse@cryptocrack.de>
Date: Mon, 4 Feb 2013 20:10:14 +0100
Subject: Update copyright ranges

Add 2013 to the copyright range for all source and documentation files.

Reported-by: Frederic Culot <frederic@culot.org>
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
---
 COPYING                        | 2 +-
 autogen.sh                     | 2 +-
 doc/calcurse.1.txt             | 4 ++--
 doc/manual.txt                 | 2 +-
 doc/submitting-patches.txt     | 2 +-
 po/calcurse.pot                | 4 ++--
 po/de.po                       | 8 ++++----
 po/en.po                       | 4 ++--
 po/es.po                       | 4 ++--
 po/fr.po                       | 4 ++--
 po/nl.po                       | 4 ++--
 po/pt_BR.po                    | 4 ++--
 po/ru.po                       | 6 +++---
 scripts/calcurse-upgrade.sh.in | 2 +-
 src/apoint.c                   | 2 +-
 src/args.c                     | 4 ++--
 src/calcurse.c                 | 2 +-
 src/calcurse.h                 | 2 +-
 src/calendar.c                 | 2 +-
 src/config.c                   | 2 +-
 src/custom.c                   | 2 +-
 src/day.c                      | 2 +-
 src/dmon.c                     | 2 +-
 src/event.c                    | 2 +-
 src/getstring.c                | 2 +-
 src/help.c                     | 4 ++--
 src/htable.h                   | 2 +-
 src/ical.c                     | 2 +-
 src/interaction.c              | 2 +-
 src/io.c                       | 2 +-
 src/keys.c                     | 2 +-
 src/llist.c                    | 2 +-
 src/llist.h                    | 2 +-
 src/llist_ts.h                 | 2 +-
 src/mem.c                      | 2 +-
 src/note.c                     | 2 +-
 src/notify.c                   | 2 +-
 src/pcal.c                     | 2 +-
 src/recur.c                    | 2 +-
 src/sha1.c                     | 2 +-
 src/sha1.h                     | 2 +-
 src/sigs.c                     | 2 +-
 src/todo.c                     | 2 +-
 src/utf8.c                     | 2 +-
 src/utils.c                    | 2 +-
 src/vars.c                     | 2 +-
 src/wins.c                     | 2 +-
 test/run-test.c                | 2 +-
 48 files changed, 62 insertions(+), 62 deletions(-)

(limited to 'src')

diff --git a/COPYING b/COPYING
index 0045d8f..641ecd7 100644
--- a/COPYING
+++ b/COPYING
@@ -1,4 +1,4 @@
-Copyright (c) 2004-2012 calcurse Development Team <misc@calcurse.org>
+Copyright (c) 2004-2013 calcurse Development Team <misc@calcurse.org>
 All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
diff --git a/autogen.sh b/autogen.sh
index 2d68a81..4323159 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# Copyright (c) 2004-2012 calcurse Development Team <misc@calcurse.org>
+# Copyright (c) 2004-2013 calcurse Development Team <misc@calcurse.org>
 # All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or without
diff --git a/doc/calcurse.1.txt b/doc/calcurse.1.txt
index 2383e95..369eafc 100644
--- a/doc/calcurse.1.txt
+++ b/doc/calcurse.1.txt
@@ -1,6 +1,6 @@
 ////
 /*
- * Copyright (c) 2004-2012 calcurse Development Team <misc@calcurse.org>
+ * Copyright (c) 2004-2013 calcurse Development Team <misc@calcurse.org>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -390,5 +390,5 @@ Authors
 Copyright
 ---------
 
-Copyright (c) 2004-2012 calcurse Development Team.
+Copyright (c) 2004-2013 calcurse Development Team.
 This software is released under the BSD License.
diff --git a/doc/manual.txt b/doc/manual.txt
index c2c39ae..6863850 100644
--- a/doc/manual.txt
+++ b/doc/manual.txt
@@ -1,6 +1,6 @@
 ////
 /*
- * Copyright (c) 2004-2012 calcurse Development Team <misc@calcurse.org>
+ * Copyright (c) 2004-2013 calcurse Development Team <misc@calcurse.org>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
diff --git a/doc/submitting-patches.txt b/doc/submitting-patches.txt
index 0b20fad..d4c379d 100644
--- a/doc/submitting-patches.txt
+++ b/doc/submitting-patches.txt
@@ -1,6 +1,6 @@
 ////
 /*
- * Copyright (c) 2004-2012 calcurse Development Team <misc@calcurse.org>
+ * Copyright (c) 2004-2013 calcurse Development Team <misc@calcurse.org>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
diff --git a/po/calcurse.pot b/po/calcurse.pot
index 32bb6f8..ef6e784 100644
--- a/po/calcurse.pot
+++ b/po/calcurse.pot
@@ -39,7 +39,7 @@ msgstr ""
 
 msgid ""
 "\n"
-"Copyright (c) 2004-2012 calcurse Development Team.\n"
+"Copyright (c) 2004-2013 calcurse Development Team.\n"
 "This is free software; see the source for copying conditions.\n"
 msgstr ""
 
@@ -984,7 +984,7 @@ msgstr ""
 #, c-format
 msgid ""
 "\n"
-"Copyright (c) 2004-2012 calcurse Development Team\n"
+"Copyright (c) 2004-2013 calcurse Development Team\n"
 "All rights reserved.\n"
 "\n"
 "Redistribution and use in source and binary forms, with or without\n"
diff --git a/po/de.po b/po/de.po
index 91ccb34..a123165 100644
--- a/po/de.po
+++ b/po/de.po
@@ -45,11 +45,11 @@ msgstr "Geben Sie 'calcurse -h' ein, für weitere Informationen.\n"
 
 msgid ""
 "\n"
-"Copyright (c) 2004-2012 calcurse Development Team.\n"
+"Copyright (c) 2004-2013 calcurse Development Team.\n"
 "This is free software; see the source for copying conditions.\n"
 msgstr ""
 "\n"
-"Copyright (c) 2004-2012 calcurse Development Team.\n"
+"Copyright (c) 2004-2013 calcurse Development Team.\n"
 "Dies ist freie Software; vgl. den Quellcode zu den Kopierbedingungen.\n"
 
 #, c-format
@@ -1405,7 +1405,7 @@ msgstr "Calcurse - textbasierender Terminkalender"
 #, c-format
 msgid ""
 "\n"
-"Copyright (c) 2004-2012 calcurse Development Team\n"
+"Copyright (c) 2004-2013 calcurse Development Team\n"
 "All rights reserved.\n"
 "\n"
 "Redistribution and use in source and binary forms, with or without\n"
@@ -1426,7 +1426,7 @@ msgid ""
 "Calcurse home page : http://calcurse.org"
 msgstr ""
 "\n"
-"Copyright (c) 2004-2012 calcurse Development Team\n"
+"Copyright (c) 2004-2013 calcurse Development Team\n"
 "Alle Rechte vorbehalten.\n"
 "\n"
 "Redistribution and use in source and binary forms, with or without\n"
diff --git a/po/en.po b/po/en.po
index 5d91f88..c1df746 100644
--- a/po/en.po
+++ b/po/en.po
@@ -43,7 +43,7 @@ msgstr "Try 'calcurse -h' for more information.\n"
 #, fuzzy
 msgid ""
 "\n"
-"Copyright (c) 2004-2012 calcurse Development Team.\n"
+"Copyright (c) 2004-2013 calcurse Development Team.\n"
 "This is free software; see the source for copying conditions.\n"
 msgstr ""
 "\n"
@@ -1157,7 +1157,7 @@ msgstr "Calcurse - text-based organizer"
 #, c-format
 msgid ""
 "\n"
-"Copyright (c) 2004-2012 calcurse Development Team\n"
+"Copyright (c) 2004-2013 calcurse Development Team\n"
 "All rights reserved.\n"
 "\n"
 "Redistribution and use in source and binary forms, with or without\n"
diff --git a/po/es.po b/po/es.po
index 635312c..484efbb 100644
--- a/po/es.po
+++ b/po/es.po
@@ -39,7 +39,7 @@ msgstr "Prueba con 'calcurse -h' para mas informacion.\n"
 
 msgid ""
 "\n"
-"Copyright (c) 2004-2012 calcurse Development Team.\n"
+"Copyright (c) 2004-2013 calcurse Development Team.\n"
 "This is free software; see the source for copying conditions.\n"
 msgstr ""
 
@@ -991,7 +991,7 @@ msgstr "Calcurse - organizador basado en modo texto"
 #, c-format
 msgid ""
 "\n"
-"Copyright (c) 2004-2012 calcurse Development Team\n"
+"Copyright (c) 2004-2013 calcurse Development Team\n"
 "All rights reserved.\n"
 "\n"
 "Redistribution and use in source and binary forms, with or without\n"
diff --git a/po/fr.po b/po/fr.po
index 81bb1f4..7467cee 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -43,7 +43,7 @@ msgstr "Taper 'calcurse -h' pour plus d'informations.\n"
 
 msgid ""
 "\n"
-"Copyright (c) 2004-2012 calcurse Development Team.\n"
+"Copyright (c) 2004-2013 calcurse Development Team.\n"
 "This is free software; see the source for copying conditions.\n"
 msgstr ""
 "\n"
@@ -1387,7 +1387,7 @@ msgstr "Calcurse - organiseur personnel en mode texte"
 #, c-format
 msgid ""
 "\n"
-"Copyright (c) 2004-2012 calcurse Development Team\n"
+"Copyright (c) 2004-2013 calcurse Development Team\n"
 "All rights reserved.\n"
 "\n"
 "Redistribution and use in source and binary forms, with or without\n"
diff --git a/po/nl.po b/po/nl.po
index 6872b01..16acb2a 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -41,7 +41,7 @@ msgstr "Gebruik 'calcurse -h', voor meer informatie.\n"
 
 msgid ""
 "\n"
-"Copyright (c) 2004-2012 calcurse Development Team.\n"
+"Copyright (c) 2004-2013 calcurse Development Team.\n"
 "This is free software; see the source for copying conditions.\n"
 msgstr ""
 
@@ -997,7 +997,7 @@ msgstr "Calcurse - tekst-gebaseerde organizer"
 #, c-format
 msgid ""
 "\n"
-"Copyright (c) 2004-2012 calcurse Development Team\n"
+"Copyright (c) 2004-2013 calcurse Development Team\n"
 "All rights reserved.\n"
 "\n"
 "Redistribution and use in source and binary forms, with or without\n"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index f3e3295..34bfe4e 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -44,7 +44,7 @@ msgstr "Tente \"calcurse -h\" para maiores informações.\n"
 
 msgid ""
 "\n"
-"Copyright (c) 2004-2012 calcurse Development Team.\n"
+"Copyright (c) 2004-2013 calcurse Development Team.\n"
 "This is free software; see the source for copying conditions.\n"
 msgstr ""
 "\n"
@@ -1452,7 +1452,7 @@ msgstr "Calcurse - Organizador baseado em texto"
 #, c-format
 msgid ""
 "\n"
-"Copyright (c) 2004-2012 calcurse Development Team\n"
+"Copyright (c) 2004-2013 calcurse Development Team\n"
 "All rights reserved.\n"
 "\n"
 "Redistribution and use in source and binary forms, with or without\n"
diff --git a/po/ru.po b/po/ru.po
index e1b7dce..48999f3 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -47,11 +47,11 @@ msgstr "Выполните 'calcurse -h' для получения справк
 
 msgid ""
 "\n"
-"Copyright (c) 2004-2012 calcurse Development Team.\n"
+"Copyright (c) 2004-2013 calcurse Development Team.\n"
 "This is free software; see the source for copying conditions.\n"
 msgstr ""
 "\n"
-"Copyright (c) 2004-2012 calcurse Development Team.\n"
+"Copyright (c) 2004-2013 calcurse Development Team.\n"
 "This is free software; see the source for copying conditions.\n"
 
 #, c-format
@@ -1394,7 +1394,7 @@ msgstr "Calcurse - текстовый органайзер"
 #, c-format
 msgid ""
 "\n"
-"Copyright (c) 2004-2012 calcurse Development Team\n"
+"Copyright (c) 2004-2013 calcurse Development Team\n"
 "All rights reserved.\n"
 "\n"
 "Redistribution and use in source and binary forms, with or without\n"
diff --git a/scripts/calcurse-upgrade.sh.in b/scripts/calcurse-upgrade.sh.in
index 295f736..f9e9113 100644
--- a/scripts/calcurse-upgrade.sh.in
+++ b/scripts/calcurse-upgrade.sh.in
@@ -15,7 +15,7 @@ if [ "$#" -gt 0 ]; then
   elif [ "$1" = "-v" -o "$1" = "--version" ]; then
     echo "calcurse-upgrade @PACKAGE_VERSION@"
     echo "$(gettext "
-Copyright (c) 2004-2012 calcurse Development Team.
+Copyright (c) 2004-2013 calcurse Development Team.
 This is free software; see the source for copying conditions.
 ")"
   else
diff --git a/src/apoint.c b/src/apoint.c
index 9b9257f..64f9f55 100644
--- a/src/apoint.c
+++ b/src/apoint.c
@@ -1,7 +1,7 @@
 /*
  * Calcurse - text-based organizer
  *
- * Copyright (c) 2004-2012 calcurse Development Team <misc@calcurse.org>
+ * Copyright (c) 2004-2013 calcurse Development Team <misc@calcurse.org>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
diff --git a/src/args.c b/src/args.c
index 85c91cb..12d33c5 100644
--- a/src/args.c
+++ b/src/args.c
@@ -1,7 +1,7 @@
 /*
  * Calcurse - text-based organizer
  *
- * Copyright (c) 2004-2012 calcurse Development Team <misc@calcurse.org>
+ * Copyright (c) 2004-2013 calcurse Development Team <misc@calcurse.org>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -79,7 +79,7 @@ static void usage_try(void)
 static void version_arg(void)
 {
   const char *vtext =
-      _("\nCopyright (c) 2004-2012 calcurse Development Team.\n"
+      _("\nCopyright (c) 2004-2013 calcurse Development Team.\n"
         "This is free software; see the source for copying conditions.\n");
 
   fprintf(stdout, _("Calcurse %s - text-based organizer\n"), VERSION);
diff --git a/src/calcurse.c b/src/calcurse.c
index 964d8ac..caabafa 100644
--- a/src/calcurse.c
+++ b/src/calcurse.c
@@ -1,7 +1,7 @@
 /*
  * Calcurse - text-based organizer
  *
- * Copyright (c) 2004-2012 calcurse Development Team <misc@calcurse.org>
+ * Copyright (c) 2004-2013 calcurse Development Team <misc@calcurse.org>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
diff --git a/src/calcurse.h b/src/calcurse.h
index 16b126a..cb03a51 100644
--- a/src/calcurse.h
+++ b/src/calcurse.h
@@ -1,7 +1,7 @@
 /*
  * Calcurse - text-based organizer
  *
- * Copyright (c) 2004-2012 calcurse Development Team <misc@calcurse.org>
+ * Copyright (c) 2004-2013 calcurse Development Team <misc@calcurse.org>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
diff --git a/src/calendar.c b/src/calendar.c
index 313ec53..cad9ad9 100644
--- a/src/calendar.c
+++ b/src/calendar.c
@@ -1,7 +1,7 @@
 /*
  * Calcurse - text-based organizer
  *
- * Copyright (c) 2004-2012 calcurse Development Team <misc@calcurse.org>
+ * Copyright (c) 2004-2013 calcurse Development Team <misc@calcurse.org>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
diff --git a/src/config.c b/src/config.c
index da562b2..83d1a93 100644
--- a/src/config.c
+++ b/src/config.c
@@ -1,7 +1,7 @@
 /*
  * Calcurse - text-based organizer
  *
- * Copyright (c) 2004-2012 calcurse Development Team <misc@calcurse.org>
+ * Copyright (c) 2004-2013 calcurse Development Team <misc@calcurse.org>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
diff --git a/src/custom.c b/src/custom.c
index d569f00..a4365ac 100644
--- a/src/custom.c
+++ b/src/custom.c
@@ -1,7 +1,7 @@
 /*
  * Calcurse - text-based organizer
  *
- * Copyright (c) 2004-2012 calcurse Development Team <misc@calcurse.org>
+ * Copyright (c) 2004-2013 calcurse Development Team <misc@calcurse.org>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
diff --git a/src/day.c b/src/day.c
index df95ccf..189875f 100644
--- a/src/day.c
+++ b/src/day.c
@@ -1,7 +1,7 @@
 /*
  * Calcurse - text-based organizer
  *
- * Copyright (c) 2004-2012 calcurse Development Team <misc@calcurse.org>
+ * Copyright (c) 2004-2013 calcurse Development Team <misc@calcurse.org>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
diff --git a/src/dmon.c b/src/dmon.c
index f8d3403..0fd7962 100644
--- a/src/dmon.c
+++ b/src/dmon.c
@@ -1,7 +1,7 @@
 /*
  * Calcurse - text-based organizer
  *
- * Copyright (c) 2004-2012 calcurse Development Team <misc@calcurse.org>
+ * Copyright (c) 2004-2013 calcurse Development Team <misc@calcurse.org>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
diff --git a/src/event.c b/src/event.c
index dca6820..b1186a3 100644
--- a/src/event.c
+++ b/src/event.c
@@ -1,7 +1,7 @@
 /*
  * Calcurse - text-based organizer
  *
- * Copyright (c) 2004-2012 calcurse Development Team <misc@calcurse.org>
+ * Copyright (c) 2004-2013 calcurse Development Team <misc@calcurse.org>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
diff --git a/src/getstring.c b/src/getstring.c
index cc2a949..3b7224d 100644
--- a/src/getstring.c
+++ b/src/getstring.c
@@ -1,7 +1,7 @@
 /*
  * Calcurse - text-based organizer
  *
- * Copyright (c) 2004-2012 calcurse Development Team <misc@calcurse.org>
+ * Copyright (c) 2004-2013 calcurse Development Team <misc@calcurse.org>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
diff --git a/src/help.c b/src/help.c
index d9afd4c..289f814 100644
--- a/src/help.c
+++ b/src/help.c
@@ -1,7 +1,7 @@
 /*
  * Calcurse - text-based organizer
  *
- * Copyright (c) 2004-2012 calcurse Development Team <misc@calcurse.org>
+ * Copyright (c) 2004-2013 calcurse Development Team <misc@calcurse.org>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -736,7 +736,7 @@ void help_screen(void)
 
   hscr[HELP_CREDITS].title = _("Calcurse - text-based organizer");
   snprintf(hscr[HELP_CREDITS].text, HELPTEXTSIZ,
-           _("\nCopyright (c) 2004-2012 calcurse Development Team\n"
+           _("\nCopyright (c) 2004-2013 calcurse Development Team\n"
              "All rights reserved.\n"
              "\n"
              "Redistribution and use in source and binary forms, with or without\n"
diff --git a/src/htable.h b/src/htable.h
index 3bde5ef..a9317e0 100644
--- a/src/htable.h
+++ b/src/htable.h
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2004-2012 calcurse Development Team <misc@calcurse.org>
+ * Copyright (c) 2004-2013 calcurse Development Team <misc@calcurse.org>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
diff --git a/src/ical.c b/src/ical.c
index d34ef38..ea8afaa 100644
--- a/src/ical.c
+++ b/src/ical.c
@@ -1,7 +1,7 @@
 /*
  * Calcurse - text-based organizer
  *
- * Copyright (c) 2004-2012 calcurse Development Team <misc@calcurse.org>
+ * Copyright (c) 2004-2013 calcurse Development Team <misc@calcurse.org>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
diff --git a/src/interaction.c b/src/interaction.c
index c313ce9..49ebac5 100644
--- a/src/interaction.c
+++ b/src/interaction.c
@@ -1,7 +1,7 @@
 /*
  * Calcurse - text-based organizer
  *
- * Copyright (c) 2004-2012 calcurse Development Team <misc@calcurse.org>
+ * Copyright (c) 2004-2013 calcurse Development Team <misc@calcurse.org>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
diff --git a/src/io.c b/src/io.c
index ff8d1ea..8923ba5 100644
--- a/src/io.c
+++ b/src/io.c
@@ -1,7 +1,7 @@
 /*
  * Calcurse - text-based organizer
  *
- * Copyright (c) 2004-2012 calcurse Development Team <misc@calcurse.org>
+ * Copyright (c) 2004-2013 calcurse Development Team <misc@calcurse.org>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
diff --git a/src/keys.c b/src/keys.c
index a870882..5d53a1e 100644
--- a/src/keys.c
+++ b/src/keys.c
@@ -1,7 +1,7 @@
 /*
  * Calcurse - text-based organizer
  *
- * Copyright (c) 2004-2012 calcurse Development Team <misc@calcurse.org>
+ * Copyright (c) 2004-2013 calcurse Development Team <misc@calcurse.org>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
diff --git a/src/llist.c b/src/llist.c
index f771ef3..54f1e79 100644
--- a/src/llist.c
+++ b/src/llist.c
@@ -1,7 +1,7 @@
 /*
  * Calcurse - text-based organizer
  *
- * Copyright (c) 2004-2012 calcurse Development Team <misc@calcurse.org>
+ * Copyright (c) 2004-2013 calcurse Development Team <misc@calcurse.org>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
diff --git a/src/llist.h b/src/llist.h
index a786358..7c4d590 100644
--- a/src/llist.h
+++ b/src/llist.h
@@ -1,7 +1,7 @@
 /*
  * Calcurse - text-based organizer
  *
- * Copyright (c) 2004-2012 calcurse Development Team <misc@calcurse.org>
+ * Copyright (c) 2004-2013 calcurse Development Team <misc@calcurse.org>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
diff --git a/src/llist_ts.h b/src/llist_ts.h
index b452377..7663a2d 100644
--- a/src/llist_ts.h
+++ b/src/llist_ts.h
@@ -1,7 +1,7 @@
 /*
  * Calcurse - text-based organizer
  *
- * Copyright (c) 2004-2012 calcurse Development Team <misc@calcurse.org>
+ * Copyright (c) 2004-2013 calcurse Development Team <misc@calcurse.org>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
diff --git a/src/mem.c b/src/mem.c
index ecb8aa4..8889cc0 100644
--- a/src/mem.c
+++ b/src/mem.c
@@ -1,7 +1,7 @@
 /*
  * Calcurse - text-based organizer
  *
- * Copyright (c) 2004-2012 calcurse Development Team <misc@calcurse.org>
+ * Copyright (c) 2004-2013 calcurse Development Team <misc@calcurse.org>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
diff --git a/src/note.c b/src/note.c
index d2f7ab2..9508ea5 100644
--- a/src/note.c
+++ b/src/note.c
@@ -1,7 +1,7 @@
 /*
  * Calcurse - text-based organizer
  *
- * Copyright (c) 2004-2012 calcurse Development Team <misc@calcurse.org>
+ * Copyright (c) 2004-2013 calcurse Development Team <misc@calcurse.org>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
diff --git a/src/notify.c b/src/notify.c
index c739829..cb56e8c 100644
--- a/src/notify.c
+++ b/src/notify.c
@@ -1,7 +1,7 @@
 /*
  * Calcurse - text-based organizer
  *
- * Copyright (c) 2004-2012 calcurse Development Team <misc@calcurse.org>
+ * Copyright (c) 2004-2013 calcurse Development Team <misc@calcurse.org>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
diff --git a/src/pcal.c b/src/pcal.c
index 4c00ddc..8bcc0b5 100644
--- a/src/pcal.c
+++ b/src/pcal.c
@@ -1,7 +1,7 @@
 /*
  * Calcurse - text-based organizer
  *
- * Copyright (c) 2004-2012 calcurse Development Team <misc@calcurse.org>
+ * Copyright (c) 2004-2013 calcurse Development Team <misc@calcurse.org>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
diff --git a/src/recur.c b/src/recur.c
index 1c593c2..e9312e7 100644
--- a/src/recur.c
+++ b/src/recur.c
@@ -1,7 +1,7 @@
 /*
  * Calcurse - text-based organizer
  *
- * Copyright (c) 2004-2012 calcurse Development Team <misc@calcurse.org>
+ * Copyright (c) 2004-2013 calcurse Development Team <misc@calcurse.org>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
diff --git a/src/sha1.c b/src/sha1.c
index 4fbf245..0388e3c 100644
--- a/src/sha1.c
+++ b/src/sha1.c
@@ -1,7 +1,7 @@
 /*
  * Calcurse - text-based organizer
  *
- * Copyright (c) 2004-2012 calcurse Development Team <misc@calcurse.org>
+ * Copyright (c) 2004-2013 calcurse Development Team <misc@calcurse.org>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
diff --git a/src/sha1.h b/src/sha1.h
index 8f90ff5..8f80bef 100644
--- a/src/sha1.h
+++ b/src/sha1.h
@@ -1,7 +1,7 @@
 /*
  * Calcurse - text-based organizer
  *
- * Copyright (c) 2004-2012 calcurse Development Team <misc@calcurse.org>
+ * Copyright (c) 2004-2013 calcurse Development Team <misc@calcurse.org>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
diff --git a/src/sigs.c b/src/sigs.c
index 77ef6b8..68dcdfd 100644
--- a/src/sigs.c
+++ b/src/sigs.c
@@ -1,7 +1,7 @@
 /*
  * Calcurse - text-based organizer
  *
- * Copyright (c) 2004-2012 calcurse Development Team <misc@calcurse.org>
+ * Copyright (c) 2004-2013 calcurse Development Team <misc@calcurse.org>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
diff --git a/src/todo.c b/src/todo.c
index 2a207e2..015f43f 100644
--- a/src/todo.c
+++ b/src/todo.c
@@ -1,7 +1,7 @@
 /*
  * Calcurse - text-based organizer
  *
- * Copyright (c) 2004-2012 calcurse Development Team <misc@calcurse.org>
+ * Copyright (c) 2004-2013 calcurse Development Team <misc@calcurse.org>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
diff --git a/src/utf8.c b/src/utf8.c
index 398b142..6ec8eca 100644
--- a/src/utf8.c
+++ b/src/utf8.c
@@ -1,7 +1,7 @@
 /*
  * Calcurse - text-based organizer
  *
- * Copyright (c) 2004-2012 calcurse Development Team <misc@calcurse.org>
+ * Copyright (c) 2004-2013 calcurse Development Team <misc@calcurse.org>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
diff --git a/src/utils.c b/src/utils.c
index ba31418..47d8d57 100644
--- a/src/utils.c
+++ b/src/utils.c
@@ -1,7 +1,7 @@
 /*
  * Calcurse - text-based organizer
  *
- * Copyright (c) 2004-2012 calcurse Development Team <misc@calcurse.org>
+ * Copyright (c) 2004-2013 calcurse Development Team <misc@calcurse.org>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
diff --git a/src/vars.c b/src/vars.c
index ac6654c..a54b702 100644
--- a/src/vars.c
+++ b/src/vars.c
@@ -1,7 +1,7 @@
 /*
  * Calcurse - text-based organizer
  *
- * Copyright (c) 2004-2012 calcurse Development Team <misc@calcurse.org>
+ * Copyright (c) 2004-2013 calcurse Development Team <misc@calcurse.org>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
diff --git a/src/wins.c b/src/wins.c
index 0181ab9..e18edf0 100644
--- a/src/wins.c
+++ b/src/wins.c
@@ -1,7 +1,7 @@
 /*
  * Calcurse - text-based organizer
  *
- * Copyright (c) 2004-2012 calcurse Development Team <misc@calcurse.org>
+ * Copyright (c) 2004-2013 calcurse Development Team <misc@calcurse.org>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
diff --git a/test/run-test.c b/test/run-test.c
index fb5bcb4..7084189 100644
--- a/test/run-test.c
+++ b/test/run-test.c
@@ -1,7 +1,7 @@
 /*
  * Calcurse - text-based organizer
  *
- * Copyright (c) 2004-2012 calcurse Development Team <misc@calcurse.org>
+ * Copyright (c) 2004-2013 calcurse Development Team <misc@calcurse.org>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
-- 
cgit v1.2.3-70-g09d2