summaryrefslogtreecommitdiffstats
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
commitc6f3075846c286cebabf731303d52660dd30afe8 (patch)
tree7fc3844d639c5d82fd378b30e3461c0fc7f04174
parent121fc3d4eff42f9400d7e165b83c068757148a7b (diff)
downloadmandoc-c6f3075846c286cebabf731303d52660dd30afe8.tar.gz
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.
-rw-r--r--chars.c3
-rw-r--r--mandoc.c2
-rw-r--r--term.c6
-rw-r--r--term.h6
-rw-r--r--term_ascii.c8
-rw-r--r--term_ps.c15
6 files changed, 22 insertions, 18 deletions
diff --git a/chars.c b/chars.c
index e0bbd35a..98d436fe 100644
--- a/chars.c
+++ b/chars.c
@@ -151,7 +151,8 @@ mchars_num2char(const char *p, size_t sz)
return('\0');
i = atoi(p);
- return(isprint(i) ? (char)i : '\0');
+ /* LINTED */
+ return(isprint(i) ? i : '\0');
}
/*
diff --git a/mandoc.c b/mandoc.c
index 08710780..4a9be8e7 100644
--- a/mandoc.c
+++ b/mandoc.c
@@ -704,7 +704,7 @@ mandoc_strntou(const char *p, size_t sz, int base)
return(-1);
memcpy(buf, p, sz);
- buf[sz] = '\0';
+ buf[(int)sz] = '\0';
errno = 0;
v = strtol(buf, &ep, base);
diff --git a/term.c b/term.c
index e42dcea7..758e7239 100644
--- a/term.c
+++ b/term.c
@@ -532,7 +532,7 @@ adjbuf(struct termp *p, size_t sz)
while (sz >= p->maxcols)
p->maxcols <<= 2;
- p->buf = mandoc_realloc(p->buf, p->maxcols);
+ p->buf = mandoc_realloc(p->buf, sizeof(int) * p->maxcols);
}
@@ -562,8 +562,8 @@ encode(struct termp *p, const char *word, size_t sz)
if (TERMFONT_NONE == (f = term_fonttop(p))) {
if (p->col + sz >= p->maxcols)
adjbuf(p, p->col + sz);
- memcpy(&p->buf[(int)p->col], word, sz);
- p->col += sz;
+ for (i = 0; i < (int)sz; i++)
+ p->buf[(int)p->col++] = word[i];
return;
}
diff --git a/term.h b/term.h
index 45392359..6f85a945 100644
--- a/term.h
+++ b/term.h
@@ -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 */
diff --git a/term_ascii.c b/term_ascii.c
index 81fc4beb..d3f29d02 100644
--- a/term_ascii.c
+++ b/term_ascii.c
@@ -33,12 +33,12 @@
static double ascii_hspan(const struct termp *,
const struct roffsu *);
-static size_t ascii_width(const struct termp *, char);
+static size_t ascii_width(const struct termp *, int);
static void ascii_advance(struct termp *, size_t);
static void ascii_begin(struct termp *);
static void ascii_end(struct termp *);
static void ascii_endline(struct termp *);
-static void ascii_letter(struct termp *, char);
+static void ascii_letter(struct termp *, int);
void *
@@ -84,7 +84,7 @@ ascii_alloc(char *outopts)
/* ARGSUSED */
static size_t
-ascii_width(const struct termp *p, char c)
+ascii_width(const struct termp *p, int c)
{
return(1);
@@ -101,7 +101,7 @@ ascii_free(void *arg)
/* ARGSUSED */
static void
-ascii_letter(struct termp *p, char c)
+ascii_letter(struct termp *p, int c)
{
/* LINTED */
diff --git a/term_ps.c b/term_ps.c
index f58db20f..d5d9221f 100644
--- a/term_ps.c
+++ b/term_ps.c
@@ -373,14 +373,14 @@ ps_growbuf(struct termp *p, size_t sz)
static double ps_hspan(const struct termp *,
const struct roffsu *);
-static size_t ps_width(const struct termp *, char);
+static size_t ps_width(const struct termp *, int);
static void ps_advance(struct termp *, size_t);
static void ps_begin(struct termp *);
static void ps_closepage(struct termp *);
static void ps_end(struct termp *);
static void ps_endline(struct termp *);
static void ps_fclose(struct termp *);
-static void ps_letter(struct termp *, char);
+static void ps_letter(struct termp *, int);
static void ps_pclose(struct termp *);
static void ps_pletter(struct termp *, int);
static void ps_printf(struct termp *, const char *, ...);
@@ -963,9 +963,12 @@ ps_fclose(struct termp *p)
static void
-ps_letter(struct termp *p, char c)
+ps_letter(struct termp *p, int arg)
{
- char cc;
+ char cc, c;
+
+ /* LINTED */
+ c = arg >= 128 || arg <= 0 ? '?' : arg;
/*
* State machine dictates whether to buffer the last character
@@ -1095,14 +1098,14 @@ ps_setfont(struct termp *p, enum termfont f)
/* ARGSUSED */
static size_t
-ps_width(const struct termp *p, char c)
+ps_width(const struct termp *p, int c)
{
if (c <= 32 || c - 32 >= MAXCHAR)
return((size_t)fonts[(int)TERMFONT_NONE].gly[0].wx);
c -= 32;
- return((size_t)fonts[(int)TERMFONT_NONE].gly[(int)c].wx);
+ return((size_t)fonts[(int)TERMFONT_NONE].gly[c].wx);
}