]> git.lyx.org Git - features.git/commitdiff
Backport fix for bug #7360. Patch from Nemah, posted to bug report.
authorRichard Heck <rgheck@comcast.net>
Mon, 5 Sep 2011 19:29:49 +0000 (19:29 +0000)
committerRichard Heck <rgheck@comcast.net>
Mon, 5 Sep 2011 19:29:49 +0000 (19:29 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_2_0_X@39601 a592a061-630c-0410-9148-cb99ea01b6c8

src/LaTeX.cpp
status.20x

index f1d7b1a779e4c05598268ac6ab36034f07ed5418..04a86f795a95cd6de5b36fc98e4e3cd03a22662d 100644 (file)
@@ -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
index 222fb0e86a2974b7d88708be54e81487561cbf15..d06d28f2df7c99f6e1ba6a96b73b9f6c5dd5bd09 100644 (file)
@@ -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