From 8fd901bc1f539615097d31d470405c64683c820f Mon Sep 17 00:00:00 2001 From: Kolan Sh Date: Mon, 27 Jun 2011 16:30:37 +0400 Subject: [PATCH] =?UTF-8?q?=D0=B4=D0=BE=D1=88=D0=BB=D0=B8=20=D0=B4=D0=BE?= =?UTF-8?q?=201312-=D0=B3=D0=BE=20=D1=81=D0=B8=D0=BC=D0=B2=D0=BE=D0=BB?= =?UTF-8?q?=D0=B0=20=C3=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- c/tex_parser/tex_table.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c/tex_parser/tex_table.c b/c/tex_parser/tex_table.c index 1eb9d4c..911cc5b 100644 --- a/c/tex_parser/tex_table.c +++ b/c/tex_parser/tex_table.c @@ -237,7 +237,7 @@ int parse_table(const char *table_source, size_t len, struct table_s *table, str } else if (c == '%') { where_stack[++tex_level] = IN_COMMENT; - } else if (isprint(c)) { + } else if (isgraph(c)) { } else { error->code = (int)i;