mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Backport fix for bug #7360. Patch from Nemah, posted to bug report.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_2_0_X@39601 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
08f6667a60
commit
7fe931ea93
@ -1046,6 +1046,10 @@ void LaTeX::deplog(DepTable & head)
|
||||
continue;
|
||||
}
|
||||
|
||||
// FIXME UNICODE: We assume that the file names in the log
|
||||
// file are in the file system encoding.
|
||||
token = to_utf8(from_filesystem8bit(token));
|
||||
|
||||
// Sometimes, filenames are broken across lines.
|
||||
// We care for that and save suspicious lines.
|
||||
// Here we exclude some cases where we are sure
|
||||
@ -1075,10 +1079,6 @@ void LaTeX::deplog(DepTable & head)
|
||||
|
||||
smatch sub;
|
||||
|
||||
// FIXME UNICODE: We assume that the file names in the log
|
||||
// file are in the file system encoding.
|
||||
token = to_utf8(from_filesystem8bit(token));
|
||||
|
||||
// (1) "File: file.ext"
|
||||
if (regex_match(token, sub, reg1)) {
|
||||
// check for dot
|
||||
|
@ -47,6 +47,9 @@ What's new
|
||||
- Fix regression where parent macros were not displayed in a viewed child
|
||||
(bug 7593).
|
||||
|
||||
- Fix problem where updates to children were not seen on output of master
|
||||
(bug 7360).
|
||||
|
||||
|
||||
* USER INTERFACE
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user