diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-08-07 20:57:33 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-08-07 20:57:33 +0000 |
commit | 556aafc9aef6fb2d86a1cc5928f39267b81bc0a8 (patch) | |
tree | 329ee68f9f7e22aa3865e64184bb12d15452e0ae /mdoc.c | |
parent | 75b5b6f467d4105ac3e51ff98ad5284835968682 (diff) | |
download | mandoc-556aafc9aef6fb2d86a1cc5928f39267b81bc0a8.tar.gz |
Clean out the isgraph() checks in mdoc.c and man.c. These code paths
were never taken since main.c begin skipping over unrecognisable
characters, so they were noops.
Diffstat (limited to 'mdoc.c')
-rw-r--r-- | mdoc.c | 13 |
1 files changed, 1 insertions, 12 deletions
@@ -22,7 +22,6 @@ #include <sys/types.h> #include <assert.h> -#include <ctype.h> #include <stdarg.h> #include <stdio.h> #include <stdlib.h> @@ -781,22 +780,12 @@ mdoc_pmacro(struct mdoc *m, int ln, char *buf, int offs) * copying when a tab, space, or eoln is encountered. */ - for (j = 0; j < 4; j++, i++) { + for (j = 0; j < 4; j++, i++) if ('\0' == (mac[j] = buf[i])) break; else if (' ' == buf[i] || '\t' == buf[i]) break; - /* Check for invalid characters. */ - /* TODO: remove me, already done in main.c. */ - - if (isgraph((u_char)buf[i])) - continue; - if ( ! mdoc_pmsg(m, ln, i, MANDOCERR_BADCHAR)) - return(0); - i--; - } - mac[j] = '\0'; if (j == 4 || j < 2) { |