Execute: only save file if the run command uses it

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@449 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Nick Treleaven 2006-06-16 13:15:28 +00:00
parent 14e6966568
commit 3b559efbdb
2 changed files with 5 additions and 1 deletions

View File

@ -2,6 +2,7 @@
* src/notebook.c, src/notebook.h, src/main.c, src/Makefile.am:
Added currently disabled drag reordering of notebook tabs.
* src/callbacks.c: Execute: only save file if the run command uses it.
2006-06-15 Enrico Troeger <enrico.troeger@uvena.de>

View File

@ -1635,7 +1635,10 @@ on_build_execute_activate (GtkMenuItem *menuitem,
}
else
{
if (doc_list[idx].changed) document_save_file(idx);
// save the file only if the run command uses it
if (doc_list[idx].changed &&
strstr(doc_list[idx].file_type->programs->run_cmd, "%f") != NULL)
document_save_file(idx);
if (build_run_cmd(idx) == (GPid) 0)
{
msgwin_status_add(_("Failed to execute the terminal program"));