Re: [Regression] Editting stale symlink removes symlink and createsfile symlink points to

2002-12-11 Thread Andrew V. Samoilov
Pavel Roskin wrote: Hello! Max Derzhak max /at/linux.zp.ua reported new regression in mcedit. If you type F4 on stale symlink and press Esc-Esc or F10 after it (no editting at all) mcedit creates empty file symlink points to and removes original symlink. The problem is not related to

GPL in xnc.hlp

2002-12-11 Thread David Martin
I didn't change the new doc/pl/xnc.hlp as it isusing a translated GPL.Can/should we use translations of GPL. I have theSpanish translation somewhere around, but it statesthat it just has informative value, and legal agreementsmust follow the English original version.*8-) DavidJoin Excite! -

Re: GPL in xnc.hlp

2002-12-11 Thread Adam Byrtek 'alpha'
On Wed, Dec 11, 2002 at 05:42:30AM -0500, David Martin wrote: I didn't change the new doc/pl/xnc.hlp as it is using a translated GPL. I've already sent Pavel fixed xnc when I realized that the original GPL should still be included. I'm attaching it to you directly just to be sure... Regards

Re: GPL in xnc.hlp

2002-12-11 Thread Adam Byrtek 'alpha'
On Wed, Dec 11, 2002 at 03:17:05PM +0200, Andrew V. Samoilov wrote: It's ok. Russian translation is unofficial too. As far as I know there is no legal translation to Russian at all. Yes, but English original version is still included in Russian translation. I've forgotten to include the

Re: New patchfs script

2002-12-11 Thread Andrew V. Samoilov
Hi, Adam! Adam Byrtek 'alpha' wrote: On Mon, Dec 09, 2002 at 12:16:42PM -0500, Pavel Roskin wrote: I hope to put your script on CVS today and I'm ready to make fixes myself, but I just want to give you are chance to do it right. Updated version attached. It works in reasonable time, even

Re: New patchfs script

2002-12-11 Thread Adam Byrtek 'alpha'
On Wed, Dec 11, 2002 at 04:42:35PM +0200, Andrew V. Samoilov wrote: -copyout ($ARGV[2], $ARGV[3]); +copyout ($ARGV[2], quotemeta ($ARGV[3])); The second chunk is invalid. $ARGV[3] is used only for 'open', and it doesn't need quoting: bash-2.05b$ perl -we 'open TMP, .

Re: New patchfs script

2002-12-11 Thread Pavel Roskin
Hello! I applied little patch for your patchfs to quote metacharacters in filename before giving it to shell. Also I want to eliminate temporary file in copyout() and teach patchfs to understand context diffs (diff -c). Another good change should be to use +++ filename for newly created

Bug tracking system now functional

2002-12-11 Thread Pavel Roskin
Hello! It's now possible to report bugs for GNU Midnight Commander using bug tracking system on savannah.gnu.org: https://savannah.gnu.org/bugs/?group=mc -- Regards, Pavel Roskin ___ Mc-devel mailing list [EMAIL PROTECTED]

Re: New patchfs script

2002-12-11 Thread Andrew V. Samoilov
Hi, Adam! Adam Byrtek 'alpha' wrote: On Wed, Dec 11, 2002 at 12:03:18PM -0500, Pavel Roskin wrote: I suggest that we select the shorter filename unless it's /dev/null. Usually the longer filename has .orig or .new is it. Also it would be nice to add .diff to all filenames. It would force

Re: New patchfs script

2002-12-11 Thread Adam Byrtek 'alpha'
On Wed, Dec 11, 2002 at 03:59:47PM +0100, Adam Byrtek 'alpha' wrote: And it is reasonable to search and substitute perl in patchfs, a and uzip scripts, but this is another story. Could be quite hard... i see no popular alternatives. Sorry, I didn't understand you right. I was thinking

Re: New patchfs script

2002-12-11 Thread Andrew V. Samoilov
Adam Byrtek 'alpha' wrote: On Wed, Dec 11, 2002 at 04:42:35PM +0200, Andrew V. Samoilov wrote: I applied little patch for your patchfs to quote metacharacters in Agreed. . . . -copyout ($ARGV[2], $ARGV[3]); +copyout ($ARGV[2], quotemeta ($ARGV[3])); The second chunk is