Skip to content

Commit

Permalink
Updated copyright information.
Browse files Browse the repository at this point in the history
  • Loading branch information
orbitalquark committed Sep 30, 2020
1 parent bd97fc0 commit 4810192
Show file tree
Hide file tree
Showing 106 changed files with 108 additions and 108 deletions.
2 changes: 1 addition & 1 deletion LexLPeg.cxx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
* Copyright 2006-2020 Mitchell. See LICENSE.
* Lua-powered dynamic language lexer for Scintillua.
* For documentation on writing lexers, see *lexers/lexer.lua*.
*/
Expand Down
2 changes: 1 addition & 1 deletion LexLPeg.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
* Copyright 2006-2020 Mitchell. See LICENSE.
* Include file for directly (statically) compiling Scintillua into a
* Scintilla-based application.
*/
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2010-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
# Copyright 2010-2020 Mitchell. See LICENSE.
# Make file for LexLPeg external lexer for Scintilla.

ifeq (win, $(MAKECMDGOALS))
Expand Down
2 changes: 1 addition & 1 deletion docs/_layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ <h1><img src="images/icon.png" alt="" /> Scintillua</h1>
{{ content }}
</div>
<div id="footer">
<p style="text-align:center;"> &copy; 2006-2020 <a href="https://foicica.com">Mitchell</a> mitchell.att.foicica.com</p>
<p style="text-align:center;"> &copy; 2006-2020 <a href="https://github.com/orbitalquark">Mitchell</a></p>
</div>
</div>
</body>
Expand Down
2 changes: 1 addition & 1 deletion docs/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ Fields:

---
<a id="lexer"></a>
## The `lexer` Module
## The `lexer` Lua Module
---

Lexes Scintilla documents and source code with Lua and LPeg.
Expand Down
4 changes: 2 additions & 2 deletions docs/markdowndoc.lua
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
-- Copyright 2007-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2007-2020 Mitchell. See LICENSE.

-- Markdown doclet for Luadoc.
-- @usage luadoc -doclet path/to/markdowndoc [file(s)] > api.md
local M = {}

local TOC = '1. [%s](%s)\n'
local MODULE = '<a id="%s"></a>\n## The `%s` Module\n'
local MODULE = '<a id="%s"></a>\n## The `%s` Lua Module\n'
local FIELD = '<a id="%s"></a>\n#### `%s` %s\n\n'
local FUNCTION = '<a id="%s"></a>\n#### `%s`(%s)\n\n'
local DESCRIPTION = '%s\n\n'
Expand Down
2 changes: 1 addition & 1 deletion docs/style.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright 2012-2020 Mitchell mitchell.att.foicica.com. */
/* Copyright 2012-2020 Mitchell. See LICENSE. */

* {
border: 0 solid #a6a6a6;
Expand Down
4 changes: 2 additions & 2 deletions docs/thanks.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,5 @@ Scintillua better and better over the years.
* Tymur Gubayev
* Wolfgang Seeberg

If I have left off your name, please contact me (mitchell.att.foicica.com). I am
very sorry about that.
If I have left off your name, please contact me (see README.md). I am very sorry
about that.
2 changes: 1 addition & 1 deletion lexers/actionscript.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- Actionscript LPeg lexer.

local lexer = require('lexer')
Expand Down
2 changes: 1 addition & 1 deletion lexers/ada.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- Ada LPeg lexer.

local lexer = require('lexer')
Expand Down
2 changes: 1 addition & 1 deletion lexers/ansi_c.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- C LPeg lexer.

local lexer = require('lexer')
Expand Down
2 changes: 1 addition & 1 deletion lexers/antlr.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- ANTLR LPeg lexer.

local lexer = require('lexer')
Expand Down
2 changes: 1 addition & 1 deletion lexers/apdl.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- APDL LPeg lexer.

local lexer = require('lexer')
Expand Down
2 changes: 1 addition & 1 deletion lexers/applescript.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- Applescript LPeg lexer.

local lexer = require('lexer')
Expand Down
2 changes: 1 addition & 1 deletion lexers/asm.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- NASM Assembly LPeg lexer.

local lexer = require('lexer')
Expand Down
2 changes: 1 addition & 1 deletion lexers/asp.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- ASP LPeg lexer.

local lexer = require('lexer')
Expand Down
2 changes: 1 addition & 1 deletion lexers/autoit.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- AutoIt LPeg lexer.
-- Contributed by Jeff Stone.

Expand Down
2 changes: 1 addition & 1 deletion lexers/awk.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- AWK LPeg lexer.
-- Modified by Wolfgang Seeberg 2012, 2013.

Expand Down
2 changes: 1 addition & 1 deletion lexers/bash.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- Shell LPeg lexer.

local lexer = require('lexer')
Expand Down
2 changes: 1 addition & 1 deletion lexers/batch.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- Batch LPeg lexer.

local lexer = require('lexer')
Expand Down
2 changes: 1 addition & 1 deletion lexers/bibtex.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- Bibtex LPeg lexer.

local lexer = require('lexer')
Expand Down
2 changes: 1 addition & 1 deletion lexers/boo.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- Boo LPeg lexer.

local lexer = require('lexer')
Expand Down
2 changes: 1 addition & 1 deletion lexers/caml.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- OCaml LPeg lexer.

local lexer = require('lexer')
Expand Down
2 changes: 1 addition & 1 deletion lexers/cmake.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- CMake LPeg lexer.

local lexer = require('lexer')
Expand Down
2 changes: 1 addition & 1 deletion lexers/coffeescript.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- CoffeeScript LPeg lexer.

local lexer = require('lexer')
Expand Down
2 changes: 1 addition & 1 deletion lexers/container.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- Container LPeg lexer.
-- This is SciTE's plain text lexer.

Expand Down
2 changes: 1 addition & 1 deletion lexers/cpp.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- C++ LPeg lexer.

local lexer = require('lexer')
Expand Down
2 changes: 1 addition & 1 deletion lexers/crystal.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- Copyright 2017 Michel Martens.
-- Crystal LPeg lexer (based on Ruby).

Expand Down
2 changes: 1 addition & 1 deletion lexers/csharp.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- C# LPeg lexer.

local lexer = require('lexer')
Expand Down
2 changes: 1 addition & 1 deletion lexers/css.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- CSS LPeg lexer.

local lexer = require('lexer')
Expand Down
2 changes: 1 addition & 1 deletion lexers/cuda.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- CUDA LPeg lexer.

local lexer = require('lexer')
Expand Down
2 changes: 1 addition & 1 deletion lexers/dart.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2013-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2013-2020 Mitchell. See LICENSE.
-- Dart LPeg lexer.
-- Written by Brian Schott (@Hackerpilot on Github).

Expand Down
2 changes: 1 addition & 1 deletion lexers/desktop.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- Desktop Entry LPeg lexer.

local lexer = require('lexer')
Expand Down
2 changes: 1 addition & 1 deletion lexers/diff.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- Diff LPeg lexer.

local lexer = require('lexer')
Expand Down
2 changes: 1 addition & 1 deletion lexers/django.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- Django LPeg lexer.

local lexer = require('lexer')
Expand Down
2 changes: 1 addition & 1 deletion lexers/dmd.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- D LPeg lexer.
-- Heavily modified by Brian Schott (@Hackerpilot on Github).

Expand Down
2 changes: 1 addition & 1 deletion lexers/eiffel.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- Eiffel LPeg lexer.

local lexer = require('lexer')
Expand Down
2 changes: 1 addition & 1 deletion lexers/elixir.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2015-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2015-2020 Mitchell. See LICENSE.
-- Contributed by Richard Philips.
-- Elixir LPeg lexer.

Expand Down
2 changes: 1 addition & 1 deletion lexers/erlang.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- Erlang LPeg lexer.

local lexer = require('lexer')
Expand Down
2 changes: 1 addition & 1 deletion lexers/fennel.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- Fennel LPeg lexer.
-- Contributed by Momohime Honda.

Expand Down
2 changes: 1 addition & 1 deletion lexers/forth.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- Forth LPeg lexer.
-- Contributions from Joseph Eib.

Expand Down
2 changes: 1 addition & 1 deletion lexers/fortran.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- Fortran LPeg lexer.

local lexer = require('lexer')
Expand Down
2 changes: 1 addition & 1 deletion lexers/fsharp.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- F# LPeg lexer.

local lexer = require('lexer')
Expand Down
2 changes: 1 addition & 1 deletion lexers/gap.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- Gap LPeg lexer.

local lexer = require('lexer')
Expand Down
2 changes: 1 addition & 1 deletion lexers/gettext.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- Gettext LPeg lexer.

local lexer = require('lexer')
Expand Down
2 changes: 1 addition & 1 deletion lexers/glsl.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- GLSL LPeg lexer.

local lexer = require('lexer')
Expand Down
2 changes: 1 addition & 1 deletion lexers/gnuplot.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- Gnuplot LPeg lexer.

local lexer = require('lexer')
Expand Down
2 changes: 1 addition & 1 deletion lexers/go.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- Go LPeg lexer.

local lexer = require('lexer')
Expand Down
2 changes: 1 addition & 1 deletion lexers/groovy.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- Groovy LPeg lexer.

local lexer = require('lexer')
Expand Down
2 changes: 1 addition & 1 deletion lexers/gtkrc.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- Gtkrc LPeg lexer.

local lexer = require('lexer')
Expand Down
2 changes: 1 addition & 1 deletion lexers/haskell.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- Haskell LPeg lexer.
-- Modified by Alex Suraci.

Expand Down
2 changes: 1 addition & 1 deletion lexers/html.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- HTML LPeg lexer.

local lexer = require('lexer')
Expand Down
2 changes: 1 addition & 1 deletion lexers/icon.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- LPeg lexer for the Icon programming language.
-- http://www.cs.arizona.edu/icon
-- Contributed by Carl Sturtivant.
Expand Down
2 changes: 1 addition & 1 deletion lexers/idl.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- IDL LPeg lexer.

local lexer = require('lexer')
Expand Down
2 changes: 1 addition & 1 deletion lexers/ini.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- Ini LPeg lexer.

local lexer = require('lexer')
Expand Down
2 changes: 1 addition & 1 deletion lexers/io_lang.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- Io LPeg lexer.

local lexer = require('lexer')
Expand Down
2 changes: 1 addition & 1 deletion lexers/java.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- Java LPeg lexer.
-- Modified by Brian Schott.

Expand Down
2 changes: 1 addition & 1 deletion lexers/javascript.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- JavaScript LPeg lexer.

local lexer = require('lexer')
Expand Down
2 changes: 1 addition & 1 deletion lexers/jq.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- jq 1.6 Lua lexer -- https://stedolan.github.io/jq/wiki
-- Anonymously contributed.

Expand Down
2 changes: 1 addition & 1 deletion lexers/jsp.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- JSP LPeg lexer.

local lexer = require('lexer')
Expand Down
2 changes: 1 addition & 1 deletion lexers/latex.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- Latex LPeg lexer.
-- Modified by Brian Schott.
-- Modified by Robert Gieseke.
Expand Down
2 changes: 1 addition & 1 deletion lexers/lexer.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.

local M = {}

Expand Down
2 changes: 1 addition & 1 deletion lexers/lisp.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Copyright 2006-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
-- Copyright 2006-2020 Mitchell. See LICENSE.
-- Lisp LPeg lexer.

local lexer = require('lexer')
Expand Down
Loading

0 comments on commit 4810192

Please sign in to comment.