Update source files upon creation.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@3606 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Enrico Tröger 2009-02-27 14:06:06 +00:00
parent 46a2d13b4d
commit 49a798f796
2 changed files with 3 additions and 1 deletions

View File

@ -8,6 +8,8 @@
Add images to the 'Replace' and 'Replace and Find' buttons in the
Replace dialog.
Minor cleanups in search.c.
* tagmanager/tm_source_file.c:
Update source files upon creation.
2009-02-26 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>

View File

@ -63,7 +63,7 @@ gboolean tm_source_file_init(TMSourceFile *source_file, const char *file_name
source_file->lang = getNamedLanguage(name);
if (update)
tm_source_file_update(TM_WORK_OBJECT(source_file), FALSE, FALSE, FALSE);
tm_source_file_update(TM_WORK_OBJECT(source_file), TRUE, FALSE, FALSE);
return TRUE;
}