Re: Big patch for mcview

2005-04-08 Thread Roland Illig
Pavel Tsekov wrote: Droping a short note that you've done the commit wouldn't hurt so much, would it ? Sorry, I forgot it. :( Committed. Roland ___ Mc-devel mailing list http://mail.gnome.org/mailman/listinfo/mc-devel

Re: [patch] Synchronization of the panels

2005-04-08 Thread Pavel Tsekov
On Fri, 8 Apr 2005, Pavel Tsekov wrote: > > Suggestions are welcome. > > Ok - several points: 8) Another thing that might be of interest. You can check if the directory you are monitoring resides on a vfs and if this is the case you have to disable monitoring for that directory. You can u

Re: [patch] Synchronization of the panels

2005-04-08 Thread Pavel Tsekov
Hello, On Sat, 2 Apr 2005, Siver Andrey wrote: > I've rewriten my previous patch (main.c.diff, sync.inc): > 1) Now synchronization is doing by time (SYNC_DELAY keeps inverval in > seconds; 2 secs by default); > 2) The synchronization is loosing for some DLG_ signals for efficiency; > 3) Add some

Re: keyboard bindings in mcedit (fwd)

2005-04-08 Thread Pavel Tsekov
Hello, Please, post to the list and not to my personal e-mail address - I do read the list as many others. -- Forwarded message -- Date: Fri, 8 Apr 2005 13:33:48 +0400 From: Vitja Makarov To: Pavel Tsekov Subject: Re: keyboard bindings in mcedit I've fixed some bugs... Have anyon

Re: * utilvfs.c (is_localized_month): segfault fix

2005-04-08 Thread Pavel Tsekov
Hello, On Fri, 8 Apr 2005, Andrew V. Samoilov wrote: > Hello, > > > +while ((i < 3) && *month && !isdigit (*month) && !iscntrl (*month) > > + && !ispunct (*month)) { > > > > > > What about changing the above to: > > > > while ((i < 3) && *month && isalpha (*month)) > > There is com

Re: * utilvfs.c (is_localized_month): segfault fix

2005-04-08 Thread Andrew V. Samoilov
Hello, > +while ((i < 3) && *month && !isdigit (*month) && !iscntrl (*month) > + && !ispunct (*month)) { > > > What about changing the above to: > > while ((i < 3) && *month && isalpha (*month)) There is comment some lines above: * isalpha() is locale specific, so it cannot be

Re: keyboard bindings in mcedit

2005-04-08 Thread Pavel Tsekov
Hello, On Fri, 8 Apr 2005, Vitja Makarov wrote: > Hi, all! > > This patch implements user-defined keyboard bindings for mcedit. Bindings > are stored in ~/.mc/cooledit/cooledit.bindings file, attached file contains > patch against current cvs tree & configuration sample. What's the difference be

keyboard bindings in mcedit

2005-04-08 Thread Vitja Makarov
Hi, all! This patch implements user-defined keyboard bindings for mcedit. Bindings are stored in ~/.mc/cooledit/cooledit.bindings file, attached file contains patch against current cvs tree & configuration sample. keybindings-0.1.tar.gz Description: GNU Zip compressed data __

Re: Big patch for mcview

2005-04-08 Thread Pavel Tsekov
Hello, On Wed, 6 Apr 2005, Roland Illig wrote: > Roland Illig wrote: > > Hi all, > > > > I must have had too much time, as I have partly rewritten mcview. The > > patch is quite large and changes many things. However, I have tested it > > with all available types of data sources (see the code for

Re: * utilvfs.c (is_localized_month): segfault fix

2005-04-08 Thread Pavel Tsekov
Hello, On Thu, 7 Apr 2005, Andrew V. Samoilov wrote: +while ((i < 3) && *month && !isdigit (*month) && !iscntrl (*month) + && !ispunct (*month)) { What about changing the above to: while ((i < 3) && *month && isalpha (*month)) ___ Mc-