aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--gtk/PlatGTK.cxx2
-rw-r--r--gtk/ScintillaGTK.cxx2
-rw-r--r--include/Platform.h2
-rw-r--r--include/PropSet.h2
-rw-r--r--include/SciLexer.h2
-rw-r--r--include/Scintilla.h2
-rw-r--r--include/Scintilla.iface3
-rw-r--r--src/AutoComplete.cxx2
-rw-r--r--src/AutoComplete.h2
-rw-r--r--src/Document.cxx2
-rw-r--r--src/Document.h2
-rw-r--r--src/Editor.cxx2
-rw-r--r--src/Editor.h2
-rw-r--r--src/KeyWords.cxx2
-rw-r--r--src/LexCPP.cxx2
-rw-r--r--src/LexHTML.cxx2
-rw-r--r--src/LexPython.cxx2
-rw-r--r--src/LexSQL.cxx2
-rw-r--r--src/PropSet.cxx2
-rw-r--r--src/ScintillaBase.cxx2
-rw-r--r--src/ScintillaBase.h2
-rw-r--r--win32/PlatWin.cxx2
-rw-r--r--win32/ScintillaWin.cxx2
-rw-r--r--win32/makefile2
-rw-r--r--win32/scintilla.mak2
25 files changed, 27 insertions, 24 deletions
diff --git a/gtk/PlatGTK.cxx b/gtk/PlatGTK.cxx
index 7ea5fe61a..bc2c11c3b 100644
--- a/gtk/PlatGTK.cxx
+++ b/gtk/PlatGTK.cxx
@@ -1,6 +1,6 @@
// Scintilla source code edit control
// PlatGTK.cxx - implementation of platform facilities on GTK+/Linux
-// Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org>
+// Copyright 1998-2002 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.
#include <string.h>
diff --git a/gtk/ScintillaGTK.cxx b/gtk/ScintillaGTK.cxx
index a51d511c9..d791e19fb 100644
--- a/gtk/ScintillaGTK.cxx
+++ b/gtk/ScintillaGTK.cxx
@@ -1,6 +1,6 @@
// Scintilla source code edit control
// ScintillaGTK.cxx - GTK+ specific subclass of ScintillaBase
-// Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org>
+// Copyright 1998-2002 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.
#include <stdlib.h>
diff --git a/include/Platform.h b/include/Platform.h
index 235123a55..2d1e6e179 100644
--- a/include/Platform.h
+++ b/include/Platform.h
@@ -3,7 +3,7 @@
** Interface to platform facilities. Also includes some basic utilities.
** Implemented in PlatGTK.cxx for GTK+/Linux, PlatWin.cxx for Windows, and PlatWX.cxx for wxWindows.
**/
-// Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org>
+// Copyright 1998-2002 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.
#ifndef PLATFORM_H
diff --git a/include/PropSet.h b/include/PropSet.h
index bef06d231..259634981 100644
--- a/include/PropSet.h
+++ b/include/PropSet.h
@@ -2,7 +2,7 @@
/** @file PropSet.h
** A Java style properties file module.
**/
-// Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org>
+// Copyright 1998-2002 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.
#ifndef PROPSET_H
diff --git a/include/SciLexer.h b/include/SciLexer.h
index 4efb4d92f..622840995 100644
--- a/include/SciLexer.h
+++ b/include/SciLexer.h
@@ -2,7 +2,7 @@
/** @file SciLexer.h
** Interface to the added lexer functions in the SciLexer version of the edit control.
**/
-// Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org>
+// Copyright 1998-2002 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.
// Most of this file is automatically generated from the Scintilla.iface interface definition
diff --git a/include/Scintilla.h b/include/Scintilla.h
index 543edeaf1..f40f1684e 100644
--- a/include/Scintilla.h
+++ b/include/Scintilla.h
@@ -2,7 +2,7 @@
/** @file Scintilla.h
** Interface to the edit control.
**/
-// Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org>
+// Copyright 1998-2002 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.
// Most of this file is automatically generated from the Scintilla.iface interface definition
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index a74f69075..2f0efa9be 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -2,6 +2,9 @@
## This file defines the interface to Scintilla
+## Copyright 2000-2002 by Neil Hodgson <neilh@scintilla.org>
+## The License.txt file describes the conditions under which this software may be distributed.
+
## A line starting with ## is a pure comment and should be stripped by readers.
## A line starting with #! is for future shbang use
## A line starting with # followed by a space is a documentation comment and refers
diff --git a/src/AutoComplete.cxx b/src/AutoComplete.cxx
index f67d42b0b..48aaee38a 100644
--- a/src/AutoComplete.cxx
+++ b/src/AutoComplete.cxx
@@ -2,7 +2,7 @@
/** @file AutoComplete.cxx
** Defines the auto completion list box.
**/
-// Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org>
+// Copyright 1998-2002 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.
#include <stdlib.h>
diff --git a/src/AutoComplete.h b/src/AutoComplete.h
index 80dc95dc0..622a5666e 100644
--- a/src/AutoComplete.h
+++ b/src/AutoComplete.h
@@ -2,7 +2,7 @@
/** @file AutoComplete.h
** Defines the auto completion list box.
**/
-// Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org>
+// Copyright 1998-2002 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.
#ifndef AUTOCOMPLETE_H
diff --git a/src/Document.cxx b/src/Document.cxx
index b7acc8610..4bc7c05a2 100644
--- a/src/Document.cxx
+++ b/src/Document.cxx
@@ -2,7 +2,7 @@
/** @file Document.cxx
** Text document that handles notifications, DBCS, styling, words and end of line.
**/
-// Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org>
+// Copyright 1998-2002 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.
#include <stdlib.h>
diff --git a/src/Document.h b/src/Document.h
index 51cfa9d53..0d90d4c00 100644
--- a/src/Document.h
+++ b/src/Document.h
@@ -2,7 +2,7 @@
/** @file Document.h
** Text document that handles notifications, DBCS, styling, words and end of line.
**/
-// Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org>
+// Copyright 1998-2002 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.
#ifndef DOCUMENT_H
diff --git a/src/Editor.cxx b/src/Editor.cxx
index bdc322645..dd5e1dd99 100644
--- a/src/Editor.cxx
+++ b/src/Editor.cxx
@@ -2,7 +2,7 @@
/** @file Editor.cxx
** Main code for the edit control.
**/
-// Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org>
+// Copyright 1998-2002 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.
#include <stdlib.h>
diff --git a/src/Editor.h b/src/Editor.h
index 16dae7eac..9bd308ce1 100644
--- a/src/Editor.h
+++ b/src/Editor.h
@@ -2,7 +2,7 @@
/** @file Editor.h
** Defines the main editor class.
**/
-// Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org>
+// Copyright 1998-2002 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.
#ifndef EDITOR_H
diff --git a/src/KeyWords.cxx b/src/KeyWords.cxx
index 7b0ead33f..df7f44d4b 100644
--- a/src/KeyWords.cxx
+++ b/src/KeyWords.cxx
@@ -2,7 +2,7 @@
/** @file KeyWords.cxx
** Colourise for particular languages.
**/
-// Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org>
+// Copyright 1998-2002 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.
#include <stdlib.h>
diff --git a/src/LexCPP.cxx b/src/LexCPP.cxx
index 74ac81513..cc7827973 100644
--- a/src/LexCPP.cxx
+++ b/src/LexCPP.cxx
@@ -2,7 +2,7 @@
/** @file LexCPP.cxx
** Lexer for C++, C, Java, and Javascript.
**/
-// Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org>
+// Copyright 1998-2002 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.
#include <stdlib.h>
diff --git a/src/LexHTML.cxx b/src/LexHTML.cxx
index 59ef1ecb4..b2dfce7d6 100644
--- a/src/LexHTML.cxx
+++ b/src/LexHTML.cxx
@@ -2,7 +2,7 @@
/** @file LexHTML.cxx
** Lexer for HTML.
**/
-// Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org>
+// Copyright 1998-2002 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.
#include <stdlib.h>
diff --git a/src/LexPython.cxx b/src/LexPython.cxx
index 3bfbb4a82..234bdf718 100644
--- a/src/LexPython.cxx
+++ b/src/LexPython.cxx
@@ -2,7 +2,7 @@
/** @file LexPython.cxx
** Lexer for Python.
**/
-// Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org>
+// Copyright 1998-2002 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.
#include <stdlib.h>
diff --git a/src/LexSQL.cxx b/src/LexSQL.cxx
index 5cb5b9de2..5af86d9f4 100644
--- a/src/LexSQL.cxx
+++ b/src/LexSQL.cxx
@@ -2,7 +2,7 @@
/** @file LexSQL.cxx
** Lexer for SQL.
**/
-// Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org>
+// Copyright 1998-2002 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.
#include <stdlib.h>
diff --git a/src/PropSet.cxx b/src/PropSet.cxx
index 0ddbb59c2..45a1c702e 100644
--- a/src/PropSet.cxx
+++ b/src/PropSet.cxx
@@ -2,7 +2,7 @@
/** @file PropSet.cxx
** A Java style properties file module.
**/
-// Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org>
+// Copyright 1998-2002 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.
// Maintain a dictionary of properties
diff --git a/src/ScintillaBase.cxx b/src/ScintillaBase.cxx
index 4a9b87670..9e98091c0 100644
--- a/src/ScintillaBase.cxx
+++ b/src/ScintillaBase.cxx
@@ -2,7 +2,7 @@
/** @file ScintillaBase.cxx
** An enhanced subclass of Editor with calltips, autocomplete and context menu.
**/
-// Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org>
+// Copyright 1998-2002 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.
#include <stdlib.h>
diff --git a/src/ScintillaBase.h b/src/ScintillaBase.h
index 0c1f6fee9..913144309 100644
--- a/src/ScintillaBase.h
+++ b/src/ScintillaBase.h
@@ -2,7 +2,7 @@
/** @file ScintillaBase.h
** Defines an enhanced subclass of Editor with calltips, autocomplete and context menu.
**/
-// Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org>
+// Copyright 1998-2002 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.
#ifndef SCINTILLABASE_H
diff --git a/win32/PlatWin.cxx b/win32/PlatWin.cxx
index bfec57ea4..1a1028e04 100644
--- a/win32/PlatWin.cxx
+++ b/win32/PlatWin.cxx
@@ -2,7 +2,7 @@
/** @file PlatWin.cxx
** Implementation of platform facilities on Windows.
**/
-// Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org>
+// Copyright 1998-2002 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.
#include <stdlib.h>
diff --git a/win32/ScintillaWin.cxx b/win32/ScintillaWin.cxx
index 42d835cfb..c65600ab4 100644
--- a/win32/ScintillaWin.cxx
+++ b/win32/ScintillaWin.cxx
@@ -2,7 +2,7 @@
/** @file ScintillaWin.cxx
** Windows specific subclass of ScintillaBase.
**/
-// Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org>
+// Copyright 1998-2002 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.
#include <stdlib.h>
diff --git a/win32/makefile b/win32/makefile
index 679a866be..72c9ebca7 100644
--- a/win32/makefile
+++ b/win32/makefile
@@ -1,5 +1,5 @@
# Make file for Scintilla on Windows
-# Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org>
+# Copyright 1998-2002 by Neil Hodgson <neilh@scintilla.org>
# The License.txt file describes the conditions under which this software may be distributed.
# This makefile assumes the mingw32 version of GCC 2.95.3 is used and changes will
# be needed to use other compilers.
diff --git a/win32/scintilla.mak b/win32/scintilla.mak
index e50f62d75..806a834ef 100644
--- a/win32/scintilla.mak
+++ b/win32/scintilla.mak
@@ -1,5 +1,5 @@
# Make file for Scintilla on Windows Visual C++ and Borland C++ version
-# Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org>
+# Copyright 1998-2002 by Neil Hodgson <neilh@scintilla.org>
# The License.txt file describes the conditions under which this software may be distributed.
# This makefile is for using Visual C++ with nmake or Borland C++ with make depending on
# the setting of the VENDOR macro. If no VENDOR is defined n the command line then