diff options
| author | Kenichi Handa | 2010-09-22 11:56:28 +0900 |
|---|---|---|
| committer | Kenichi Handa | 2010-09-22 11:56:28 +0900 |
| commit | 1114abdb3d5a0f4f86d7a28f8c523c6f07790208 (patch) | |
| tree | 49871b5c4ffce9d6c281ccbc79a79b231e5f41b4 /src | |
| parent | 86282aabd0094aac190834788200bd049a976fc9 (diff) | |
| parent | ee705a5c54c4054bcd1608e5cd5be193e679d0db (diff) | |
| download | emacs-1114abdb3d5a0f4f86d7a28f8c523c6f07790208.tar.gz emacs-1114abdb3d5a0f4f86d7a28f8c523c6f07790208.zip | |
merge trunk
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 9 | ||||
| -rw-r--r-- | src/doc.c | 2 | ||||
| -rw-r--r-- | src/makefile.w32-in | 1 |
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 | ||
| 13 | 2010-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 | |||
| 18 | 2010-09-21 Juanma Barranquero <lekktu@gmail.com> | ||
| 19 | |||
| 20 | * makefile.w32-in ($(BLD)/sysdep.$(O)): Update dependencies. | ||
| 21 | |||
| 13 | 2010-09-21 Dan Nicolaescu <dann@ics.uci.edu> | 22 | 2010-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. |
| @@ -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 \ |