summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-06-22 13:13:10 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-06-22 13:13:10 +0000
commit923c10ecddac6baecf6db444cee68c380367592c (patch)
treec5f44d6077f55f73018c42da41823a9ec5d92738
parent369129e10cecda27554b9987d819367bcfcf3353 (diff)
downloadmandoc-923c10ecddac6baecf6db444cee68c380367592c.tar.gz
mandoc-923c10ecddac6baecf6db444cee68c380367592c.tar.zst
mandoc-923c10ecddac6baecf6db444cee68c380367592c.zip
Lint fixes.VERSION_1_7_20
Version up.
-rw-r--r--Makefile4
-rw-r--r--mdoc_term.c5
-rw-r--r--term.c5
3 files changed, 8 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 0391a50c..e6ed0c78 100644
--- a/Makefile
+++ b/Makefile
@@ -9,8 +9,8 @@ INSTALL_DATA = install -m 0444
INSTALL_LIB = install -m 0644
INSTALL_MAN = $(INSTALL_DATA)
-VERSION = 1.7.19
-VDATE = 17 June 2009
+VERSION = 1.7.20
+VDATE = 22 June 2009
VFLAGS = -DVERSION=\"$(VERSION)\"
CFLAGS += -W -Wall -Wstrict-prototypes -Wno-unused-parameter -g
diff --git a/mdoc_term.c b/mdoc_term.c
index 0cacdd29..3e3219f8 100644
--- a/mdoc_term.c
+++ b/mdoc_term.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_term.c,v 1.17 2009/06/22 12:38:07 kristaps Exp $ */
+/* $Id: mdoc_term.c,v 1.18 2009/06/22 13:13:10 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -1309,7 +1309,8 @@ termp_lb_pre(DECL_ARGS)
const char *lb;
assert(node->child && MDOC_TEXT == node->child->type);
- if ((lb = mdoc_a2lib(node->child->string))) {
+ lb = mdoc_a2lib(node->child->string);
+ if (lb) {
term_word(p, lb);
return(0);
}
diff --git a/term.c b/term.c
index 4ab338d9..ef221086 100644
--- a/term.c
+++ b/term.c
@@ -1,4 +1,4 @@
-/* $Id: term.c,v 1.82 2009/06/22 12:38:07 kristaps Exp $ */
+/* $Id: term.c,v 1.83 2009/06/22 13:13:10 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -413,7 +413,8 @@ term_nescape(struct termp *p, const char *word, size_t len)
size_t sz;
int i;
- if ((rhs = term_a2ascii(p->symtab, word, len, &sz)))
+ rhs = term_a2ascii(p->symtab, word, len, &sz);
+ if (rhs)
for (i = 0; i < (int)sz; i++)
term_encodea(p, rhs[i]);
}