Fix a warning and a buglet in build-listerrors script.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@890 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2000-07-17 16:03:40 +00:00
parent 9e7821d35b
commit 97ea08be8a
5 changed files with 11 additions and 8 deletions

View File

@ -1,3 +1,11 @@
2000-07-17 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* lib/Makefile.am (listerrors): build-listerrors is in ${srcdir},
not always in "."!
* src/paragraph.[Ch] (SimpleTeXSpecialChars): fix the definition of
the last argument.
2000-07-17 Juergen Vigna <jug@sad.it> 2000-07-17 Juergen Vigna <jug@sad.it>
* src/tabular.C (Validate): check if array-package is needed. * src/tabular.C (Validate): check if array-package is needed.

View File

@ -57,4 +57,4 @@ dist-hook:
echo "WARNING: Unable to get LyX Documentation from CVS!" ; true ; } echo "WARNING: Unable to get LyX Documentation from CVS!" ; true ; }
listerrors: examples/Literate.lyx listerrors: examples/Literate.lyx
./build-listerrors ${srcdir}/build-listerrors

View File

@ -33,11 +33,6 @@ src/frontends/xforms/FormPreferences.C
src/frontends/xforms/form_preferences.C src/frontends/xforms/form_preferences.C
src/frontends/xforms/FormPrint.C src/frontends/xforms/FormPrint.C
src/frontends/xforms/form_print.C src/frontends/xforms/form_print.C
src/frontends/xforms/forms/form_citation.C
src/frontends/xforms/forms/form_copyright.C
src/frontends/xforms/forms/form_preferences.C
src/frontends/xforms/forms/form_print.C
src/frontends/xforms/forms/form_tabular.C
src/frontends/xforms/FormTabular.C src/frontends/xforms/FormTabular.C
src/frontends/xforms/form_tabular.C src/frontends/xforms/form_tabular.C
src/gettext.h src/gettext.h

View File

@ -620,7 +620,7 @@ private:
LyXFont & basefont, bool & open_font, LyXFont & basefont, bool & open_font,
LyXLayout const & style, LyXLayout const & style,
size_type & i, size_type & i,
int & column, char const c); int & column, value_type const c);
/// ///
unsigned int id_; unsigned int id_;
/// ///

View File

@ -3264,7 +3264,7 @@ void LyXParagraph::SimpleTeXSpecialChars(Buffer const * buf,
LyXLayout const & style, LyXLayout const & style,
LyXParagraph::size_type & i, LyXParagraph::size_type & i,
int & column, int & column,
LyXParagraph::value_type c) LyXParagraph::value_type const c)
{ {
// Two major modes: LaTeX or plain // Two major modes: LaTeX or plain
// Handle here those cases common to both modes // Handle here those cases common to both modes