aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+667e-11@users.noreply.github.com>2019-02-16 22:57:47 -0500
committerGravatar mitchell <70453897+667e-11@users.noreply.github.com>2019-02-16 22:57:47 -0500
commit289683eb2044abce8350b8df18580e4d41e072fb (patch)
tree9ee4d1d8e8e7ef6b6f4e4432b9fef081f8fc1d16
parent343affbc83385da8a357d6300f89b253adca0704 (diff)
Updated copyright year.
-rw-r--r--LICENSE2
-rw-r--r--core/args.lua2
-rw-r--r--core/events.lua2
-rw-r--r--core/file_io.lua2
-rw-r--r--core/iface.lua2
-rw-r--r--core/init.lua4
-rw-r--r--core/keys.lua2
-rw-r--r--core/lfs_ext.lua2
-rw-r--r--core/locale.conf2
-rw-r--r--core/locale.lua2
-rw-r--r--core/locales/locale.ar.conf2
-rw-r--r--core/locales/locale.de.conf2
-rw-r--r--core/locales/locale.es.conf2
-rw-r--r--core/locales/locale.fr.conf2
-rw-r--r--core/locales/locale.it.conf2
-rw-r--r--core/locales/locale.pl.conf2
-rw-r--r--core/locales/locale.ru.conf2
-rw-r--r--core/locales/locale.sv.conf2
-rw-r--r--core/locales/locale.zh.conf2
-rw-r--r--core/ui.lua2
-rw-r--r--doc/.footer.md2
-rw-r--r--doc/index.html2
-rw-r--r--doc/markdowndoc.lua2
-rw-r--r--modules/ansi_c/init.lua2
-rw-r--r--modules/lua/init.lua2
-rw-r--r--modules/lua/tadoc.lua2
-rw-r--r--modules/textadept/bookmarks.lua2
-rw-r--r--modules/textadept/command_entry.lua2
-rw-r--r--modules/textadept/editing.lua2
-rw-r--r--modules/textadept/file_types.lua2
-rw-r--r--modules/textadept/find.lua2
-rw-r--r--modules/textadept/init.lua2
-rw-r--r--modules/textadept/keys.lua2
-rw-r--r--modules/textadept/menu.lua2
-rw-r--r--modules/textadept/run.lua2
-rw-r--r--modules/textadept/session.lua2
-rw-r--r--modules/textadept/snippets.lua2
-rwxr-xr-xscripts/gen_iface.lua4
-rwxr-xr-xscripts/gen_lua_c_api_tags.lua2
-rwxr-xr-xscripts/gen_plist.lua2
-rwxr-xr-xscripts/osx/ta2
-rwxr-xr-xscripts/osx/textadept_osx2
-rw-r--r--src/Makefile2
-rw-r--r--src/termkey.patch2
-rw-r--r--src/textadept.c2
-rw-r--r--themes/dark.lua2
-rw-r--r--themes/light.lua2
-rw-r--r--themes/term.lua2
48 files changed, 50 insertions, 50 deletions
diff --git a/LICENSE b/LICENSE
index 5857a830..bd8d7398 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
The MIT License
-Copyright (c) 2007-2018 Mitchell
+Copyright (c) 2007-2019 Mitchell
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/core/args.lua b/core/args.lua
index 9fba09ea..a01eab48 100644
--- a/core/args.lua
+++ b/core/args.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+-- Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
local M = {}
diff --git a/core/events.lua b/core/events.lua
index 98a3475b..480850a6 100644
--- a/core/events.lua
+++ b/core/events.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+-- Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
local M = {}
diff --git a/core/file_io.lua b/core/file_io.lua
index 820bf70a..80c36889 100644
--- a/core/file_io.lua
+++ b/core/file_io.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+-- Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
--[[ This comment is for LuaDoc.
---
diff --git a/core/iface.lua b/core/iface.lua
index 539c55f8..46ed95b4 100644
--- a/core/iface.lua
+++ b/core/iface.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+-- Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
local M = {}
diff --git a/core/init.lua b/core/init.lua
index aa244cff..803acc86 100644
--- a/core/init.lua
+++ b/core/init.lua
@@ -1,7 +1,7 @@
--- Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+-- Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
_RELEASE = "Textadept 10.3 beta"
-_COPYRIGHT = 'Copyright © 2007-2018 Mitchell. See LICENSE.\n'..
+_COPYRIGHT = 'Copyright © 2007-2019 Mitchell. See LICENSE.\n'..
'http://foicica.com/textadept'
package.path = _HOME..'/core/?.lua;'..package.path
diff --git a/core/keys.lua b/core/keys.lua
index d8cd3eb2..e185b72b 100644
--- a/core/keys.lua
+++ b/core/keys.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+-- Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
local M = {}
diff --git a/core/lfs_ext.lua b/core/lfs_ext.lua
index d69071ef..17cf8379 100644
--- a/core/lfs_ext.lua
+++ b/core/lfs_ext.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+-- Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
--[[ This comment is for LuaDoc.
---
diff --git a/core/locale.conf b/core/locale.conf
index c30e3430..25ba82ae 100644
--- a/core/locale.conf
+++ b/core/locale.conf
@@ -1,4 +1,4 @@
-# Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+# Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
# American English localization file for Textadept.
#
# When translating this file into your native language, all translated text must
diff --git a/core/locale.lua b/core/locale.lua
index e5cb9ea9..56dbdd61 100644
--- a/core/locale.lua
+++ b/core/locale.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+-- Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
local M = {}
diff --git a/core/locales/locale.ar.conf b/core/locales/locale.ar.conf
index fb3b5df0..9b450e36 100644
--- a/core/locales/locale.ar.conf
+++ b/core/locales/locale.ar.conf
@@ -1,4 +1,4 @@
-# Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+# Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
# Arabic localization file for Textadept by Ahed Eid <AhedEid AT gmail.com>.
#
# When translating this file into your native language, all translated text must
diff --git a/core/locales/locale.de.conf b/core/locales/locale.de.conf
index 11f8db3d..67b5c317 100644
--- a/core/locales/locale.de.conf
+++ b/core/locales/locale.de.conf
@@ -1,4 +1,4 @@
-# Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+# Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
# German localization file for Textadept by Robert Gieseke.
#
# When translating this file into your native language, all translated text must
diff --git a/core/locales/locale.es.conf b/core/locales/locale.es.conf
index 8d089290..c196229a 100644
--- a/core/locales/locale.es.conf
+++ b/core/locales/locale.es.conf
@@ -1,4 +1,4 @@
-# Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+# Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
# Spanish localization file for Textadept by Manuel Montenegro Montes <manuelmont AT gmail.com>.
#
# When translating this file into your native language, all translated text must
diff --git a/core/locales/locale.fr.conf b/core/locales/locale.fr.conf
index 440c74f7..4a79276b 100644
--- a/core/locales/locale.fr.conf
+++ b/core/locales/locale.fr.conf
@@ -1,4 +1,4 @@
-# Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+# Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
# French localization file for Textadept by Gilles Grégoire <gilles.gregoire+ta AT gmail .com>
# and revised by Giovanni Salmeri <g.salmeri AT mondodomani.org>.
#
diff --git a/core/locales/locale.it.conf b/core/locales/locale.it.conf
index b5256108..f5c76267 100644
--- a/core/locales/locale.it.conf
+++ b/core/locales/locale.it.conf
@@ -1,4 +1,4 @@
-# Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+# Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
# Italian localization file for Textadept by Giovanni Salmeri <g.salmeri AT mondodomani.org>.
#
# When translating this file into your native language, all translated text must
diff --git a/core/locales/locale.pl.conf b/core/locales/locale.pl.conf
index 5a557bb6..291c79c2 100644
--- a/core/locales/locale.pl.conf
+++ b/core/locales/locale.pl.conf
@@ -1,4 +1,4 @@
-# Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+# Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
# Polish localization file for Textadept by Piotr "Orzech" Orzechowski [drzewo.org], 2014
# and revised by Piotr Orzechowski [orzechowski.tech], 2017.
#
diff --git a/core/locales/locale.ru.conf b/core/locales/locale.ru.conf
index 80dd6cd1..ea5ba5a2 100644
--- a/core/locales/locale.ru.conf
+++ b/core/locales/locale.ru.conf
@@ -1,4 +1,4 @@
-# Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+# Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
# American English localization file for Textadept.
#
# When translating this file into your native language, all translated text must
diff --git a/core/locales/locale.sv.conf b/core/locales/locale.sv.conf
index c67c4ef8..e5956551 100644
--- a/core/locales/locale.sv.conf
+++ b/core/locales/locale.sv.conf
@@ -1,4 +1,4 @@
-# Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+# Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
# Swedish localization file for Textadept by Niklas Wallén <nikw AT gmx .com>.
#
# When translating this file into your native language, all translated text must
diff --git a/core/locales/locale.zh.conf b/core/locales/locale.zh.conf
index afa53327..70cfdc6d 100644
--- a/core/locales/locale.zh.conf
+++ b/core/locales/locale.zh.conf
@@ -1,4 +1,4 @@
-# Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+# Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
# American English localization file for Textadept.
#
# When translating this file into your native language, all translated text must
diff --git a/core/ui.lua b/core/ui.lua
index 0b227995..a5827cef 100644
--- a/core/ui.lua
+++ b/core/ui.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+-- Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
local ui = ui
diff --git a/doc/.footer.md b/doc/.footer.md
index 23d27d83..cdf30e88 100644
--- a/doc/.footer.md
+++ b/doc/.footer.md
@@ -1,3 +1,3 @@
--> (c) 2007-2018 [Mitchell][] mitchell.att.foicica.com <-
+-> (c) 2007-2019 [Mitchell][] mitchell.att.foicica.com <-
[Mitchell]: http://foicica.com
diff --git a/doc/index.html b/doc/index.html
index 9aab6029..02541b75 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -370,7 +370,7 @@
<div id="footer">
<p style="text-align:center;">
- &copy; 2007-2018 <a href="http://foicica.com">Mitchell</a>
+ &copy; 2007-2019 <a href="http://foicica.com">Mitchell</a>
mitchell.att.foicica.com
</p>
</div>
diff --git a/doc/markdowndoc.lua b/doc/markdowndoc.lua
index 75ed9cb8..a7e8d3ff 100644
--- a/doc/markdowndoc.lua
+++ b/doc/markdowndoc.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+-- Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
local ipairs, type = ipairs, type
local io_open, io_popen = io.open, io.popen
diff --git a/modules/ansi_c/init.lua b/modules/ansi_c/init.lua
index eb777b51..ec7a08f4 100644
--- a/modules/ansi_c/init.lua
+++ b/modules/ansi_c/init.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+-- Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
local M = {}
diff --git a/modules/lua/init.lua b/modules/lua/init.lua
index 9b0821ac..246caa59 100644
--- a/modules/lua/init.lua
+++ b/modules/lua/init.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+-- Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
local M = {}
diff --git a/modules/lua/tadoc.lua b/modules/lua/tadoc.lua
index 26ff7f86..6cd6983c 100644
--- a/modules/lua/tadoc.lua
+++ b/modules/lua/tadoc.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+-- Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Textadept autocompletions and API documentation doclet for LuaDoc.
-- This module is used by LuaDoc to create Lua autocompletion and API
diff --git a/modules/textadept/bookmarks.lua b/modules/textadept/bookmarks.lua
index 429b658f..601d5a78 100644
--- a/modules/textadept/bookmarks.lua
+++ b/modules/textadept/bookmarks.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+-- Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
local M = {}
diff --git a/modules/textadept/command_entry.lua b/modules/textadept/command_entry.lua
index f5fef2f6..9b4f36e9 100644
--- a/modules/textadept/command_entry.lua
+++ b/modules/textadept/command_entry.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+-- Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Abbreviated environment and commands from Jay Gould.
local M = ui.command_entry
diff --git a/modules/textadept/editing.lua b/modules/textadept/editing.lua
index 673d177e..98cf4687 100644
--- a/modules/textadept/editing.lua
+++ b/modules/textadept/editing.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+-- Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
local M = {}
diff --git a/modules/textadept/file_types.lua b/modules/textadept/file_types.lua
index a25cc024..ad01118b 100644
--- a/modules/textadept/file_types.lua
+++ b/modules/textadept/file_types.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+-- Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
local M = {}
diff --git a/modules/textadept/find.lua b/modules/textadept/find.lua
index 815b4c66..905d1d06 100644
--- a/modules/textadept/find.lua
+++ b/modules/textadept/find.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+-- Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
local M = ui.find
diff --git a/modules/textadept/init.lua b/modules/textadept/init.lua
index 5f84e429..5cf7dabf 100644
--- a/modules/textadept/init.lua
+++ b/modules/textadept/init.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+-- Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
local M = {}
textadept = M -- forward declaration
diff --git a/modules/textadept/keys.lua b/modules/textadept/keys.lua
index f27044e8..5724ff42 100644
--- a/modules/textadept/keys.lua
+++ b/modules/textadept/keys.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+-- Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
local M = {}
diff --git a/modules/textadept/menu.lua b/modules/textadept/menu.lua
index 5f38c340..7a8da077 100644
--- a/modules/textadept/menu.lua
+++ b/modules/textadept/menu.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+-- Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Contributions from Robert Gieseke.
local M = {}
diff --git a/modules/textadept/run.lua b/modules/textadept/run.lua
index f8324bfe..d31ae527 100644
--- a/modules/textadept/run.lua
+++ b/modules/textadept/run.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+-- Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
local M = {}
diff --git a/modules/textadept/session.lua b/modules/textadept/session.lua
index d53fe359..cc458483 100644
--- a/modules/textadept/session.lua
+++ b/modules/textadept/session.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+-- Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
local M = {}
diff --git a/modules/textadept/snippets.lua b/modules/textadept/snippets.lua
index c7ff417a..ba16bff6 100644
--- a/modules/textadept/snippets.lua
+++ b/modules/textadept/snippets.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+-- Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
local M = {}
diff --git a/scripts/gen_iface.lua b/scripts/gen_iface.lua
index 0d407f9b..d21a3208 100755
--- a/scripts/gen_iface.lua
+++ b/scripts/gen_iface.lua
@@ -1,5 +1,5 @@
#!/usr/bin/lua
--- Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+-- Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
local constants, functions, properties = {}, {}, {}
local const_patt = '^val ([%w_]+)=([-%dx%x]+)'
@@ -89,7 +89,7 @@ table.sort(properties)
local f = io.open('../core/iface.lua', 'wb')
f:write([=[
--- Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+-- Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
local M = {}
diff --git a/scripts/gen_lua_c_api_tags.lua b/scripts/gen_lua_c_api_tags.lua
index e870bee4..cf9d584c 100755
--- a/scripts/gen_lua_c_api_tags.lua
+++ b/scripts/gen_lua_c_api_tags.lua
@@ -1,5 +1,5 @@
#!/usr/bin/lua
--- Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+-- Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
local f = io.open('../modules/ansi_c/lua_tags', 'w')
-- Lua header files define API functions in a way ctags cannot detect.
diff --git a/scripts/gen_plist.lua b/scripts/gen_plist.lua
index 30326da0..4a8aa7a1 100755
--- a/scripts/gen_plist.lua
+++ b/scripts/gen_plist.lua
@@ -1,5 +1,5 @@
#!/usr/bin/lua
--- Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+-- Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
-- This script generates the "Info.plist" file for the Mac OSX App bundle.
diff --git a/scripts/osx/ta b/scripts/osx/ta
index 61b8aebd..b3698a1e 100755
--- a/scripts/osx/ta
+++ b/scripts/osx/ta
@@ -1,5 +1,5 @@
#!/bin/bash
-# Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+# Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
if [[ "$1" == "-h" || "$1" == "--help" ]]; then
echo "ta - shell script to launch Textadept.app"
diff --git a/scripts/osx/textadept_osx b/scripts/osx/textadept_osx
index 76edf9e8..38c9942b 100755
--- a/scripts/osx/textadept_osx
+++ b/scripts/osx/textadept_osx
@@ -1,5 +1,5 @@
#!/bin/sh
-# Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+# Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
# Set the GTK environment variables of resources within Textadept.app.
bundle=$(cd "$(dirname "$0")/../../" && pwd)
diff --git a/src/Makefile b/src/Makefile
index 6a15c5b8..07997828 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -1,4 +1,4 @@
-# Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+# Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
CC = gcc
CFLAGS = -Os
diff --git a/src/termkey.patch b/src/termkey.patch
index df5073dc..673126c2 100644
--- a/src/termkey.patch
+++ b/src/termkey.patch
@@ -2,7 +2,7 @@ diff -r 49c8684413c0 driver-win32-pdcurses.c
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/driver-win32-pdcurses.c Tue Dec 23 13:31:50 2014 -0500
@@ -0,0 +1,108 @@
-+// Copyright 2014-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
++// Copyright 2014-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
+
+#include "termkey.h"
+#include "termkey-internal.h"
diff --git a/src/textadept.c b/src/textadept.c
index 71912710..d08b4955 100644
--- a/src/textadept.c
+++ b/src/textadept.c
@@ -1,4 +1,4 @@
-// Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+// Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
#if __linux__
#define _XOPEN_SOURCE 500 // for readlink from unistd.h
diff --git a/themes/dark.lua b/themes/dark.lua
index 211a631e..477435c8 100644
--- a/themes/dark.lua
+++ b/themes/dark.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+-- Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Dark theme for Textadept.
-- Contributions by Ana Balan.
diff --git a/themes/light.lua b/themes/light.lua
index 3d985132..71f2746b 100644
--- a/themes/light.lua
+++ b/themes/light.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+-- Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Light theme for Textadept.
-- Contributions by Ana Balan.
diff --git a/themes/term.lua b/themes/term.lua
index c62a8690..bba23c81 100644
--- a/themes/term.lua
+++ b/themes/term.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2018 Mitchell mitchell.att.foicica.com. See LICENSE.
+-- Copyright 2007-2019 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Terminal theme for Textadept.
-- Contributions by Ana Balan.