summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwlemb <wlemb>2003-12-05 10:26:45 +0000
committerwlemb <wlemb>2003-12-05 10:26:45 +0000
commit0c132242916f13129299fe6739b1be939a85d456 (patch)
tree322e449ff7ebe0011d1f377925c0cc9b07956e02
parent54a212aaf7523aa6c4fbc143d49d1f5f2e8b4c54 (diff)
downloadgroff-0c132242916f13129299fe6739b1be939a85d456.tar.gz
* LICENSE: New file.
-rw-r--r--ChangeLog10
-rw-r--r--LICENSE17
-rw-r--r--src/utils/afmtodit/afmtodit.pl16
3 files changed, 35 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 4c56be83..0eb99b77 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2003-12-04 Bernd Warken <bwarken@mayn.de>
+
+ * LICENSE: New file.
+
+2003-12-03 Werner LEMBERG <wl@gnu.org>
+
+ * src/utils/afmtodit/afmtodit.pl: Comment out code which handles
+ ligatures present in AFM files since groff currently only
+ understands some standard ligatures and nothing else.
+
2003-12-03 Jeff Conrad <jeff_conrad@msn.com>
* src/roff/groff/groff.cpp (main): Don't run the spooler if
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 00000000..d530072f
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,17 @@
+LICENSE
+
+The groff program is a free software project. All files of the groff
+source package are licensed under the GNU Public General License
+(GPL), the major GNU copyleft license.
+
+The file COPYING in the top directory of the groff source package
+contains a copy of the GPL that was downloaded from the GNU web site
+http://www.gnu.org/copyleft/gpl.txt at 1 dec 2003.
+
+All files of the groff source package are licensed under this version
+of the GPL. According to the GPL, you are also free to choose any
+later version of the GPL.
+
+The GPL names an address where you can get the actual version by
+normal post. Further information is found in the internet at
+http://www.gnu.org/copyleft.
diff --git a/src/utils/afmtodit/afmtodit.pl b/src/utils/afmtodit/afmtodit.pl
index c8346791..0a4d7070 100644
--- a/src/utils/afmtodit/afmtodit.pl
+++ b/src/utils/afmtodit/afmtodit.pl
@@ -6102,7 +6102,7 @@ while (<AFM>) {
$c = -1;
$wx = 0;
$n = "";
- %ligs = ();
+# %ligs = ();
$lly = 0;
$ury = 0;
$llx = 0;
@@ -6125,10 +6125,10 @@ while (<AFM>) {
$ury = $field[$i + 4];
$i += 5;
}
- elsif ($field[$i] eq "L") {
- $ligs{$field[$i + 2]} = $field[$i + 1];
- $i += 3;
- }
+# elsif ($field[$i] eq "L") {
+# $ligs{$field[$i + 2]} = $field[$i + 1];
+# $i += 3;
+# }
else {
while ($i <= $#field && $field[$i] ne ";") {
$i++;
@@ -6145,9 +6145,9 @@ while (<AFM>) {
$depth{$n} = -$lly;
$left_side_bearing{$n} = -$llx;
$right_side_bearing{$n} = $urx - $w;
- while (($lig, $glyph2) = each %ligs) {
- $ligatures{$lig} = $n . " " . $glyph2;
- }
+# while (($lig, $glyph2) = each %ligs) {
+# $ligatures{$lig} = $n . " " . $glyph2;
+# }
}
}
}