SF.net SVN: geany:[3191] trunk
eht16 at users.sourceforge.net
eht16 at xxxxx
Fri Nov 7 14:40:07 UTC 2008
Revision: 3191
http://geany.svn.sourceforge.net/geany/?rev=3191&view=rev
Author: eht16
Date: 2008-11-07 14:40:06 +0000 (Fri, 07 Nov 2008)
Log Message:
-----------
Don't auto close <hr> tags in HTML (closes #2226117).
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/editor.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2008-11-07 14:39:45 UTC (rev 3190)
+++ trunk/ChangeLog 2008-11-07 14:40:06 UTC (rev 3191)
@@ -1,3 +1,35 @@
+2008-11-07 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
+
+ * src/editor.c:
+ Don't auto close <hr> tags in HTML (closes #2226117).
+ * THANKS, data/filetype_extensions.conf, data/filetypes.matlab,
+ scintilla/KeyWords.cxx, scintilla/LexMatlab.cxx,
+ scintilla/Makefile.am, scintilla/makefile.win32, src/editor.c,
+ src/filetypes.c, src/filetypes.h, src/highlighting.c,
+ src/plugindata.h, src/symbols.c, src/templates.c,
+ tagmanager/Makefile.am, tagmanager/makefile.win32,
+ tagmanager/matlab.c, tagmanager/parsers.h, wscript:
+ Add new filetype 'Matlab' (closes #1938631, patch by Roland
+ Baudin, thanks).
+ * src/dialogs.c:
+ Allow showing remote locations in the file open dialog with
+ GTK >= 2.14 since it works with Gvfs/FUSE mounts, too.
+ * src/prefs.c:
+ Plug a little memory leak.
+ * src/document.c, tagmanager/c.c, tagmanager/entry.c,
+ tagmanager/entry.h, tagmanager/fortran.c, tagmanager/get.c,
+ tagmanager/get.h, tagmanager/include/tm_source_file.h,
+ tagmanager/include/tm_project.h, tagmanager/js.c,
+ tagmanager/read.c, tagmanager/read, tagmanager/sql.c,
+ tagmanager/tm_source_file.c, tagmanager/tm_tag.c:
+ Add support for updating tags from a memory buffer (code merged from
+ Anjuta).
+ This still doesn't work and is currently disabled. It would only work
+ for a few filetypes like C, Fortran and JavaScript. The current
+ implementation is still buggy, e.g. function signature parsing is
+ broken.
+
+
2008-11-06 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
* src/search.c:
Modified: trunk/src/editor.c
===================================================================
--- trunk/src/editor.c 2008-11-07 14:39:45 UTC (rev 3190)
+++ trunk/src/editor.c 2008-11-07 14:40:06 UTC (rev 3191)
@@ -1918,6 +1918,7 @@
/* when found string is something like br, img or another short tag, quit */
if (utils_str_equal(str_found, "br")
+ || utils_str_equal(str_found, "hr")
|| utils_str_equal(str_found, "img")
|| utils_str_equal(str_found, "base")
|| utils_str_equal(str_found, "basefont") /* < or not < */
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