mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-21 17:51:03 +00:00
tex2lyx: handle whitespace in table column declaration.
Fixes: #10804
(cherry picked from commit 247e1a223d
)
This commit is contained in:
parent
83c7e818f8
commit
20a63d2b55
@ -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':
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user