mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 10:58:52 +00:00
latin9 update ; do not warn against xforms 0.89.5
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2273 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
d099ebca84
commit
7d4d2f9a1a
@ -1,3 +1,8 @@
|
|||||||
|
2001-07-18 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
|
||||||
|
|
||||||
|
* lyxinclude.m4 (LYX_PATH_XFORMS): do not warn against xforms
|
||||||
|
0.89.5
|
||||||
|
|
||||||
2001-07-05 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
|
2001-07-05 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
|
||||||
|
|
||||||
* lyxinclude.m4: remove LYX_CXX_NAMESPACE, LYX_CXX_MUTABLE
|
* lyxinclude.m4: remove LYX_CXX_NAMESPACE, LYX_CXX_MUTABLE
|
||||||
|
@ -609,7 +609,7 @@ case "$lyx_cv_xfversion" in
|
|||||||
Version $lyx_cv_xfversion of xforms is not compatible with LyX.
|
Version $lyx_cv_xfversion of xforms is not compatible with LyX.
|
||||||
This version of LyX works best with versions 0.88 (recommended) and later.) ;;
|
This version of LyX works best with versions 0.88 (recommended) and later.) ;;
|
||||||
0.88*) ;;
|
0.88*) ;;
|
||||||
0.89[012345]) LYX_WARNING(dnl
|
0.89[01234]) LYX_WARNING(dnl
|
||||||
LyX should work ok with version $lyx_cv_xfversion of xforms[,] but
|
LyX should work ok with version $lyx_cv_xfversion of xforms[,] but
|
||||||
it is an unproven version and might still have some bugs. You should
|
it is an unproven version and might still have some bugs. You should
|
||||||
probably use version 0.89.6 (or 0.88) instead) ;;
|
probably use version 0.89.6 (or 0.88) instead) ;;
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
2001-07-13 Yves Bastide <stid@libd-pc11.univ-bpclermont.fr>
|
||||||
|
|
||||||
|
* lyxrc.C (set_font_norm_type): recognise ISO_8859_15.
|
||||||
|
|
||||||
|
* lyxrc.h: added ISO_8859_15 to enum FontEncoding.
|
||||||
|
|
||||||
2001-07-18 Dekel Tsur <dekelts@tau.ac.il>
|
2001-07-18 Dekel Tsur <dekelts@tau.ac.il>
|
||||||
|
|
||||||
* buffer.C (readLyXformat2): Add filename to the error dialog
|
* buffer.C (readLyXformat2): Add filename to the error dialog
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2001-07-13 Yves Bastide <stid@libd-pc11.univ-bpclermont.fr>
|
||||||
|
|
||||||
|
* insetquotes.C (dispString): display french guillemets when using
|
||||||
|
ISO8859-15.
|
||||||
|
|
||||||
2001-07-18 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
|
2001-07-18 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
|
||||||
|
|
||||||
* insetcollapsable.h: remove bogus return statements
|
* insetcollapsable.h: remove bogus return statements
|
||||||
|
@ -152,7 +152,8 @@ string const InsetQuotes::dispString() const
|
|||||||
if (times == InsetQuotes::DoubleQ)
|
if (times == InsetQuotes::DoubleQ)
|
||||||
disp += disp;
|
disp += disp;
|
||||||
|
|
||||||
if (lyxrc.font_norm_type == LyXRC::ISO_8859_1)
|
if (lyxrc.font_norm_type == LyXRC::ISO_8859_1
|
||||||
|
|| lyxrc.font_norm_type == LyXRC::ISO_8859_15)
|
||||||
if (disp == "<<")
|
if (disp == "<<")
|
||||||
disp = '«';
|
disp = '«';
|
||||||
else if (disp == ">>")
|
else if (disp == ">>")
|
||||||
|
@ -1608,6 +1608,8 @@ void LyXRC::set_font_norm_type()
|
|||||||
font_norm_type = ISO_8859_6_8;
|
font_norm_type = ISO_8859_6_8;
|
||||||
else if (font_norm == "iso8859-9")
|
else if (font_norm == "iso8859-9")
|
||||||
font_norm_type = ISO_8859_9;
|
font_norm_type = ISO_8859_9;
|
||||||
|
else if (font_norm == "iso8859-15")
|
||||||
|
font_norm_type = ISO_8859_15;
|
||||||
else
|
else
|
||||||
font_norm_type = OTHER_ENCODING;
|
font_norm_type = OTHER_ENCODING;
|
||||||
}
|
}
|
||||||
|
@ -251,6 +251,8 @@ enum LyXRCTags {
|
|||||||
///
|
///
|
||||||
ISO_8859_9,
|
ISO_8859_9,
|
||||||
///
|
///
|
||||||
|
ISO_8859_15,
|
||||||
|
///
|
||||||
OTHER_ENCODING
|
OTHER_ENCODING
|
||||||
};
|
};
|
||||||
///
|
///
|
||||||
|
Loading…
Reference in New Issue
Block a user