+ * src/LaTeX.C (run): If no file has been changed, check if the
+ output dvi/pdf file exists. If not, run (pdf)latex once.
Why is this needed? (You use it to get the dvi file generated even if
we are really setup to making pdf files, I'd like us to find a better
solution than this, that does not involve modifing the latex
generation algoritm.)
And why did you remove my "// 0"? (that is item zero)
RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/LyXAction.C,v
retrieving revision 1.53
diff -u -p -r1.53 LyXAction.C
--- src/LyXAction.C 2000/08/23 15:18:18 1.53
+++ src/LyXAction.C 2000/08/25 10:18:54
@@ -149,6 +149,10 @@ void LyXAction::init()
N_("Switch to an open document"), ReadOnly },
{ LFUN_READ_ONLY_TOGGLE, "buffer-toggle-read-only",
N_("Toggle read-only"), ReadOnly },
+#ifdef NEW_EXPORT
+ { LFUN_UPDATE, "buffer-update", N_("Upadte"), ReadOnly },
+ { LFUN_PREVIEW, "buffer-view", N_("View") , ReadOnly },
+#else
{ LFUN_RUNLATEX, "buffer-typeset", N_("Update DVI"),
ReadOnly },
Some typo (Upadte).
Apart from the LaTeX chagnes it looks ok for me.
Lgb