]> git.eshelyaron.com Git - emacs.git/commit
Unbreak the MinGW build broken by recent changes in callproc.c
authorEli Zaretskii <eliz@gnu.org>
Thu, 24 Dec 2020 15:58:51 +0000 (17:58 +0200)
committerEli Zaretskii <eliz@gnu.org>
Thu, 24 Dec 2020 15:58:51 +0000 (17:58 +0200)
commit527cc64e5d7e8945dfb89bf44d5f4141bd221456
tree03c4df7a7d97fb4d56fe243118d4effde8245884
parent29064d02c31b08ae41d41a93fd1439718373b196
Unbreak the MinGW build broken by recent changes in callproc.c

* src/w32.h (set_process_dir):
* src/w32proc.c (set_process_dir): Change the argument to 'const
char *'.
* src/lisp.h (make_environment_block):
* src/callproc.c (make_environment_block): Now returns 'char **'.
(exec_failed) [DOS_NT]: Remove unused function.
* src/callproc.c (child_setup): NEW_ARGV and ENV are now 'char **'.
Making them 'const' breaks the MinGW build and is not needed for
other platforms.
* src/callproc.c (emacs_spawn): ARGV and ENVP arguments are now
'char *', for the same reason.
* src/process.c (create_process): Adapt to above changes.
src/callproc.c
src/lisp.h
src/process.c
src/w32.h
src/w32proc.c