summaryrefslogtreecommitdiff
path: root/charspace
diff options
context:
space:
mode:
Diffstat (limited to 'charspace')
-rw-r--r--charspace/GNUmakefile4
-rw-r--r--charspace/char.c4
-rw-r--r--charspace/char.h4
-rw-r--r--charspace/cmi.h4
-rw-r--r--charspace/cmi.y6
-rw-r--r--charspace/input-cmi.c4
-rw-r--r--charspace/input-cmi.h4
-rw-r--r--charspace/kern.c4
-rw-r--r--charspace/kern.h4
-rw-r--r--charspace/main.c4
-rw-r--r--charspace/main.h4
-rw-r--r--charspace/old-output.c4
-rw-r--r--charspace/output.c4
-rw-r--r--charspace/output.h4
-rw-r--r--charspace/realstrval.h4
-rw-r--r--charspace/symtab.c4
-rw-r--r--charspace/symtab.h4
-rw-r--r--charspace/version.c17
18 files changed, 52 insertions, 35 deletions
diff --git a/charspace/GNUmakefile b/charspace/GNUmakefile
index 1fbff67..b7a4584 100644
--- a/charspace/GNUmakefile
+++ b/charspace/GNUmakefile
@@ -1,10 +1,10 @@
# Makefile for character spacing program.
#
-# Copyright (C) 1992 Free Software Foundation, Inc.
+# Copyright (C) 1992, 2011 Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2, or (at your option)
+# the Free Software Foundation; either version 3, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful,
diff --git a/charspace/char.c b/charspace/char.c
index 695eb40..0d53a54 100644
--- a/charspace/char.c
+++ b/charspace/char.c
@@ -1,10 +1,10 @@
/* char.c: functions to muck with `char_type's.
-Copyright (C) 1992 Free Software Foundation, Inc.
+Copyright (C) 1992, 2011 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
+the Free Software Foundation; either version 3, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
diff --git a/charspace/char.h b/charspace/char.h
index 541ca5f..a424a4c 100644
--- a/charspace/char.h
+++ b/charspace/char.h
@@ -1,10 +1,10 @@
/* char.h: the definition of `char_type'.
-Copyright (C) 1992 Free Software Foundation, Inc.
+Copyright (C) 1992, 2011 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
+the Free Software Foundation; either version 3, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
diff --git a/charspace/cmi.h b/charspace/cmi.h
index 34c8613..5ce36fd 100644
--- a/charspace/cmi.h
+++ b/charspace/cmi.h
@@ -1,4 +1,4 @@
-/* A Bison parser, made by GNU Bison 2.2. */
+/* A Bison parser, made by GNU Bison 2.3. */
/* Skeleton interface for Bison's Yacc-like parsers in C
@@ -72,7 +72,7 @@ typedef union YYSTYPE
symval_type symval;
string strval;
}
-/* Line 1528 of yacc.c. */
+/* Line 1489 of yacc.c. */
#line 77 "cmi.h"
YYSTYPE;
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
diff --git a/charspace/cmi.y b/charspace/cmi.y
index 22cbc7a..3281188 100644
--- a/charspace/cmi.y
+++ b/charspace/cmi.y
@@ -2,11 +2,11 @@
/* cmi.y: parse a character metric information file, entering what we
find into the symbol table.
-Copyright (C) 1992 Free Software Foundation, Inc.
+Copyright (C) 1992, 2011 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
+the Free Software Foundation; either version 3, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
@@ -32,7 +32,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
static void yyerror (string);
static int yylex (void);
%}
-
+
%union
{
real realval;
diff --git a/charspace/input-cmi.c b/charspace/input-cmi.c
index ffba878..25da5ec 100644
--- a/charspace/input-cmi.c
+++ b/charspace/input-cmi.c
@@ -1,10 +1,10 @@
/* input-cmi.c: routines to control the CMI parsing.
-Copyright (C) 1992 Free Software Foundation, Inc.
+Copyright (C) 1992, 2011 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
+the Free Software Foundation; either version 3, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
diff --git a/charspace/input-cmi.h b/charspace/input-cmi.h
index 469c6b0..67b46da 100644
--- a/charspace/input-cmi.h
+++ b/charspace/input-cmi.h
@@ -1,10 +1,10 @@
/* input-cmi.h: declarations for top-level CMI reading.
-Copyright (C) 1992, 93 Free Software Foundation, Inc.
+Copyright (C) 1992, 1993, 2011 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
+the Free Software Foundation; either version 3, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
diff --git a/charspace/kern.c b/charspace/kern.c
index 80a2ea9..099fa3b 100644
--- a/charspace/kern.c
+++ b/charspace/kern.c
@@ -1,10 +1,10 @@
/* kern.c: kerns in the CMI file.
-Copyright (C) 1992 Free Software Foundation, Inc.
+Copyright (C) 1992, 2011 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
+the Free Software Foundation; either version 3, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
diff --git a/charspace/kern.h b/charspace/kern.h
index 6df17ca..6efa093 100644
--- a/charspace/kern.h
+++ b/charspace/kern.h
@@ -1,10 +1,10 @@
/* kern.h: handle kerns in the CMI file.
-Copyright (C) 1992 Free Software Foundation, Inc.
+Copyright (C) 1992, 2011 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
+the Free Software Foundation; either version 3, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
diff --git a/charspace/main.c b/charspace/main.c
index ec3cd78..8ca559d 100644
--- a/charspace/main.c
+++ b/charspace/main.c
@@ -1,10 +1,10 @@
/* charspace -- find intercharacter spacing based on user information.
-Copyright (C) 1992, 2004 Free Software Foundation, Inc.
+Copyright (C) 1992, 2004, 2011 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
+the Free Software Foundation; either version 3, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
diff --git a/charspace/main.h b/charspace/main.h
index 431f3e3..c38b333 100644
--- a/charspace/main.h
+++ b/charspace/main.h
@@ -1,10 +1,10 @@
/* main.h: global variable declarations.
-Copyright (C) 1992 Free Software Foundation, Inc.
+Copyright (C) 1992, 2011 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
+the Free Software Foundation; either version 3, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
diff --git a/charspace/old-output.c b/charspace/old-output.c
index 9d9f7a7..be6c4ce 100644
--- a/charspace/old-output.c
+++ b/charspace/old-output.c
@@ -1,10 +1,10 @@
/* output.c: output
-Copyright (C) 1992 Free Software Foundation, Inc.
+Copyright (C) 1992, 2011 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
+the Free Software Foundation; either version 3, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
diff --git a/charspace/output.c b/charspace/output.c
index 82afe97..5083ffe 100644
--- a/charspace/output.c
+++ b/charspace/output.c
@@ -1,10 +1,10 @@
/* output.c: use the `char_type's' information to output a new font.
-Copyright (C) 1992 Free Software Foundation, Inc.
+Copyright (C) 1992, 2011 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
+the Free Software Foundation; either version 3, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
diff --git a/charspace/output.h b/charspace/output.h
index f10c7dc..52fb5fd 100644
--- a/charspace/output.h
+++ b/charspace/output.h
@@ -1,10 +1,10 @@
/* output.h: declarations for outputting the newly spaced font.
-Copyright (C) 1992 Free Software Foundation, Inc.
+Copyright (C) 1992, 2011 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
+the Free Software Foundation; either version 3, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
diff --git a/charspace/realstrval.h b/charspace/realstrval.h
index 6a1b7f9..b6dfef6 100644
--- a/charspace/realstrval.h
+++ b/charspace/realstrval.h
@@ -1,10 +1,10 @@
/* realstrval.h: types common to `char.h' and `symtab.h'.
-Copyright (C) 1992 Free Software Foundation, Inc.
+Copyright (C) 1992, 2011 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
+the Free Software Foundation; either version 3, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
diff --git a/charspace/symtab.c b/charspace/symtab.c
index 1004b5a..9e45217 100644
--- a/charspace/symtab.c
+++ b/charspace/symtab.c
@@ -6,11 +6,11 @@
pixels. That's what the rest of the program expects. (Unfortunately
there's no way to check this at the time of definition.)
-Copyright (C) 1992 Free Software Foundation, Inc.
+Copyright (C) 1992, 2011 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
+the Free Software Foundation; either version 3, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
diff --git a/charspace/symtab.h b/charspace/symtab.h
index e792ca8..00bb392 100644
--- a/charspace/symtab.h
+++ b/charspace/symtab.h
@@ -1,10 +1,10 @@
/* symtab.h: declarations for our symbol table manipulations.
-Copyright (C) 1992, 93 Free Software Foundation, Inc.
+Copyright (C) 1992, 1993, 2011 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
+the Free Software Foundation; either version 3, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
diff --git a/charspace/version.c b/charspace/version.c
index 998c94c..a1fdeaa 100644
--- a/charspace/version.c
+++ b/charspace/version.c
@@ -1 +1,18 @@
+/*version.c
+
+Copyright (C) 2011 Free Software Foundation, Inc.
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program. If not, see <http://www.gnu.org/licenses/>. */
+
char *version_string = "charspace version REPLACE-WITH-VERSION";