summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-05-08 17:27:56 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-05-08 17:27:56 +0000
commit1e89ac6e7a231dfabc8916e1c38b4f32057bfc58 (patch)
treed894ec133517a830b4612d5ed0ab05a768d4afc9 /src
parent1d6597cff7cbd90c220553f168ff5eb8f8a3e648 (diff)
downloadttf2f-1e89ac6e7a231dfabc8916e1c38b4f32057bfc58.tar.gz
ttf2f-1e89ac6e7a231dfabc8916e1c38b4f32057bfc58.tar.bz2
We're not producing base encoding files, so don't use .NotDef
svn path=/trunk/tools/ttf2f/; revision=7449
Diffstat (limited to 'src')
-rw-r--r--src/encoding.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/encoding.c b/src/encoding.c
index 2d56fee..2b65da3 100644
--- a/src/encoding.c
+++ b/src/encoding.c
@@ -63,7 +63,7 @@ ttf2f_result encoding_write(const char *savein, const char *name,
} else if (g->code != (unsigned int) -1) {
fprintf(output, "/uni%4.4X\n", g->code);
} else {
- fprintf(output, "/.NotDef\n");
+ fprintf(output, "/.notdef\n");
}
}
}