tex2lyx: handle whitespace in table column declaration.

Fixes: #10804
This commit is contained in:
Juergen Spitzmueller 2018-03-09 14:18:03 +01:00
parent 3e7aebe966
commit 247e1a223d

View File

@ -322,6 +322,9 @@ void handle_colalign(Parser & p, vector<ColInfo> & colinfo,
} }
switch (t.character()) { switch (t.character()) {
case ' ':
// whitespace, ignore.
break;
case 'c': case 'c':
case 'l': case 'l':
case 'r': case 'r':