blob: dd5907d7310b1d111ff6c7c92d6d12964f50c296 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- src/executer.c.orig Tue Aug 31 00:40:58 2004
+++ src/executer.c Tue Aug 31 00:41:25 2004
@@ -154,7 +154,7 @@
if(e->terminal)
{
gchar* escaped_cmd;
- escaped_cmd = anjuta_util_escape_quotes(command);
+ escaped_cmd = command;
prop_set_with_key (e->props, "anjuta.current.command", escaped_cmd);
#ifdef DEBUG
@@ -162,7 +162,7 @@
#endif
cmd = command_editor_get_command (app->command_editor, COMMAND_TERMINAL);
- g_free(escaped_cmd);
+ /*g_free(escaped_cmd);*/
}
else
{
|