aboutsummaryrefslogtreecommitdiff
path: root/core/ext
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2009-01-01 09:40:21 -0500
committermitchell <70453897+667e-11@users.noreply.github.com>2009-01-01 09:40:21 -0500
commitf8d164035d1c33343e875dff368e7ab3bf9884d8 (patch)
tree0b2ec610cfa8e4370b6f2fea63f7186cfe48c953 /core/ext
parent2eaa5fc28bcfab10bb824faff740f3acab354158 (diff)
downloadtextadept-f8d164035d1c33343e875dff368e7ab3bf9884d8.tar.gz
textadept-f8d164035d1c33343e875dff368e7ab3bf9884d8.zip
Updated copyright dates for 2009.
Diffstat (limited to 'core/ext')
-rw-r--r--core/ext/command_entry.lua2
-rw-r--r--core/ext/find.lua2
-rw-r--r--core/ext/key_commands.lua2
-rw-r--r--core/ext/key_commands_mac.lua2
-rw-r--r--core/ext/key_commands_std.lua2
-rw-r--r--core/ext/keys.lua2
-rw-r--r--core/ext/menu.lua2
-rw-r--r--core/ext/mime_types.lua2
-rw-r--r--core/ext/pm.lua2
-rw-r--r--core/ext/pm/buffer_browser.lua2
-rw-r--r--core/ext/pm/ctags_browser.lua2
-rw-r--r--core/ext/pm/file_browser.lua2
-rw-r--r--core/ext/pm/find_browser.lua2
-rw-r--r--core/ext/pm/macro_browser.lua2
-rw-r--r--core/ext/pm/modules_browser.lua8
-rw-r--r--core/ext/pm/project_browser.lua2
16 files changed, 19 insertions, 19 deletions
diff --git a/core/ext/command_entry.lua b/core/ext/command_entry.lua
index 8c796610..f1bd1820 100644
--- a/core/ext/command_entry.lua
+++ b/core/ext/command_entry.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2008 Mitchell mitchell<att>caladbolg.net. See LICENSE.
+-- Copyright 2007-2009 Mitchell mitchell<att>caladbolg.net. See LICENSE.
local ce = textadept.command_entry
diff --git a/core/ext/find.lua b/core/ext/find.lua
index 6a687296..ca3c28f0 100644
--- a/core/ext/find.lua
+++ b/core/ext/find.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2008 Mitchell mitchell<att>caladbolg.net. See LICENSE.
+-- Copyright 2007-2009 Mitchell mitchell<att>caladbolg.net. See LICENSE.
local find = textadept.find
diff --git a/core/ext/key_commands.lua b/core/ext/key_commands.lua
index 3bbbe1a2..8985a1fa 100644
--- a/core/ext/key_commands.lua
+++ b/core/ext/key_commands.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2008 Mitchell mitchell<att>caladbolg.net. See LICENSE.
+-- Copyright 2007-2009 Mitchell mitchell<att>caladbolg.net. See LICENSE.
---
-- Defines the key commands used by the Textadept key command manager.
diff --git a/core/ext/key_commands_mac.lua b/core/ext/key_commands_mac.lua
index 6abd9e0f..d4e0ed31 100644
--- a/core/ext/key_commands_mac.lua
+++ b/core/ext/key_commands_mac.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2008 Mitchell mitchell<att>caladbolg.net. See LICENSE.
+-- Copyright 2007-2009 Mitchell mitchell<att>caladbolg.net. See LICENSE.
---
-- Defines the key commands used by the Textadept key command manager.
diff --git a/core/ext/key_commands_std.lua b/core/ext/key_commands_std.lua
index e924609a..35ae9ce0 100644
--- a/core/ext/key_commands_std.lua
+++ b/core/ext/key_commands_std.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2008 Mitchell mitchell<att>caladbolg.net. See LICENSE.
+-- Copyright 2007-2009 Mitchell mitchell<att>caladbolg.net. See LICENSE.
---
-- Defines the key commands used by the Textadept key command manager.
diff --git a/core/ext/keys.lua b/core/ext/keys.lua
index 1c68fd6f..fd460233 100644
--- a/core/ext/keys.lua
+++ b/core/ext/keys.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2008 Mitchell mitchell<att>caladbolg.net. See LICENSE.
+-- Copyright 2007-2009 Mitchell mitchell<att>caladbolg.net. See LICENSE.
---
-- Manages key commands in Textadept.
diff --git a/core/ext/menu.lua b/core/ext/menu.lua
index 6bdcb9b4..2fecc91e 100644
--- a/core/ext/menu.lua
+++ b/core/ext/menu.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2008 Mitchell mitchell<att>caladbolg.net. See LICENSE.
+-- Copyright 2007-2009 Mitchell mitchell<att>caladbolg.net. See LICENSE.
---
-- Provides dynamic menus for Textadept.
diff --git a/core/ext/mime_types.lua b/core/ext/mime_types.lua
index f54eb602..2ad0a3ed 100644
--- a/core/ext/mime_types.lua
+++ b/core/ext/mime_types.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2008 Mitchell mitchell<att>caladbolg.net. See LICENSE.
+-- Copyright 2007-2009 Mitchell mitchell<att>caladbolg.net. See LICENSE.
--- Handles file-specific settings (based on file extension).
module('textadept.mime_types', package.seeall)
diff --git a/core/ext/pm.lua b/core/ext/pm.lua
index c1638738..05b0e16a 100644
--- a/core/ext/pm.lua
+++ b/core/ext/pm.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2008 Mitchell mitchell<att>caladbolg.net. See LICENSE.
+-- Copyright 2007-2009 Mitchell mitchell<att>caladbolg.net. See LICENSE.
-- Usage:
-- Interactive search:
diff --git a/core/ext/pm/buffer_browser.lua b/core/ext/pm/buffer_browser.lua
index 6c292200..c2a1b787 100644
--- a/core/ext/pm/buffer_browser.lua
+++ b/core/ext/pm/buffer_browser.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2008 Mitchell mitchell<att>caladbolg.net. See LICENSE.
+-- Copyright 2007-2009 Mitchell mitchell<att>caladbolg.net. See LICENSE.
---
-- Buffer browser for the Textadept project manager.
diff --git a/core/ext/pm/ctags_browser.lua b/core/ext/pm/ctags_browser.lua
index 61becef8..b5495008 100644
--- a/core/ext/pm/ctags_browser.lua
+++ b/core/ext/pm/ctags_browser.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2008 Mitchell mitchell<att>caladbolg.net. See LICENSE.
+-- Copyright 2007-2009 Mitchell mitchell<att>caladbolg.net. See LICENSE.
---
-- CTags Browser for the Textadept project manager.
diff --git a/core/ext/pm/file_browser.lua b/core/ext/pm/file_browser.lua
index d2dec609..5878b067 100644
--- a/core/ext/pm/file_browser.lua
+++ b/core/ext/pm/file_browser.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2008 Mitchell mitchell<att>caladbolg.net. See LICENSE.
+-- Copyright 2007-2009 Mitchell mitchell<att>caladbolg.net. See LICENSE.
---
-- File browser for the Textadept project manager.
diff --git a/core/ext/pm/find_browser.lua b/core/ext/pm/find_browser.lua
index bf2796b4..1c4df96a 100644
--- a/core/ext/pm/find_browser.lua
+++ b/core/ext/pm/find_browser.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2008 Mitchell mitchell<att>caladbolg.net. See LICENSE.
+-- Copyright 2007-2009 Mitchell mitchell<att>caladbolg.net. See LICENSE.
---
-- Find in files browser for the Textadept project manager.
diff --git a/core/ext/pm/macro_browser.lua b/core/ext/pm/macro_browser.lua
index 952613cf..0dc58894 100644
--- a/core/ext/pm/macro_browser.lua
+++ b/core/ext/pm/macro_browser.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2008 Mitchell mitchell<att>caladbolg.net. See LICENSE.
+-- Copyright 2007-2009 Mitchell mitchell<att>caladbolg.net. See LICENSE.
---
-- Macro browser for the Textadept project manager.
diff --git a/core/ext/pm/modules_browser.lua b/core/ext/pm/modules_browser.lua
index e5a8ba11..fc8b79e2 100644
--- a/core/ext/pm/modules_browser.lua
+++ b/core/ext/pm/modules_browser.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2008 Mitchell mitchell<att>caladbolg.net. See LICENSE.
+-- Copyright 2007-2009 Mitchell mitchell<att>caladbolg.net. See LICENSE.
---
-- Modules browser for the Textadept project manager.
@@ -9,7 +9,7 @@ local lfs = require 'lfs'
local os = require 'os'
local INIT = [[
--- Copyright 2007-2008 Mitchell mitchell<att>caladbolg.net. See LICENSE.
+-- Copyright 2007-2009 Mitchell mitchell<att>caladbolg.net. See LICENSE.
---
-- The $1 module.
@@ -41,7 +41,7 @@ end
]]
local SNIPPETS = [[
--- Copyright 2007-2008 Mitchell mitchell<att>caladbolg.net. See LICENSE.
+-- Copyright 2007-2009 Mitchell mitchell<att>caladbolg.net. See LICENSE.
---
-- Snippets for the $1 module.
@@ -55,7 +55,7 @@ end
]]
local COMMANDS = [[
--- Copyright 2007-2008 Mitchell mitchell<att>caladbolg.net. See LICENSE.
+-- Copyright 2007-2009 Mitchell mitchell<att>caladbolg.net. See LICENSE.
---
-- Commands for the $1 module.
diff --git a/core/ext/pm/project_browser.lua b/core/ext/pm/project_browser.lua
index 0b47a3b2..8d147369 100644
--- a/core/ext/pm/project_browser.lua
+++ b/core/ext/pm/project_browser.lua
@@ -1,4 +1,4 @@
--- Copyright 2007-2008 Mitchell mitchell<att>caladbolg.net. See LICENSE.
+-- Copyright 2007-2009 Mitchell mitchell<att>caladbolg.net. See LICENSE.
---
-- Browser template for the Textadept project manager.