mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-24 21:55:29 +00:00
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:
parent
9e7821d35b
commit
97ea08be8a
@ -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>
|
||||
|
||||
* src/tabular.C (Validate): check if array-package is needed.
|
||||
|
@ -57,4 +57,4 @@ dist-hook:
|
||||
echo "WARNING: Unable to get LyX Documentation from CVS!" ; true ; }
|
||||
|
||||
listerrors: examples/Literate.lyx
|
||||
./build-listerrors
|
||||
${srcdir}/build-listerrors
|
||||
|
@ -33,11 +33,6 @@ src/frontends/xforms/FormPreferences.C
|
||||
src/frontends/xforms/form_preferences.C
|
||||
src/frontends/xforms/FormPrint.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/form_tabular.C
|
||||
src/gettext.h
|
||||
|
@ -620,7 +620,7 @@ private:
|
||||
LyXFont & basefont, bool & open_font,
|
||||
LyXLayout const & style,
|
||||
size_type & i,
|
||||
int & column, char const c);
|
||||
int & column, value_type const c);
|
||||
///
|
||||
unsigned int id_;
|
||||
///
|
||||
|
@ -3264,7 +3264,7 @@ void LyXParagraph::SimpleTeXSpecialChars(Buffer const * buf,
|
||||
LyXLayout const & style,
|
||||
LyXParagraph::size_type & i,
|
||||
int & column,
|
||||
LyXParagraph::value_type c)
|
||||
LyXParagraph::value_type const c)
|
||||
{
|
||||
// Two major modes: LaTeX or plain
|
||||
// Handle here those cases common to both modes
|
||||
|
Loading…
Reference in New Issue
Block a user