Revision: 938
http://svn.sourceforge.net/geany/?rev=938&view=rev
Author: ntrel
Date: 2006-10-27 07:22:39 -0700 (Fri, 27 Oct 2006)
Log Message:
-----------
Find last unmatched open bracket for Show Calltip so nested matched
brackets are ignored (except LaTeX).
Modified Paths:
--------------
trunk/ChangeLog
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2006-10-27 14:21:48 UTC (rev 937)
+++ trunk/ChangeLog 2006-10-27 14:22:39 UTC (rev 938)
@@ -9,6 +9,11 @@
Make C-like comment colour darker; make globalclass brighter to
distinguish it from word colour.
Make Java use same default syntax highlighting colours as C.
+ * src/utils.c:
+ Limit parse depth to 500 chars when parsing C-like function name.
+ * src/sci_cb.c:
+ Find last unmatched open bracket for Show Calltip so nested matched
+ brackets are ignored (except LaTeX).
2006-10-26 Nick Treleaven <nick.treleaven(a)btinternet.com>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 937
http://svn.sourceforge.net/geany/?rev=937&view=rev
Author: ntrel
Date: 2006-10-27 07:21:48 -0700 (Fri, 27 Oct 2006)
Log Message:
-----------
Limit parse depth to 500 chars when parsing C-like function name.
Modified Paths:
--------------
trunk/src/utils.c
Modified: trunk/src/utils.c
===================================================================
--- trunk/src/utils.c 2006-10-27 11:30:23 UTC (rev 936)
+++ trunk/src/utils.c 2006-10-27 14:21:48 UTC (rev 937)
@@ -517,7 +517,7 @@
if (tmp == 0) end --;
// go back to the end of function identifier
- while (end > 0 && end > first_pos - 1000 &&
+ while (end > 0 && end > first_pos - 500 &&
(tmp = sci_get_char_at(sci, end)) != '(' &&
tmp != 0) end--;
end--;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 934
http://svn.sourceforge.net/geany/?rev=934&view=rev
Author: eht16
Date: 2006-10-25 12:25:35 -0700 (Wed, 25 Oct 2006)
Log Message:
-----------
Fixed typo.
Modified Paths:
--------------
trunk/src/document.c
Modified: trunk/src/document.c
===================================================================
--- trunk/src/document.c 2006-10-25 19:23:19 UTC (rev 933)
+++ trunk/src/document.c 2006-10-25 19:25:35 UTC (rev 934)
@@ -637,7 +637,7 @@
if (size != st.st_size)
{
gchar *warn_msg = _("The file \"%s\" could not opened properly and probably was truncated. "
- "Be aware that saving it can cause data lost.\nThe file was set to read-only.");
+ "Be aware that saving it can cause data loss.\nThe file was set to read-only.");
if (app->main_window_realized)
dialogs_show_msgbox(GTK_MESSAGE_WARNING, warn_msg, utf8_filename);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.