diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-04-04 21:14:12 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-04-04 21:14:12 +0000 |
commit | afd528276adbd0ac60177c73cadb642860cfcb7a (patch) | |
tree | 2977c6f709059fcca2b372144408e730791517bc /term.c | |
parent | 37570dc2b66d83a9fddcc731b09ddcdbeb64ce37 (diff) | |
download | mandoc-afd528276adbd0ac60177c73cadb642860cfcb7a.tar.gz |
Remove an unused variable (caught in lint-check)
Diffstat (limited to 'term.c')
-rw-r--r-- | term.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -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) |