diff options
| author | Po Lu | 2023-03-07 14:20:50 +0800 |
|---|---|---|
| committer | Po Lu | 2023-03-07 14:20:50 +0800 |
| commit | 44cf1ed7e593022df01a47b701e7796e9d70d2fb (patch) | |
| tree | 09a0e49ee9d7eda6b201bbb07c574d6b4a4c35e0 /src/process.c | |
| parent | a11ad7149bc1908d205e78ecfb240b76ce190bef (diff) | |
| download | emacs-44cf1ed7e593022df01a47b701e7796e9d70d2fb.tar.gz emacs-44cf1ed7e593022df01a47b701e7796e9d70d2fb.zip | |
Update Android port
* src/lread.c (lread_fd, file_tell, infile, skip_dyn_bytes)
(skip_dyn_eof, readbyte_from_stdio, safe_to_load_version)
(close_infile_unwind, close_file_unwind_android_fd): New
function.
(Fload, Flocate_file_internal, openp): New argument PLATFORM.
All callers changed.
(skip_lazy_string): Add optimized versions of various functions
for accessing Android assets.
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c index bdaaba70fea..0eff789e599 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -2008,7 +2008,7 @@ usage: (make-process &rest ARGS) */) | |||
| 2008 | { | 2008 | { |
| 2009 | tem = Qnil; | 2009 | tem = Qnil; |
| 2010 | openp (Vexec_path, program, Vexec_suffixes, &tem, | 2010 | openp (Vexec_path, program, Vexec_suffixes, &tem, |
| 2011 | make_fixnum (X_OK), false, false); | 2011 | make_fixnum (X_OK), false, false, NULL); |
| 2012 | if (NILP (tem)) | 2012 | if (NILP (tem)) |
| 2013 | report_file_error ("Searching for program", program); | 2013 | report_file_error ("Searching for program", program); |
| 2014 | tem = Fexpand_file_name (tem, Qnil); | 2014 | tem = Fexpand_file_name (tem, Qnil); |