[Monodevelop-patches-list] r2550 - in trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor: . Gui
Jacob Ilsø Christensen <jacobilsoe@gmail.com>
jacobilsoe at mono-cvs.ximian.com
Fri May 20 10:38:23 EDT 2005
Author: jacobilsoe
Date: 2005-05-20 10:38:23 -0400 (Fri, 20 May 2005)
New Revision: 2550
Modified:
trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/ChangeLog
trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorView.cs
Log:
Fixed problem with monodoc on words followed by a newline
Modified: trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/ChangeLog
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/ChangeLog 2005-05-20 14:37:15 UTC (rev 2549)
+++ trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/ChangeLog 2005-05-20 14:38:23 UTC (rev 2550)
@@ -1,3 +1,7 @@
+2005-05-20 Jacob Ilsø Christensen <jacobilsoe at gmail.com>
+
+ * Gui/SourceEditorView.cs: Fixed problem with monodoc on words followed by a newline.
+
2005-05-16 Jacob Ilsø Christensen <jacobilsoe at gmail.com>
* Gui/SourceEditorView.cs: Added support to ctrl+tab/shift+ctrl+tab through open files.
Modified: trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorView.cs
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorView.cs 2005-05-20 14:37:15 UTC (rev 2549)
+++ trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorView.cs 2005-05-20 14:38:23 UTC (rev 2550)
@@ -206,6 +206,8 @@
switch (insertIter.Char[0]) {
case ' ':
case '\t':
+ case '\r':
+ case '\n':
case '.':
case '(':
case '[':
More information about the Monodevelop-patches-list
mailing list