Revision: 2369 http://geany.svn.sourceforge.net/geany/?rev=2369&view=rev Author: ntrel Date: 2008-03-20 08:48:03 -0700 (Thu, 20 Mar 2008)
Log Message: ----------- Fix bug with showing macro list items all on one line.
Modified Paths: -------------- trunk/ChangeLog trunk/src/symbols.c
Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2008-03-20 14:30:51 UTC (rev 2368) +++ trunk/ChangeLog 2008-03-20 15:48:03 UTC (rev 2369) @@ -16,6 +16,8 @@ When detecting a change on disk, reload the file after all pending Scintilla messages have been processed, to prevent problems with partial colourisation. + * src/symbols.c: + Fix bug with showing macro list items all on one line.
2008-03-19 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
Modified: trunk/src/symbols.c =================================================================== --- trunk/src/symbols.c 2008-03-20 14:30:51 UTC (rev 2368) +++ trunk/src/symbols.c 2008-03-20 15:48:03 UTC (rev 2369) @@ -271,7 +271,7 @@ tm_tags_sort(ftags, NULL, FALSE); for (j = 0; j < ftags->len; j++) { - if (j > 0) g_string_append_c(words, ' '); + if (j > 0) g_string_append_c(words, '\n'); g_string_append(words, TM_TAG(ftags->pdata[j])->name); } g_ptr_array_free(ftags, TRUE);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.