Re: [scite] Re: Compiler error

2007-08-04 Thread Neil Hodgson
Roger Sondermann: Don't know if the missing export definition file is a real problem. No its just an uninteresting warning. I do get SciLexer.dll and Scintilla.dll ...\scintilla\bin, but they will not be found when building SciTE.exe because of the backslashes instead of slashes in

[scite] for your consideration, a patch to OpenSelected()

2007-08-04 Thread April White
I have uploaded to http://www.scintilla.org/aprilw/scite-v174dev-openselected-april-2007-08-04.zip a suggested patch to the OpenSelected() method so that if the selected text is a directory, the 'open dialog' appears. I have not attempted to implement this in my GTK machine. Neil, this

Re: [scite] For your consideration, my SciTE Job Queue implementation

2007-08-04 Thread April White
Neil Hodgson wrote: The cancelFlag is used in both the UI thread and the execution thread so should be protected. That is why InterlockedExchange is used in the current code. The same effect should be possible by using the JobQueue mutex in an int SetCancelFlag(int value) method. The

[scite] restoring a session

2007-08-04 Thread Tom Lenz
I found this in the documentation: Opening a specific file from command line overrides save.session variable state. When you start SciTE loading a specific file from command line last session will not restore even if save.session variable is set to 1. I guess this is a feature request. I'd

Re: [scite] restoring a session

2007-08-04 Thread Robert Roessler
Tom Lenz wrote: I found this in the documentation: Opening a specific file from command line overrides save.session variable state. When you start SciTE loading a specific file from command line last session will not restore even if save.session variable is set to 1. I guess this is a feature

Re: [scite] Re: [lua] removing empty lines

2007-08-04 Thread Frank Wunderlich
mitchell, 03.08.2007 19:18: Frank Wunderlich wrote: steve donovan, 03.08.2007 13:04: On 8/3/07, Frank Wunderlich [EMAIL PROTECTED] wrote: you make a forward-loop, this is no good idea when removing items from a list (skipping next entry after deletion,maybe accessing item out of list-bounds

Re: [scite] Re: Re: Compiler error

2007-08-04 Thread Neil Hodgson
Roger Sondermann: cp ..\..\scintilla\bin\Scintilla.dll ..\bin\Scintilla.dll cp: cannot stat `..\\..\\scintilla\\bin\\Scintilla.dll': No such file or directory G:\Programs\System\MSys\bin\mingw32-make.exe: *** [..\bin \Scintilla.dll] Error 1 ... and Scintilla.dll is in ...\scintilla\bin\

Re: [scite] Re: [lua] removing empty lines

2007-08-04 Thread April White
I have not been following this thread, but would not a search and replace work? Search for \r\n\r\n Replace with \r\n (and I guess if it is a Linux file, that would \n\n and \n respectfully) with the 'Transform backslash expressions' checked Run the script until no changes are made.

Re: [scite] For your consideration, my SciTE Job Queue implementation

2007-08-04 Thread April White
Neil Hodgson wrote: The cancelFlag is used in both the UI thread and the execution thread so should be protected. That is why InterlockedExchange is used in the current code. The same effect should be possible by using the JobQueue mutex in an int SetCancelFlag(int value) method. Can