Skip to content

Commit dcafa98

Browse files
committed
The great copyright update. Make sure all files have a copyleft and
that the years are up to date.
1 parent 1efb509 commit dcafa98

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+320
-33
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ ETAGS=`which etags || echo true`
4040
CFILES = bcmds.c bind.c cnames.c \
4141
comment.c commands.c cursor.c delete.c display.c \
4242
file.c funcs.c getarg.c getfname.c help.c \
43-
shell.c spell.c srch.c tags.c term.c \
43+
shell.c srch.c tags.c term.c \
4444
vars.c window.c varray.c z.c zgrep.c
4545

4646
LFILES = buff.c bfile.c bmsearch.c bsocket.c mark.c reg.c tinit.c calc.c dbg.c

bcmds.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* bcmds.c - buffer oriented commands
2-
* Copyright (C) 1988-2013 Sean MacLennan
2+
* Copyright (C) 1988-2016 Sean MacLennan
33
*
44
* This program is free software; you can redistribute it and/or modify it
55
* under the terms of the GNU General Public License as published by the

bfile.c

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
/* bfile.c - low level buffer file routines
2+
* Copyright (C) 1988-2016 Sean MacLennan <[email protected]>
3+
*
4+
* This program is free software: you can redistribute it and/or modify
5+
* it under the terms of the GNU General Public License as published by
6+
* the Free Software Foundation, either version 2 of the License, or
7+
* (at your option) any later version.
8+
*
9+
* This program is distributed in the hope that it will be useful,
10+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
* GNU General Public License for more details.
13+
*
14+
* You should have received a copy of the GNU General Public License
15+
* along with this project; see the file COPYING. If not, write to
16+
* the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17+
* Boston, MA 02111-1307, USA.
18+
*/
19+
120
#include <stdio.h>
221
#include <stdlib.h>
322
#include <string.h>

bind.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* bind.c - Zedit key bindings
2-
* Copyright (C) 1988-2013 Sean MacLennan
2+
* Copyright (C) 1988-2016 Sean MacLennan
33
*
44
* This program is free software; you can redistribute it and/or modify it
55
* under the terms of the GNU General Public License as published by the

bmsearch.c

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
/* bmsearch.c - Boyer-Moore search functions
2+
* Copyright (C) 2015 Sean MacLennan <[email protected]>
3+
*
4+
* This program is free software: you can redistribute it and/or modify
5+
* it under the terms of the GNU General Public License as published by
6+
* the Free Software Foundation, either version 2 of the License, or
7+
* (at your option) any later version.
8+
*
9+
* This program is distributed in the hope that it will be useful,
10+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
* GNU General Public License for more details.
13+
*
14+
* You should have received a copy of the GNU General Public License
15+
* along with this project; see the file COPYING. If not, write to
16+
* the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17+
* Boston, MA 02111-1307, USA.
18+
*/
19+
120
#include <stdio.h>
221
#include <stdlib.h>
322
#include <string.h>

bsocket.c

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
/* bsocket.c - buffer socket functions
2+
* Copyright (C) 1988-2016 Sean MacLennan <[email protected]>
3+
*
4+
* This program is free software: you can redistribute it and/or modify
5+
* it under the terms of the GNU General Public License as published by
6+
* the Free Software Foundation, either version 2 of the License, or
7+
* (at your option) any later version.
8+
*
9+
* This program is distributed in the hope that it will be useful,
10+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
* GNU General Public License for more details.
13+
*
14+
* You should have received a copy of the GNU General Public License
15+
* along with this project; see the file COPYING. If not, write to
16+
* the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17+
* Boston, MA 02111-1307, USA.
18+
*/
19+
120
#include <stdio.h>
221
#include <stdlib.h>
322
#include <string.h>

buff.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* buff.c - low level buffer commands for Zedit
2-
* Copyright (C) 1988-2013 Sean MacLennan
2+
* Copyright (C) 1988-2016 Sean MacLennan
33
*
44
* This program is free software; you can redistribute it and/or modify it
55
* under the terms of the GNU General Public License as published by the

buff.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* buff.h - low level buffer defines
2-
* Copyright (C) 1988-2013 Sean MacLennan
2+
* Copyright (C) 1988-2016 Sean MacLennan
33
*
44
* This program is free software; you can redistribute it and/or modify it
55
* under the terms of the GNU General Public License as published by the

calc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* calc.c - simple calculator
2-
* Copyright (C) 1988-2013 Sean MacLennan
2+
* Copyright (C) 1988-2015 Sean MacLennan
33
*
44
* This program is free software; you can redistribute it and/or modify it
55
* under the terms of the GNU General Public License as published by the

calc.h

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
/* calc.h - calc.c include file
2+
* Copyright (C) 1988-2015 Sean MacLennan <[email protected]>
3+
*
4+
* This program is free software: you can redistribute it and/or modify
5+
* it under the terms of the GNU General Public License as published by
6+
* the Free Software Foundation, either version 2 of the License, or
7+
* (at your option) any later version.
8+
*
9+
* This program is distributed in the hope that it will be useful,
10+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
* GNU General Public License for more details.
13+
*
14+
* You should have received a copy of the GNU General Public License
15+
* along with this project; see the file COPYING. If not, write to
16+
* the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17+
* Boston, MA 02111-1307, USA.
18+
*/
19+
120
#ifndef _calc_h_
221
#define _calc_h_
322

0 commit comments

Comments
 (0)