Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
3bc143eb
Commit
3bc143eb
authored
Feb 18, 2008
by
Jason Rumney
Browse files
(Fw32_shell_execute): Encode parameters.
parent
6a146d31
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
src/w32fns.c
src/w32fns.c
+4
-1
No files found.
src/w32fns.c
View file @
3bc143eb
...
...
@@ -8105,9 +8105,12 @@ an integer representing a ShowWindow flag:
CHECK_STRING (document);
/* Encode filename
and
current directory. */
/* Encode filename
,
current directory
and parameters
. */
current_dir = ENCODE_FILE (current_buffer->directory);
document = ENCODE_FILE (document);
if (STRINGP (parameters))
parameters = ENCODE_SYSTEM (parameters);
if ((int) ShellExecute (NULL,
(STRINGP (operation) ?
SDATA (operation) : NULL),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment