diff options
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/process.c b/src/process.c index b2a7f38317a..edf633e512e 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -1804,7 +1804,7 @@ usage: (make-process &rest ARGS) */) | |||
| 1804 | val = Vcoding_system_for_read; | 1804 | val = Vcoding_system_for_read; |
| 1805 | if (NILP (val)) | 1805 | if (NILP (val)) |
| 1806 | { | 1806 | { |
| 1807 | ptrdiff_t nargs2 = 3 + XFIXNUM (Flength (command)); | 1807 | ptrdiff_t nargs2 = 3 + list_length (command); |
| 1808 | Lisp_Object tem2; | 1808 | Lisp_Object tem2; |
| 1809 | SAFE_ALLOCA_LISP (args2, nargs2); | 1809 | SAFE_ALLOCA_LISP (args2, nargs2); |
| 1810 | ptrdiff_t i = 0; | 1810 | ptrdiff_t i = 0; |
| @@ -1834,7 +1834,7 @@ usage: (make-process &rest ARGS) */) | |||
| 1834 | { | 1834 | { |
| 1835 | if (EQ (coding_systems, Qt)) | 1835 | if (EQ (coding_systems, Qt)) |
| 1836 | { | 1836 | { |
| 1837 | ptrdiff_t nargs2 = 3 + XFIXNUM (Flength (command)); | 1837 | ptrdiff_t nargs2 = 3 + list_length (command); |
| 1838 | Lisp_Object tem2; | 1838 | Lisp_Object tem2; |
| 1839 | SAFE_ALLOCA_LISP (args2, nargs2); | 1839 | SAFE_ALLOCA_LISP (args2, nargs2); |
| 1840 | ptrdiff_t i = 0; | 1840 | ptrdiff_t i = 0; |