diff options
author | Eli Zaretskii <eliz@gnu.org> | 2011-05-20 12:47:59 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2011-05-20 12:47:59 +0300 |
commit | 7285dc67f4c4ffe079419ed3b189ede08175e244 (patch) | |
tree | 4c4a787634342bef6f04231ad24d01dd0ac4de1a /src/callproc.c | |
parent | 89d1bd225c6d3600ecf2d464a924cb0ef0af53e7 (diff) | |
download | emacs-7285dc67f4c4ffe079419ed3b189ede08175e244.tar.gz |
Fix the MSDOS build as follows from 2011-05-19T06:04:16Z!rgm@gnu.org, 2011-05-20T00:41:03Z!rgm@gnu.org.
config.bat: Concatenate lisp.mk onto the end of src/Makefile.
msdos/sed1v2.inp (make-docfile commands): Recognize only if the line
begins with a TAB. Use $(etc) rather than a literal "../etc".
(`sed SED-COMMAND $(srcdir)/lisp.mk`): Edit to replace with "$(lisp).
(@lisp_frag@): Edit out.
msdos/sedlibmk.inp (GNULIB_GROUP_MEMBER, HAVE_GROUP_MEMBER): Edit to
zero.
src/callproc.c (Fcall_process) [MSDOS]: Fix arguments to
report_file_error introduced by the change from 2011-05-07.
Diffstat (limited to 'src/callproc.c')
-rw-r--r-- | src/callproc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/callproc.c b/src/callproc.c index a966a26b938..67d0b6aede3 100644 --- a/src/callproc.c +++ b/src/callproc.c @@ -577,7 +577,7 @@ usage: (call-process PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS) */) unlink (tempfile); emacs_close (filefd); report_file_error ("Cannot re-open temporary file", - Fcons (tempfile, Qnil)); + Fcons (build_string (tempfile), Qnil)); } } else |