Branch: refs/heads/master Author: Frank Lanitz frank@frank.uvena.de Committer: Frank Lanitz frank@frank.uvena.de Date: Thu, 19 Feb 2015 10:09:58 UTC Commit: 034945a07e4b9b7ab30ae589c909852dddc1deb6 https://github.com/geany/geany-plugins/commit/034945a07e4b9b7ab30ae589c90985...
Log Message: ----------- Merge pull request #174 from b4n/debugger/gdb77
debugger: Fix crash with GDB 7.7
Modified Paths: -------------- debugger/src/dbm_gdb.c
Modified: debugger/src/dbm_gdb.c 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -369,7 +369,7 @@ static gboolean on_read_async_output(GIOChannel * src, GIOCondition cond, gpoint update_files();
/* -exec-run */ - exec_async_command("-exec-run &"); + exec_async_command("-exec-run"); } } else @@ -895,7 +895,7 @@ static gboolean run(const gchar* file, const gchar* commandline, GList* env, GLi static void restart(void) { dbg_cbs->clear_messages(); - exec_async_command("-exec-run &"); + exec_async_command("-exec-run"); } /*
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
plugins-commits@lists.geany.org