mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-22 07:42:02 +00:00
Small bugfixes (gcc 2.95.3, texrow messages, cucumber)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_1_6@1365 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
2b09042cc5
commit
39fd9f5c71
10
ChangeLog
10
ChangeLog
@ -1,3 +1,13 @@
|
||||
2001-01-22 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
|
||||
|
||||
* config/lyxinclude.m4 (LYX_PROG_CXX): do not use -fno-rtti with
|
||||
gcc 2.95.3.
|
||||
|
||||
* src/texrow.C (increasePos): change to error messages into debug
|
||||
messages.
|
||||
|
||||
* lib/images/banner.xpm: revert to the cucumberless banner.
|
||||
|
||||
2001-01-21 Dekel Tsur <dekelts@tau.ac.il>
|
||||
|
||||
* src/frontends/xforms/FormRef.C (update): Do not update
|
||||
|
@ -185,7 +185,8 @@ dnl Check the version of g++
|
||||
elif test $ac_cv_prog_cxx_g = yes; then
|
||||
case $gxx_version in
|
||||
2.95.1) CXXFLAGS="-g $lyx_opt -fpermissive -fno-rtti -fno-exceptions";;
|
||||
2.95.*) CXXFLAGS="-g $lyx_opt -fno-rtti -fno-exceptions";;
|
||||
2.95.2) CXXFLAGS="-g $lyx_opt -fno-rtti -fno-exceptions";;
|
||||
2.95.*) CXXFLAGS="-g $lyx_opt -fno-exceptions";;
|
||||
2.96*) CXXFLAGS="-g $lyx_opt -fno-exceptions";;
|
||||
2.97*) CXXFLAGS="-g $lyx_opt -fvtable-thunks -fno-builtin -ffunction-sections -fdata-sections"
|
||||
CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE=1";;
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -112,13 +112,15 @@ void TexRow::increasePos(int id, int pos) const
|
||||
if (id == (*kit).id()
|
||||
&& pos < (*kit).pos()) {
|
||||
(*kit).pos((*kit).pos() + 1);
|
||||
lyxerr << "TeXRow::increasePos: ideally this "
|
||||
lyxerr.debug()
|
||||
<< "TeXRow::increasePos: ideally this "
|
||||
"should never happen..." << endl;
|
||||
}
|
||||
// When verified to work this clause should be deleted.
|
||||
if (id == (*kit).id()
|
||||
&& pos == (*kit).pos()) {
|
||||
lyxerr << "TexRow::increasePos: this should happen "
|
||||
lyxerr.debug()
|
||||
<< "TexRow::increasePos: this should happen "
|
||||
"maximum one time for each run of "
|
||||
"increasePos!" << endl;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user