aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/doc.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 90e21b7bda9..95c00f38c1f 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12010-09-21 Ari Roponen <ari.roponen@gmail.com> (tiny change)
2
3 * doc.c (Fsnarf_documentation): Use memmove instead of memcpy as
4 the regions may overlap.
5
12010-09-21 Juanma Barranquero <lekktu@gmail.com> 62010-09-21 Juanma Barranquero <lekktu@gmail.com>
2 7
3 * makefile.w32-in ($(BLD)/sysdep.$(O)): Update dependencies. 8 * makefile.w32-in ($(BLD)/sysdep.$(O)): Update dependencies.
diff --git a/src/doc.c b/src/doc.c
index f8ab9d081b9..36f7c0e882a 100644
--- a/src/doc.c
+++ b/src/doc.c
@@ -678,7 +678,7 @@ the same file name is found in the `doc-directory'. */)
678 } 678 }
679 pos += end - buf; 679 pos += end - buf;
680 filled -= end - buf; 680 filled -= end - buf;
681 memcpy (buf, end, filled); 681 memmove (buf, end, filled);
682 } 682 }
683 emacs_close (fd); 683 emacs_close (fd);
684 return Qnil; 684 return Qnil;