diff --git a/ChangeLog b/ChangeLog index c39564bc9b..0dfc16f149 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2000-04-19 Jean-Marc Lasgouttes + + * src/mathed/formulamacro.C (Latex): remove CHECK comment, since + code seems to be alright (it is code changed by Dekel, and the + intent is indeed that all macros should be defined \protect'ed) + + * NEWS: a bit of reorganisation of the new user-visible features. + 2000-04-19 Juergen Vigna * src/insets/insettext.C (init): using a LyXCursor now for cursor diff --git a/INSTALL b/INSTALL index 515c9fcc54..969b86571a 100644 --- a/INSTALL +++ b/INSTALL @@ -58,11 +58,11 @@ libXpm can be found at: (or similar locations at other sunsites like sunsite.unc.edu) You will also need a recent C++ compiler, where recent means that the -compilers are close to C++ standard conforming. Compilers that are known -to compile LyX are gcc 2.8.1 and 2.95.x, the various versions of egcs -and Digital C++ version 6.1. Please tell us your experience with other -compilers. It is _not_ possible to compile LyX with gcc -2.7.x, and this is not likely to change in the future. +compilers are close to C++ standard conforming. Compilers that are +known to compile LyX are gcc 2.8.1 and 2.95.x, the various versions of +egcs and Digital C++ version 6.1. Please tell us your experience with +other compilers. It is _not_ possible to compile LyX with gcc 2.7.x, +and this is not likely to change in the future. Note that, contrary to LyX 1.0.x, LyX 1.1.x makes great use of C++ Standard Template Library (STL); this means that gcc users will have @@ -191,7 +191,7 @@ desperate cases: this flag is on for development versions only. o --enable-assertions that make the compilier generater run-time - code which checks that some variables have sane values. Opposite + code which checks that some variables have sane values. Opposite is --disable-assertions. By default, this flag is on for development versions only. diff --git a/NEWS b/NEWS index 47fd131905..38e926216f 100644 --- a/NEWS +++ b/NEWS @@ -13,28 +13,29 @@ User-visible changes: - Right-to-Left support for Hebrew and Arabic, this is a first attempt only and is likely to improve in future versions. -- Removed support for XForms older than 0.88. - -- Some commandline options and X resources are not supported anymore - (The color ones, and -mono -fastselection, -reverse) +- Per-paragraph spacing, currently only settable wrom the + command-line/window: + paragraph-spacing (default,single,onehalf,double,other) [float] - More accurate error reporting from LaTeX runs. - Better definition for LyXList style. -- option \show_banner [true|false] added to .lyxrc commands. - - A couple of changes to the LyX format, so that files written with 1.1.5 will not be parsed correctly by older LyX versions if protected spaces or the new per-paragraph spacing are used. Also the RtL support is of course not supported in older versions. -- Per-paragraph spacing, currently only settable wrom the - command-line/window: - paragraph-spacing (default,single,onehalf,double,other) [float] +- Removed support for XForms older than 0.88. + +- Some commandline options and X resources are not supported anymore + (The color ones, and -mono -fastselection, -reverse) + +- new lyxrc variables: \show_banner [true|false] to remove the banner + screen, and \backupdir_path to tell where the backup files created + by lyx should be stored. + -- .lyxrc feature: \backupdir_path that tells where the backup files - created by lyx will be stored. What's new in LyX version 1.1.4? diff --git a/src/bufferlist.C b/src/bufferlist.C index 6fc5fbad24..e4497ba234 100644 --- a/src/bufferlist.C +++ b/src/bufferlist.C @@ -466,7 +466,7 @@ Buffer * BufferList::loadLyXFile(string const & filename, bool tolastfiles) if (LyXVC::file_not_found_hook(s)) { // Ask if the file should be checked out for // viewing/editing, if so: load it. - if (AskQuestion(_("Do you want to retrive file under version control?"))) { + if (AskQuestion(_("Do you want to retrieve file under version control?"))) { // How can we know _how_ to do the checkout? // With the current VC support it has to be, // a RCS file since CVS do not have special ,v files. diff --git a/src/mathed/formulamacro.C b/src/mathed/formulamacro.C index 6b8f706a89..27e28d51b1 100644 --- a/src/mathed/formulamacro.C +++ b/src/mathed/formulamacro.C @@ -77,11 +77,7 @@ int InsetFormulaMacro::Latex(ostream & os, bool /*fragile*/, bool /*free_spacing*/) const { tmacro->WriteDef(os, true); // or false? - // CHECK - // This is the only place where a '1' is used rather that '-1' or '0' - // for value of fragile. What is the reason behind it and does it make - // a difference? (Lgb) - return 1; + return 1; }