[patch] bug 2869

2006-10-01 Thread Juergen Spitzmueller
http://bugzilla.lyx.org/show_bug.cgi?id=2869 A pretty straightforward fix (and something we have just overlooked when we fixed similar cases earlier). OK for branch and trunk? Jürgen Index: src/insets/insetvspace.C === --- src/inse

Re: big problems with clean_dvi.py - getting rid of it

2006-10-01 Thread Enrico Forestieri
On Mon, Oct 02, 2006 at 01:37:12AM +0200, Enrico Forestieri wrote: > On Mon, Oct 02, 2006 at 12:28:34AM +0200, Joost Verburg wrote: > > > Enrico Forestieri wrote: > > > Maybe something like > > > > > > #if defined(__CYGWIN__) || defined(__MINGW32__) > > > else if ( ! isprint (c & 0x7f) && !

Re: big problems with clean_dvi.py - getting rid of it

2006-10-01 Thread Enrico Forestieri
On Mon, Oct 02, 2006 at 12:28:34AM +0200, Joost Verburg wrote: > Enrico Forestieri wrote: > > Maybe something like > > > > #if defined(__CYGWIN__) || defined(__MINGW32__) > > else if ( ! isprint (c & 0x7f) && ! isspace (c)) > > #else > > else if ( ! isprint (c) && ! isspace (c)) > > #endi

Re: big problems with clean_dvi.py - getting rid of it

2006-10-01 Thread Joost Verburg
Enrico Forestieri wrote: Maybe something like #if defined(__CYGWIN__) || defined(__MINGW32__) else if ( ! isprint (c & 0x7f) && ! isspace (c)) #else else if ( ! isprint (c) && ! isspace (c)) #endif But I still have to see whether the "#if" line is not to be augmented by a " || defined(M

Re: [patch] Add .desktop files

2006-10-01 Thread Rex Dieter
Georg Baum wrote: > Slightly bigger patch. Why +StartupNotify=false ? -- Rex

Re: Unicode and Cygwin

2006-10-01 Thread Enrico Forestieri
On Sun, Oct 01, 2006 at 08:03:45PM +0200, Georg Baum wrote: > Am Sonntag, 1. Oktober 2006 19:33 schrieb Enrico Forestieri: > > So it would be easy writing a wrapper which calls the system functions > > where this makes sense and otherwise tries to do by itself. > > Sure, but I still think that p

Re: Unicode and Cygwin

2006-10-01 Thread Georg Baum
Am Sonntag, 1. Oktober 2006 19:33 schrieb Enrico Forestieri: > You are right, of course, but a wrapper function could be used. > In STLPort there is code like this: > > #if !defined (_STLP_NO_CSTD_FUNCTION_IMPORTS) > ... > using _STLP_VENDOR_CSTD_WFUNC::towupper; > ... > #endif /* _STLP_NO_CSTD_FU

Re: Unicode and Cygwin

2006-10-01 Thread Enrico Forestieri
On Sun, Oct 01, 2006 at 06:07:12PM +0200, Georg Baum wrote: > Am Sonntag, 1. Oktober 2006 16:45 schrieb Enrico Forestieri: > > On Sun, Oct 01, 2006 at 03:28:20PM +0200, Georg Baum wrote: > > > > > Am Sonntag, 1. Oktober 2006 14:46 schrieb Enrico Forestieri: > > > > > > > The problem here is that

Re: Lilypond external inset v3, documentation update

2006-10-01 Thread Georg Baum
Am Montag, 11. September 2006 14:49 schrieb Helge Hafting: > Helge Hafting wrote: > > Attached v.3 of the lilypond external inset. > (The patch to preferences and the script is unchanged.) This is the complete patch I'd like to apply. Instead of the script I changed the preview conversion script

Re: Unicode and Cygwin

2006-10-01 Thread Georg Baum
Am Sonntag, 1. Oktober 2006 16:45 schrieb Enrico Forestieri: > On Sun, Oct 01, 2006 at 03:28:20PM +0200, Georg Baum wrote: > > > Am Sonntag, 1. Oktober 2006 14:46 schrieb Enrico Forestieri: > > > > > The problem here is that sizeof(wchar_t) is 2 on cygwin and uint32_t > > > cannot be used due to

Re: Unicode and Cygwin

2006-10-01 Thread Enrico Forestieri
On Sun, Oct 01, 2006 at 03:28:20PM +0200, Georg Baum wrote: > Am Sonntag, 1. Oktober 2006 14:46 schrieb Enrico Forestieri: > > > The problem here is that sizeof(wchar_t) is 2 on cygwin and uint32_t > > cannot be used due to missing specializations in STLPort. I am not > > able to fill the missing

Re: Unicode and Cygwin

2006-10-01 Thread Georg Baum
Am Sonntag, 1. Oktober 2006 14:46 schrieb Enrico Forestieri: > The problem here is that sizeof(wchar_t) is 2 on cygwin and uint32_t > cannot be used due to missing specializations in STLPort. I am not > able to fill the missing bits in the Georg's work (after all, I am a > sorcerer's apprentice :)

Unicode and Cygwin

2006-10-01 Thread Enrico Forestieri
ATM the STLPort library is needed to compile LyX on cygwin. Without this library, LyX compiles without problems but then crashes immediately when trying to load a file. However, the test sources posted by Georg don't compile with STLPort, so when those features will be in LyX, this would also be t

[patch] update scons_manifest.py

2006-10-01 Thread Enrico Forestieri
Update scons_manifest.py for changed names in src/mathed. This is going in now. -- Enrico Index: development/scons/scons_manifest.py === --- development/scons/scons_manifest.py (revision 15191) +++ development/scons/scons_manifest.py