shell-doc-system: fix %-escaping code in shell_doc_system_open()

It was escaping app_exec into app_exec_quoted, but then forgot about
it and went back to using app_exec.

https://bugzilla.gnome.org/show_bug.cgi?id=640447
This commit is contained in:
Dan Winship 2011-01-24 12:30:34 -05:00
parent 13edecde6c
commit 6f070319a0

View File

@ -285,7 +285,8 @@ shell_doc_system_open (ShellDocSystem *system,
app_exec_quoted = g_regex_replace (regex, app_exec, -1, 0, "%%", 0, NULL);
g_regex_unref (regex);
app_info = g_app_info_create_from_commandline (app_exec, NULL, 0, NULL);
app_info = g_app_info_create_from_commandline (app_exec_quoted, NULL, 0, NULL);
g_free (app_exec_quoted);
/* The point of passing an app launch context to
launch() is mostly to get startup notification and