aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/term.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-04-04 21:14:12 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-04-04 21:14:12 +0000
commit8c18014ee57d5d616135fbcc75405a526348eaae (patch)
tree5a962423163850164180d6ba91b0aa86914ac011 /term.c
parent75ff3dcd060b39effac51b376168209408464a87 (diff)
downloadmandoc-8c18014ee57d5d616135fbcc75405a526348eaae.tar.gz
mandoc-8c18014ee57d5d616135fbcc75405a526348eaae.tar.zst
mandoc-8c18014ee57d5d616135fbcc75405a526348eaae.zip
Remove an unused variable (caught in lint-check)
Diffstat (limited to 'term.c')
-rw-r--r--term.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/term.c b/term.c
index 32b04e9f..b0ddd1ed 100644
--- a/term.c
+++ b/term.c
@@ -1,4 +1,4 @@
-/* $Id: term.c,v 1.182 2011/03/22 14:05:45 kristaps Exp $ */
+/* $Id: term.c,v 1.183 2011/04/04 21:14:12 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2010, 2011 Ingo Schwarze <schwarze@openbsd.org>
@@ -456,12 +456,10 @@ term_fontpop(struct termp *p)
void
term_word(struct termp *p, const char *word)
{
- const char *sv, *seq;
+ const char *seq;
size_t ssz;
enum roffdeco deco;
- sv = word;
-
if ( ! (TERMP_NOSPACE & p->flags)) {
if ( ! (TERMP_KEEP & p->flags)) {
if (TERMP_PREKEEP & p->flags)