SF.net SVN: geany:[3929] trunk/src/editor.c

ntrel at users.sourceforge.net ntrel at xxxxx
Wed Jul 8 12:40:57 UTC 2009


Revision: 3929
          http://geany.svn.sourceforge.net/geany/?rev=3929&view=rev
Author:   ntrel
Date:     2009-07-08 12:40:57 +0000 (Wed, 08 Jul 2009)

Log Message:
-----------
Fix ignoring latex completion for non-latex filetypes.

Modified Paths:
--------------
    trunk/src/editor.c

Modified: trunk/src/editor.c
===================================================================
--- trunk/src/editor.c	2009-07-08 12:35:54 UTC (rev 3928)
+++ trunk/src/editor.c	2009-07-08 12:40:57 UTC (rev 3929)
@@ -1879,7 +1879,7 @@
 
 	g_return_if_fail(editor != NULL);
 
-	if (editor->document->file_type == NULL)
+	if (editor->document->file_type->id != GEANY_FILETYPES_LATEX)
 		return;
 
 	sci = editor->sci;


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