aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+orbitalquark@users.noreply.github.com>2021-01-29 13:30:53 -0500
committerGravatar mitchell <70453897+orbitalquark@users.noreply.github.com>2021-01-29 13:30:53 -0500
commit9a1a6b5c2e0e6a9a5e8c4abeec3980203838e461 (patch)
treefb383b8116055b610bb959a28b7f7dd1c8cd5c26
parentd4f2685ce40ba4683a621a8b11ce391b4a0a9506 (diff)
Updated copyright information.
-rw-r--r--core/args.lua2
-rw-r--r--core/assert.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.lua2
-rw-r--r--core/ui.lua2
-rw-r--r--docs/_layouts/default.html2
-rw-r--r--docs/index.html2
-rw-r--r--docs/style.css2
-rw-r--r--init.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/history.lua2
-rw-r--r--modules/textadept/init.lua2
-rw-r--r--modules/textadept/keys.lua2
-rw-r--r--modules/textadept/macros.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
-rw-r--r--scripts/markdowndoc.lua2
-rwxr-xr-xscripts/osx/ta2
-rwxr-xr-xscripts/osx/textadept_osx2
-rw-r--r--src/Makefile2
-rw-r--r--src/textadept.c2
-rw-r--r--src/textadept.rc2
-rw-r--r--test/test.lua2
-rw-r--r--themes/dark.lua2
-rw-r--r--themes/light.lua2
-rw-r--r--themes/term.lua2
43 files changed, 45 insertions, 45 deletions
diff --git a/core/args.lua b/core/args.lua
index af605d36..0f805168 100644
--- a/core/args.lua
+++ b/core/args.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2020 Mitchell. See LICENSE.
+-- Copyright 2007-2021 Mitchell. See LICENSE.
local M = {}
diff --git a/core/assert.lua b/core/assert.lua
index 80e50a6e..c0e7f44c 100644
--- a/core/assert.lua
+++ b/core/assert.lua
@@ -1,4 +1,4 @@
--- Copyright 2020 Mitchell. See LICENSE.
+-- Copyright 2020-2021 Mitchell. See LICENSE.
--[[ This comment is for LuaDoc.
---
diff --git a/core/events.lua b/core/events.lua
index ddf1354c..c1a3aca0 100644
--- a/core/events.lua
+++ b/core/events.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2020 Mitchell. See LICENSE.
+-- Copyright 2007-2021 Mitchell. See LICENSE.
local M = {}
diff --git a/core/file_io.lua b/core/file_io.lua
index 2ff36344..6bd3692d 100644
--- a/core/file_io.lua
+++ b/core/file_io.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2020 Mitchell. See LICENSE.
+-- Copyright 2007-2021 Mitchell. See LICENSE.
--[[ This comment is for LuaDoc.
---
diff --git a/core/iface.lua b/core/iface.lua
index 26af477c..67f60b63 100644
--- a/core/iface.lua
+++ b/core/iface.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2020 Mitchell. See LICENSE.
+-- Copyright 2007-2021 Mitchell. See LICENSE.
local M = {}
diff --git a/core/init.lua b/core/init.lua
index d09f339a..7d6e30ec 100644
--- a/core/init.lua
+++ b/core/init.lua
@@ -1,7 +1,7 @@
--- Copyright 2007-2020 Mitchell. See LICENSE.
+-- Copyright 2007-2021 Mitchell. See LICENSE.
_RELEASE = 'Textadept 11.0'
-_COPYRIGHT = 'Copyright © 2007-2020 Mitchell. See LICENSE.\n' ..
+_COPYRIGHT = 'Copyright © 2007-2021 Mitchell. See LICENSE.\n' ..
'https://orbitalquark.github.io/textadept'
package.path = string.format('%s/core/?.lua;%s', _HOME, package.path)
diff --git a/core/keys.lua b/core/keys.lua
index dc09db03..e48aa8d3 100644
--- a/core/keys.lua
+++ b/core/keys.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2020 Mitchell. See LICENSE.
+-- Copyright 2007-2021 Mitchell. See LICENSE.
local M = {}
diff --git a/core/lfs_ext.lua b/core/lfs_ext.lua
index 842c1737..090de173 100644
--- a/core/lfs_ext.lua
+++ b/core/lfs_ext.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2020 Mitchell. See LICENSE.
+-- Copyright 2007-2021 Mitchell. See LICENSE.
--[[ This comment is for LuaDoc.
---
diff --git a/core/locale.lua b/core/locale.lua
index 3a661fae..7e115854 100644
--- a/core/locale.lua
+++ b/core/locale.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2020 Mitchell. See LICENSE.
+-- Copyright 2007-2021 Mitchell. See LICENSE.
local M = {}
diff --git a/core/ui.lua b/core/ui.lua
index 7c493b15..497cadc4 100644
--- a/core/ui.lua
+++ b/core/ui.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2020 Mitchell. See LICENSE.
+-- Copyright 2007-2021 Mitchell. See LICENSE.
local ui = ui
diff --git a/docs/_layouts/default.html b/docs/_layouts/default.html
index abcdc522..7e7ee597 100644
--- a/docs/_layouts/default.html
+++ b/docs/_layouts/default.html
@@ -27,7 +27,7 @@
{{ content }}
</div>
<div id="footer">
- <p style="text-align:center;"> &copy; 2007-2020 <a href="https://github.com/orbitalquark">Mitchell</a></p>
+ <p style="text-align:center;"> &copy; 2007-2021 <a href="https://github.com/orbitalquark">Mitchell</a></p>
</div>
</div>
</body>
diff --git a/docs/index.html b/docs/index.html
index eec8b542..86b6a222 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -373,7 +373,7 @@
<div id="footer">
<p style="text-align:center;">
- &copy; 2007-2020 <a href="https://github.com/orbitalquark">Mitchell</a>
+ &copy; 2007-2021 <a href="https://github.com/orbitalquark">Mitchell</a>
</p>
</div>
</div>
diff --git a/docs/style.css b/docs/style.css
index f48cad2b..59ad34e9 100644
--- a/docs/style.css
+++ b/docs/style.css
@@ -1,4 +1,4 @@
-/* Copyright 2012-2020 Mitchell. See LICENSE. */
+/* Copyright 2012-2021 Mitchell. See LICENSE. */
* {
border: 0 solid #a6a6a6;
diff --git a/init.lua b/init.lua
index 3fdfcd21..92fc6e12 100644
--- a/init.lua
+++ b/init.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2020 Mitchell. See LICENSE.
+-- Copyright 2007-2021 Mitchell. See LICENSE.
package.path = table.concat({
_USERHOME .. '/modules/?.lua', _USERHOME .. '/modules/?/init.lua',
diff --git a/modules/ansi_c/init.lua b/modules/ansi_c/init.lua
index af6955a6..05579c5c 100644
--- a/modules/ansi_c/init.lua
+++ b/modules/ansi_c/init.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2020 Mitchell. See LICENSE.
+-- Copyright 2007-2021 Mitchell. See LICENSE.
local M = {}
diff --git a/modules/lua/init.lua b/modules/lua/init.lua
index d3b0c9ae..d327266d 100644
--- a/modules/lua/init.lua
+++ b/modules/lua/init.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2020 Mitchell. See LICENSE.
+-- Copyright 2007-2021 Mitchell. See LICENSE.
local M = {}
diff --git a/modules/lua/tadoc.lua b/modules/lua/tadoc.lua
index bb631913..f4ba1b93 100644
--- a/modules/lua/tadoc.lua
+++ b/modules/lua/tadoc.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2020 Mitchell. See LICENSE.
+-- Copyright 2007-2021 Mitchell. 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 de6f7470..b790fd09 100644
--- a/modules/textadept/bookmarks.lua
+++ b/modules/textadept/bookmarks.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2020 Mitchell. See LICENSE.
+-- Copyright 2007-2021 Mitchell. See LICENSE.
local M = {}
diff --git a/modules/textadept/command_entry.lua b/modules/textadept/command_entry.lua
index 2093001c..14e66a07 100644
--- a/modules/textadept/command_entry.lua
+++ b/modules/textadept/command_entry.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2020 Mitchell. See LICENSE.
+-- Copyright 2007-2021 Mitchell. 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 0d9ff0f5..4c0929c3 100644
--- a/modules/textadept/editing.lua
+++ b/modules/textadept/editing.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2020 Mitchell. See LICENSE.
+-- Copyright 2007-2021 Mitchell. See LICENSE.
local M = {}
diff --git a/modules/textadept/file_types.lua b/modules/textadept/file_types.lua
index 73ff28ea..ea9a5d4d 100644
--- a/modules/textadept/file_types.lua
+++ b/modules/textadept/file_types.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2020 Mitchell. See LICENSE.
+-- Copyright 2007-2021 Mitchell. See LICENSE.
local M = {}
diff --git a/modules/textadept/find.lua b/modules/textadept/find.lua
index 0e84d48f..72c806fa 100644
--- a/modules/textadept/find.lua
+++ b/modules/textadept/find.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2020 Mitchell. See LICENSE.
+-- Copyright 2007-2021 Mitchell. See LICENSE.
local M = ui.find
diff --git a/modules/textadept/history.lua b/modules/textadept/history.lua
index db23c4a4..0c6113e4 100644
--- a/modules/textadept/history.lua
+++ b/modules/textadept/history.lua
@@ -1,4 +1,4 @@
--- Copyright 2019-2020 Mitchell. See LICENSE.
+-- Copyright 2019-2021 Mitchell. See LICENSE.
local M = {}
diff --git a/modules/textadept/init.lua b/modules/textadept/init.lua
index 0195ae31..6ba747a0 100644
--- a/modules/textadept/init.lua
+++ b/modules/textadept/init.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2020 Mitchell. See LICENSE.
+-- Copyright 2007-2021 Mitchell. See LICENSE.
local M = {}
textadept = M -- forward declaration
diff --git a/modules/textadept/keys.lua b/modules/textadept/keys.lua
index 0e5e69d5..5cae6988 100644
--- a/modules/textadept/keys.lua
+++ b/modules/textadept/keys.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2020 Mitchell. See LICENSE.
+-- Copyright 2007-2021 Mitchell. See LICENSE.
local M = {}
diff --git a/modules/textadept/macros.lua b/modules/textadept/macros.lua
index d1a3758f..90729335 100644
--- a/modules/textadept/macros.lua
+++ b/modules/textadept/macros.lua
@@ -1,4 +1,4 @@
--- Copyright 2018-2020 Mitchell. See LICENSE.
+-- Copyright 2018-2021 Mitchell. See LICENSE.
--[[ This comment is for LuaDoc.
---
diff --git a/modules/textadept/menu.lua b/modules/textadept/menu.lua
index b3ce1015..cd56cf73 100644
--- a/modules/textadept/menu.lua
+++ b/modules/textadept/menu.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2020 Mitchell. See LICENSE.
+-- Copyright 2007-2021 Mitchell. See LICENSE.
-- Contributions from Robert Gieseke.
local M = {}
diff --git a/modules/textadept/run.lua b/modules/textadept/run.lua
index f9f462f5..c44aa71e 100644
--- a/modules/textadept/run.lua
+++ b/modules/textadept/run.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2020 Mitchell. See LICENSE.
+-- Copyright 2007-2021 Mitchell. See LICENSE.
local M = {}
diff --git a/modules/textadept/session.lua b/modules/textadept/session.lua
index efadb243..96f6e969 100644
--- a/modules/textadept/session.lua
+++ b/modules/textadept/session.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2020 Mitchell. See LICENSE.
+-- Copyright 2007-2021 Mitchell. See LICENSE.
local M = {}
diff --git a/modules/textadept/snippets.lua b/modules/textadept/snippets.lua
index a8b9dde5..6604e606 100644
--- a/modules/textadept/snippets.lua
+++ b/modules/textadept/snippets.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2020 Mitchell. See LICENSE.
+-- Copyright 2007-2021 Mitchell. See LICENSE.
local M = {}
diff --git a/scripts/gen_iface.lua b/scripts/gen_iface.lua
index 486713f0..87844b47 100755
--- a/scripts/gen_iface.lua
+++ b/scripts/gen_iface.lua
@@ -1,5 +1,5 @@
#!/usr/bin/lua
--- Copyright 2007-2020 Mitchell. See LICENSE.
+-- Copyright 2007-2021 Mitchell. See LICENSE.
local constants, functions, properties, events = {}, {}, {}, {}
local const_patt = '^val ([%w_]+)=([-%dx%x]+)'
@@ -179,7 +179,7 @@ table.sort(events)
local f = io.open('../core/iface.lua', 'wb')
f:write([=[
--- Copyright 2007-2020 Mitchell. See LICENSE.
+-- Copyright 2007-2021 Mitchell. See LICENSE.
local M = {}
diff --git a/scripts/gen_lua_c_api_tags.lua b/scripts/gen_lua_c_api_tags.lua
index d7b397bf..1830652c 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-2020 Mitchell. See LICENSE.
+-- Copyright 2007-2021 Mitchell. 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 4fd29984..ab6cee55 100755
--- a/scripts/gen_plist.lua
+++ b/scripts/gen_plist.lua
@@ -1,5 +1,5 @@
#!/usr/bin/lua
--- Copyright 2007-2020 Mitchell. See LICENSE.
+-- Copyright 2007-2021 Mitchell. See LICENSE.
-- This script generates the "Info.plist" file for the macOS App bundle.
diff --git a/scripts/markdowndoc.lua b/scripts/markdowndoc.lua
index eb2d9a2a..036f5082 100644
--- a/scripts/markdowndoc.lua
+++ b/scripts/markdowndoc.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2020 Mitchell. See LICENSE.
+-- Copyright 2007-2021 Mitchell. See LICENSE.
-- Markdown doclet for Luadoc.
-- @usage luadoc -doclet path/to/markdowndoc [file(s)] > api.md
diff --git a/scripts/osx/ta b/scripts/osx/ta
index e1cb96fb..af2c205d 100755
--- a/scripts/osx/ta
+++ b/scripts/osx/ta
@@ -1,5 +1,5 @@
#!/bin/bash
-# Copyright 2007-2020 Mitchell. See LICENSE.
+# Copyright 2007-2021 Mitchell. 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 d1b24104..e5cfc662 100755
--- a/scripts/osx/textadept_osx
+++ b/scripts/osx/textadept_osx
@@ -1,5 +1,5 @@
#!/bin/sh
-# Copyright 2007-2020 Mitchell. See LICENSE.
+# Copyright 2007-2021 Mitchell. 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 0652a7ad..655a9745 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -1,4 +1,4 @@
-# Copyright 2007-2020 Mitchell. See LICENSE.
+# Copyright 2007-2021 Mitchell. See LICENSE.
CC = gcc
CFLAGS = -Os
diff --git a/src/textadept.c b/src/textadept.c
index 6873cc72..ece5273e 100644
--- a/src/textadept.c
+++ b/src/textadept.c
@@ -1,4 +1,4 @@
-// Copyright 2007-2020 Mitchell. See LICENSE.
+// Copyright 2007-2021 Mitchell. See LICENSE.
#if __linux__
#define _XOPEN_SOURCE 500 // for readlink from unistd.h
diff --git a/src/textadept.rc b/src/textadept.rc
index 4c659c08..f64caeea 100644
--- a/src/textadept.rc
+++ b/src/textadept.rc
@@ -19,7 +19,7 @@ BEGIN
VALUE "FileDescription", "textadept\0"
VALUE "FileVersion", "11.0\0"
VALUE "InternalName", "textadept\0"
- VALUE "LegalCopyright", "Copyright 2006-2020 by Mitchell\0"
+ VALUE "LegalCopyright", "Copyright 2006-2021 by Mitchell\0"
VALUE "OriginalFilename", "textadept.exe\0"
VALUE "ProductName", "textadept\0"
VALUE "ProductVersion", "11.0\0"
diff --git a/test/test.lua b/test/test.lua
index b95167c7..6b143dc3 100644
--- a/test/test.lua
+++ b/test/test.lua
@@ -1,4 +1,4 @@
--- Copyright 2020 Mitchell. See LICENSE.
+-- Copyright 2020-2021 Mitchell. See LICENSE.
local _tostring = tostring
-- Overloads tostring() to print more user-friendly output for `assert_equal()`.
diff --git a/themes/dark.lua b/themes/dark.lua
index 902e447f..0cc92dd1 100644
--- a/themes/dark.lua
+++ b/themes/dark.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2020 Mitchell. See LICENSE.
+-- Copyright 2007-2021 Mitchell. See LICENSE.
-- Dark theme for Textadept.
-- Contributions by Ana Balan.
diff --git a/themes/light.lua b/themes/light.lua
index eea1fb51..f1ad15d0 100644
--- a/themes/light.lua
+++ b/themes/light.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2020 Mitchell. See LICENSE.
+-- Copyright 2007-2021 Mitchell. See LICENSE.
-- Light theme for Textadept.
-- Contributions by Ana Balan.
diff --git a/themes/term.lua b/themes/term.lua
index 4e46ba31..8e24dfe0 100644
--- a/themes/term.lua
+++ b/themes/term.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2020 Mitchell. See LICENSE.
+-- Copyright 2007-2021 Mitchell. See LICENSE.
-- Terminal theme for Textadept.
-- Contributions by Ana Balan.