aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa2010-09-22 11:56:28 +0900
committerKenichi Handa2010-09-22 11:56:28 +0900
commit1114abdb3d5a0f4f86d7a28f8c523c6f07790208 (patch)
tree49871b5c4ffce9d6c281ccbc79a79b231e5f41b4 /src
parent86282aabd0094aac190834788200bd049a976fc9 (diff)
parentee705a5c54c4054bcd1608e5cd5be193e679d0db (diff)
downloademacs-1114abdb3d5a0f4f86d7a28f8c523c6f07790208.tar.gz
emacs-1114abdb3d5a0f4f86d7a28f8c523c6f07790208.zip
merge trunk
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog9
-rw-r--r--src/doc.c2
-rw-r--r--src/makefile.w32-in1
3 files changed, 10 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 063d65475ef..a44d97d96a1 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -10,6 +10,15 @@
10 current display element is a grapheme cluster in bidi-reordered 10 current display element is a grapheme cluster in bidi-reordered
11 region. 11 region.
12 12
132010-09-21 Ari Roponen <ari.roponen@gmail.com> (tiny change)
14
15 * doc.c (Fsnarf_documentation): Use memmove instead of memcpy as
16 the regions may overlap.
17
182010-09-21 Juanma Barranquero <lekktu@gmail.com>
19
20 * makefile.w32-in ($(BLD)/sysdep.$(O)): Update dependencies.
21
132010-09-21 Dan Nicolaescu <dann@ics.uci.edu> 222010-09-21 Dan Nicolaescu <dann@ics.uci.edu>
14 23
15 * emacs.c: Do not include sys/ioctl.h, not needed. 24 * emacs.c: Do not include sys/ioctl.h, not needed.
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;
diff --git a/src/makefile.w32-in b/src/makefile.w32-in
index 8d99d6cedfe..752a3c211b3 100644
--- a/src/makefile.w32-in
+++ b/src/makefile.w32-in
@@ -1344,7 +1344,6 @@ $(BLD)/sysdep.$(O) : \
1344 $(EMACS_ROOT)/nt/inc/pwd.h \ 1344 $(EMACS_ROOT)/nt/inc/pwd.h \
1345 $(EMACS_ROOT)/nt/inc/unistd.h \ 1345 $(EMACS_ROOT)/nt/inc/unistd.h \
1346 $(EMACS_ROOT)/nt/inc/sys/file.h \ 1346 $(EMACS_ROOT)/nt/inc/sys/file.h \
1347 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
1348 $(EMACS_ROOT)/nt/inc/sys/socket.h \ 1347 $(EMACS_ROOT)/nt/inc/sys/socket.h \
1349 $(EMACS_ROOT)/nt/inc/sys/time.h \ 1348 $(EMACS_ROOT)/nt/inc/sys/time.h \
1350 $(SRC)/lisp.h \ 1349 $(SRC)/lisp.h \