aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/term.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-05-14 17:54:42 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-05-14 17:54:42 +0000
commit46b6fb73529e79de5452e9d25e26a7c8b83bd79f (patch)
tree9fdb49fd81c23696e74be71a6af9c0ad9db52d88 /term.h
parente3ef897e17cf74a686ec213e362a869d4a9b77f0 (diff)
downloadmandoc-46b6fb73529e79de5452e9d25e26a7c8b83bd79f.tar.gz
mandoc-46b6fb73529e79de5452e9d25e26a7c8b83bd79f.tar.zst
mandoc-46b6fb73529e79de5452e9d25e26a7c8b83bd79f.zip
Make character engine (-Tascii, -Tpdf, -Tps) ready for Unicode: make buffer
consist of type "int". This will take more work (especially in encode and friends), but this is a strong start. This commit also consists of some harmless lint fixes.
Diffstat (limited to 'term.h')
-rw-r--r--term.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/term.h b/term.h
index c1c9c457..f2b3db3d 100644
--- a/term.h
+++ b/term.h
@@ -1,4 +1,4 @@
-/* $Id: term.h,v 1.80 2011/04/29 22:18:12 kristaps Exp $ */
+/* $Id: term.h,v 1.81 2011/05/14 17:54:42 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -103,7 +103,7 @@ struct termp {
#define TERMP_ANPREC (1 << 13) /* See termp_an_pre(). */
#define TERMP_KEEP (1 << 14) /* Keep words together. */
#define TERMP_PREKEEP (1 << 15) /* ...starting with the next one. */
- char *buf; /* Output buffer. */
+ int *buf; /* Output buffer. */
enum termenc enc; /* Type of encoding. */
struct mchars *symtab; /* Encoded-symbol table. */
enum termfont fontl; /* Last font set. */
@@ -111,12 +111,12 @@ struct termp {
int fonti; /* Index of font stack. */
term_margin headf; /* invoked to print head */
term_margin footf; /* invoked to print foot */
- void (*letter)(struct termp *, char);
+ void (*letter)(struct termp *, int);
void (*begin)(struct termp *);
void (*end)(struct termp *);
void (*endline)(struct termp *);
void (*advance)(struct termp *, size_t);
- size_t (*width)(const struct termp *, char);
+ size_t (*width)(const struct termp *, int);
double (*hspan)(const struct termp *,
const struct roffsu *);
const void *argf; /* arg for headf/footf */