SF.net SVN: geany: [1377] trunk
eht16 at users.sourceforge.net
eht16 at xxxxx
Fri Mar 9 14:06:20 UTC 2007
Revision: 1377
http://svn.sourceforge.net/geany/?rev=1377&view=rev
Author: eht16
Date: 2007-03-09 06:06:20 -0800 (Fri, 09 Mar 2007)
Log Message:
-----------
Auto completion of multi line comments is now (again) configurable with the auto complete constructs option.
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/sci_cb.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2007-03-09 13:52:26 UTC (rev 1376)
+++ trunk/ChangeLog 2007-03-09 14:06:20 UTC (rev 1377)
@@ -5,6 +5,8 @@
src/search.c, src/tools.c, src/ui_utils.c, src/utils.c:
Fixed several compiler warnings (mainly shadowing local variables
and unreachable code).
+ * src/sci_cb.c: Auto completion of multi line comments is now (again)
+ configurable with the auto complete constructs option.
2007-03-09 Nick Treleaven <nick.treleaven at btinternet.com>
Modified: trunk/src/sci_cb.c
===================================================================
--- trunk/src/sci_cb.c 2007-03-09 13:52:26 UTC (rev 1376)
+++ trunk/src/sci_cb.c 2007-03-09 14:06:20 UTC (rev 1377)
@@ -349,15 +349,16 @@
sci_add_text(sci, text);
g_free(text);
}
-
- /// TODO on which option should auto_multiline() depend? indention vs. auto completion
- // " * " auto completion in multiline C/C++/D/Java comments
- auto_multiline(sci, pos);
}
}
if (app->pref_editor_auto_complete_constructs)
+ {
+ // " * " auto completion in multiline C/C++/D/Java comments
+ auto_multiline(sci, pos);
+
sci_cb_auto_latex(idx, pos);
+ }
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Commits
mailing list