aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/decompress.c2
-rw-r--r--src/image.c2
-rw-r--r--src/process.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/decompress.c b/src/decompress.c
index b4e122c3ba8..0212354fc8f 100644
--- a/src/decompress.c
+++ b/src/decompress.c
@@ -164,7 +164,7 @@ This function can be called only in unibyte buffers. */)
164 stream.avail_in = 0; 164 stream.avail_in = 0;
165 stream.next_in = Z_NULL; 165 stream.next_in = Z_NULL;
166 166
167 /* The magic number 32 apparently means "autodect both the gzip and 167 /* The magic number 32 apparently means "autodetect both the gzip and
168 zlib formats" according to zlib.h. */ 168 zlib formats" according to zlib.h. */
169 if (fn_inflateInit2 (&stream, MAX_WBITS + 32) != Z_OK) 169 if (fn_inflateInit2 (&stream, MAX_WBITS + 32) != Z_OK)
170 return Qnil; 170 return Qnil;
diff --git a/src/image.c b/src/image.c
index 41c991f09c6..6dc997aa4d0 100644
--- a/src/image.c
+++ b/src/image.c
@@ -7934,7 +7934,7 @@ imagemagick_compute_animated_image (MagickWand *super_wand, int ino)
7934 return NULL; 7934 return NULL;
7935 } 7935 }
7936 7936
7937 /* The sub-image may not start at origo, so move the destination 7937 /* The sub-image may not start at origin, so move the destination
7938 iterator to where the sub-image should start. */ 7938 iterator to where the sub-image should start. */
7939 if (source_top > 0) 7939 if (source_top > 0)
7940 { 7940 {
diff --git a/src/process.c b/src/process.c
index 892a5aa86c5..64cb401c06a 100644
--- a/src/process.c
+++ b/src/process.c
@@ -1893,7 +1893,7 @@ create_process (Lisp_Object process, char **new_argv, Lisp_Object current_dir)
1893#ifndef WINDOWSNT 1893#ifndef WINDOWSNT
1894 /* Wait for child_setup to complete in case that vfork is 1894 /* Wait for child_setup to complete in case that vfork is
1895 actually defined as fork. The descriptor 1895 actually defined as fork. The descriptor
1896 XPROCESS (proc)->open_fd[EXEC_MOINTOR_OUTPUT] 1896 XPROCESS (proc)->open_fd[EXEC_MONITOR_OUTPUT]
1897 of a pipe is closed at the child side either by close-on-exec 1897 of a pipe is closed at the child side either by close-on-exec
1898 on successful execve or the _exit call in child_setup. */ 1898 on successful execve or the _exit call in child_setup. */
1899 { 1899 {