John's patches (except for [PATCH] fix quit etc. from inset about which I

cannot comment).


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2652 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2001-09-02 11:46:00 +00:00
parent 0556ecac11
commit 3641ebaf66
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2001-08-31 John Levon <moz@compsoc.man.ac.uk>
* lyxrc.C: add help for view_dvi_paper_option, default to safe
case.
2001-09-02 Dekel Tsur <dekelts@tau.ac.il>
* iterators.[Ch]: New files. Provide paragraph iterators.

View File

@ -179,7 +179,7 @@ void LyXRC::setDefaults() {
tempdir_path = "/tmp";
use_tempdir = true;
ps_command = "gs";
view_dvi_paper_option = "-paper";
view_dvi_paper_option = "";
default_papersize = BufferParams::PAPER_USLETTER;
custom_export_format = "ps";
chktex_command = "chktex -n1 -n3 -n6 -n9 -n22 -n25 -n30 -n38";
@ -1031,7 +1031,7 @@ void LyXRC::output(ostream & os) const
if (view_dvi_paper_option
!= system_lyxrc.view_dvi_paper_option) {
os << "# Options used to specify paper size to the\n"
<< "# view_dvi_command\n"
<< "# view_dvi_command (e.g. -paper)\n"
<< "\\view_dvi_paper_option \""
<< view_dvi_paper_option << "\"\n";
}
@ -1805,6 +1805,7 @@ string const LyXRC::getDescription(LyXRCTags tag)
break;
case RC_VIEWDVI_PAPEROPTION:
str = N_("Specify the paper command to DVI viewer (leave empty or use \"-paper\")");
break;
case RC_DEFAULT_PAPERSIZE: