Baruch Even <[EMAIL PROTECTED]> writes:
| > Where is this check?
|
| It is in the function isDviClean(), being called from higher up.
It was this place higher up that I was looking for.
| > I _know_ that "Update DVI" works as expected, what do you do when it
| > does not work?
|
| I usually simply do "view postscript" or "view dvi". I do not pass "update
| dvi" nor do I collect any money.
|
| Seriously now, I almost always just press Alt-F W in order to do "view
| postscript", if I changed anything in the file lyx will redo the file,
| latex it, and dvips it and then show it with gv. All this is skipped if I
| change nothing and it will only dvips the file and show it. So if I
| changed an external file, it will not show up.
|
| > What version of lyx are you using btw?
|
| 1.1.5cvs, pretty fond of it, mostly stable, and has all the hebrew support
| from Dekel, with quick fixes even :-) (Thanks Dekel!)
Hey, I can do quick fixes too.
Try this:
diff -u -u -r1.85 lyx_cb.C
--- src/lyx_cb.C 2000/05/30 19:31:10 1.85
+++ src/lyx_cb.C 2000/05/31 23:49:33
@@ -409,10 +409,10 @@
if (lyxrc.use_tempdir || (IsDirWriteable(path) < 1)) {
path = buffer->tmppath;
}
- if (!buffer->isDviClean()) {
+ //if (!buffer->isDviClean()) {
Path p(path);
ret = MenuRunLaTeX(buffer);
- }
+ //}
return ret;
}
Lgb