tex2lyx: handle whitespace in table column declaration.

Fixes: #10804
(cherry picked from commit 247e1a223d)
This commit is contained in:
Juergen Spitzmueller 2018-03-09 14:18:03 +01:00
parent 83c7e818f8
commit 20a63d2b55
2 changed files with 5 additions and 0 deletions

View File

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

View File

@ -86,6 +86,8 @@ What's new
- Do not force default bibliography style if none is set (bug 10673).
- Handle whitespace in table column declaration (bug 10804).
* ADVANCED FIND AND REPLACE