Re: [Geany-devel] ANN: Configurable build beta in trunk

2009-08-26 Thread Nick Treleaven
On Wed, 26 Aug 2009 15:09:44 +1000 Lex Trotman wrote: > Fixed in patch also. Is there a "convert all indents to Geany > standard" command? There's Document->Replace Spaces by Tabs. > Do you have a problem if I commit bugfixes to build.c and build.h in > trunk (I'll commit to no other files)?

Re: [Geany-devel] Build-system merge

2009-08-26 Thread Nick Treleaven
On Tue, 25 Aug 2009 22:43:41 +0200 Enrico Tröger wrote: > >The merge probably would have been ok if I had specified versions like > >you do, but I had no idea that I needed to :-S I just read the book!! > >Maybe should be mentioned in hacking so new people like me know that > >old svn versions ma

Re: [Geany-devel] ANN: Configurable build beta in trunk

2009-08-26 Thread Nick Treleaven
On Wed, 26 Aug 2009 15:09:44 +1000 Lex Trotman wrote: > > I wonder what's about the variable i in the outer for loop, is it > > initialised at all? > > No its not initialised, but it shouldn't be a variable i, S/B 1, see > attached patch. Removes the now unused variable too. Applied in SVN, th

[Geany-devel] Strip trailing blank lines (patch included)

2009-08-26 Thread Eugene Arshinov
Hi all. Everybody knows that Geany has menu item "Document > Strip trailing spaces" and option to do it automatically when a document is saved. My proposal is another command, something like "Strip trailing blank lines", to remove blank lines in the end of file (as they are absolutely useless

Re: [Geany-devel] Strip trailing blank lines (patch included)

2009-08-26 Thread Andrew Janke
> Everybody knows that Geany has menu item "Document > Strip trailing spaces" > and option to do it automatically when a document is saved. My proposal is > another command, something like "Strip trailing blank lines", to remove > blank lines in the end of file (as they are absolutely useless there

Re: [Geany-devel] ANN: Configurable build beta in trunk

2009-08-26 Thread Nick Treleaven
On Tue, 25 Aug 2009 14:35:54 +1000 Lex Trotman wrote: > This is a significant change which provides considerable flexibility > for configuring the operation of the build menu. Please read the > manual for the new capabilities ;-) including hidden settings. ... > Let us know of any other problems

Re: [Geany-devel] ANN: Configurable build beta in trunk

2009-08-26 Thread Enrico Tröger
On Wed, 26 Aug 2009 16:12:19 +0100, Nick wrote: >> Do you have a problem if I commit bugfixes to build.c and build.h in >> trunk (I'll commit to no other files)? > >Fine with me, so long as the code style conforms. Enrico? Yup, it's fine. Regards, Enrico -- Get my GPG key from http://www.uven

Re: [Geany-devel] ANN: Configurable build beta in trunk

2009-08-26 Thread Enrico Tröger
On Wed, 26 Aug 2009 16:33:22 +0100, Nick wrote: >On Wed, 26 Aug 2009 15:09:44 +1000 >Lex Trotman wrote: > >> > I wonder what's about the variable i in the outer for loop, is it >> > initialised at all? >> >> No its not initialised, but it shouldn't be a variable i, S/B 1, see >> attached patch.

Re: [Geany-devel] ANN: Configurable build beta in trunk

2009-08-26 Thread Enrico Tröger
On Wed, 26 Aug 2009 15:09:44 +1000, Lex wrote: >2009/8/26 Enrico Tröger : >> On Tue, 25 Aug 2009 14:35:54 +1000, Lex wrote: >> >>>Hi All, >>> >>>The configurable build system has been merged into the latest trunk >>>(>r4120). >> >> And crashes Geany at startup under some circumstances :(. >> >> I

[Geany-devel] More intelligent 'remove trailing spaces' (was: Re: Strip trailing blank lines (patch included))

2009-08-26 Thread Enrico Tröger
On Wed, 26 Aug 2009 20:42:50 +0200, Enrico wrote: >On Thu, 27 Aug 2009 01:58:28 +1000, Andrew wrote: > >Hey, > >this is a somehwat different topic, so I broke up the thread. > And I forgot to update the subject, sorry. Regards, Enrico -- Get my GPG key from http://www.uvena.de/pub.asc pgpV2

Re: [Geany-devel] Strip trailing blank lines (patch included)

2009-08-26 Thread Enrico Tröger
On Wed, 26 Aug 2009 19:48:30 +0400, Eugene wrote: Hey, >I wrote new `editor_strip_trailing_newlines' function (see the >attached patch). Currently I call it directly from >`document_save_file' if `strip_trailing_spaces' setting is set. Of >course, it's not how it should be. Maybe separate menu it

Re: [Geany-devel] Strip trailing blank lines (patch included)

2009-08-26 Thread Enrico Tröger
On Thu, 27 Aug 2009 01:58:28 +1000, Andrew wrote: Hey, this is a somehwat different topic, so I broke up the thread. >would it be possible to have either a different strip command or some >switch somewhere so that strip trailing whitespace results in this >(using . for spaces/tabs): > > for i

Re: [Geany-devel] ANN: Configurable build beta in trunk

2009-08-26 Thread Enrico Tröger
On Wed, 26 Aug 2009 18:43:52 +0100, Nick wrote: >On Tue, 25 Aug 2009 14:35:54 +1000 >Lex Trotman wrote: > >> This is a significant change which provides considerable flexibility >> for configuring the operation of the build menu. Please read the >> manual for the new capabilities ;-) including h

Re: [Geany-devel] ANN: Configurable build beta in trunk

2009-08-26 Thread Enrico Tröger
On Wed, 26 Aug 2009 23:05:23 +0200, Enrico wrote: >On Wed, 26 Aug 2009 18:43:52 +0100, Nick wrote: > >>On Tue, 25 Aug 2009 14:35:54 +1000 >>Lex Trotman wrote: >> >>> This is a significant change which provides considerable flexibility >>> for configuring the operation of the build menu. Please r

[Geany-devel] porting the txt2tags syntax on Geany

2009-08-26 Thread Forgeot Eric
Hello, I'm using txt2tags for writing most of my stuffs. It has a clean syntax a bit similar to the markdown one. http://txt2tags.sourceforge.net/ I'd like to be able to write txt2tags documents with geany, because I'm using Geany on a daily basis, and Geany has a killer feature which would be

Re: [Geany-devel] ANN: Configurable build beta in trunk

2009-08-26 Thread Lex Trotman
2009/8/27 Nick Treleaven : > On Wed, 26 Aug 2009 15:09:44 +1000 > Lex Trotman wrote: > >> Fixed in patch also.  Is there a "convert all indents to Geany >> standard" command? > > There's Document->Replace Spaces by Tabs. Doh! done on all of build.c. > >> Do you have a problem if I commit bugfixe

Re: [Geany-devel] ANN: Configurable build beta in trunk

2009-08-26 Thread Lex Trotman
2009/8/27 Nick Treleaven : > On Wed, 26 Aug 2009 15:09:44 +1000 > Lex Trotman wrote: > >> > I wonder what's about the variable i in the outer for loop, is it >> > initialised at all? >> >> No its not initialised, but it shouldn't be a variable i, S/B 1, see >> attached patch.  Removes the now unus

Re: [Geany-devel] ANN: Configurable build beta in trunk

2009-08-26 Thread Lex Trotman
2009/8/27 Enrico Tröger : > On Wed, 26 Aug 2009 23:05:23 +0200, Enrico wrote: > >>On Wed, 26 Aug 2009 18:43:52 +0100, Nick wrote: >> >>>On Tue, 25 Aug 2009 14:35:54 +1000 >>>Lex Trotman wrote: >>> This is a significant change which provides considerable flexibility for configuring the op

Re: [Geany-devel] ANN: Configurable build beta in trunk

2009-08-26 Thread Lex Trotman
I've assumed ChangeLog as well :-) 2009/8/27 Enrico Tröger : > On Wed, 26 Aug 2009 16:12:19 +0100, Nick wrote: > > >>> Do you have a problem if I commit bugfixes to build.c and build.h in >>> trunk (I'll commit to no other files)? >> >>Fine with me, so long as the code style conforms. Enrico? > >

Re: [Geany-devel] ANN: Configurable build beta in trunk

2009-08-26 Thread Lex Trotman
2009/8/27 Nick Treleaven : > On Tue, 25 Aug 2009 14:35:54 +1000 > Lex Trotman wrote: > >> This is a significant change which provides considerable flexibility >> for configuring the operation of the build menu.  Please read the >> manual for the new capabilities ;-) including hidden settings. > ..

Re: [Geany-devel] ANN: Configurable build beta in trunk

2009-08-26 Thread Lex Trotman
and this time with the patch ;-) Cheers Lex 2009/8/27 Lex Trotman : > 2009/8/27 Nick Treleaven : >> On Tue, 25 Aug 2009 14:35:54 +1000 >> Lex Trotman wrote: >> >>> This is a significant change which provides considerable flexibility >>> for configuring the operation of the build menu.  Please re

Re: [Geany-devel] Strip trailing blank lines (patch included)

2009-08-26 Thread Andrew Janke
2009/8/27 Enrico Tröger : > > I see what you mean, I just wonder why? In my case it helps me visually break code into blocks. Either that or it's just habit! a ___ Geany-devel mailing list Geany-devel@uvena.de http://lists.uvena.de/cgi-bin/mailman/list

Re: [Geany-devel] ANN: Configurable build beta in trunk

2009-08-26 Thread Lex Trotman
2009/8/27 Enrico Tröger : > On Wed, 26 Aug 2009 18:43:52 +0100, Nick wrote: > >>On Tue, 25 Aug 2009 14:35:54 +1000 >>Lex Trotman wrote: >> >>> This is a significant change which provides considerable flexibility >>> for configuring the operation of the build menu.  Please read the >>> manual for t

Re: [Geany-devel] Nightly build failed: Geany GTK 2.8 build test

2009-08-26 Thread Lex Trotman
This seems to be due to G_GNUC_WARN_UNUSED_RESULT not being available until GTK 2.10 at line 330 in keybindings.c Either remove or #ifndef #define it to nothing Cheers Lex 2009/8/27 nightly.geany.org : > Geany GTK 2.8 build test failed at: waf build > > See http://nightly.geany.org/misc/build_gtk