commit e9a2eb54d9fefd38574958c759e6d660085e7888 parent 8fcb8953c9a414e1e81c566c6dd9219014b418e2 Author: Christian Grothoff <christian@grothoff.org> Date: Sat, 12 Jun 2010 20:39:51 +0000 fix Diffstat:
| M | src/plugins/man_extractor.c | | | 3 | ++- |
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/plugins/man_extractor.c b/src/plugins/man_extractor.c @@ -116,7 +116,8 @@ EXTRACTOR_man_extract (const char *buf, &buf[pos], xlen)) || ((pos != 0) && (buf[pos - 1] != '\n')))) { - if (!isgraph (buf[pos]) && !isspace ((unsigned char) buf[pos])) + if (!isgraph ((unsigned char) buf[pos]) && + !isspace ((unsigned char) buf[pos])) return 0; pos++; }