aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2004-08-17 22:34:56 +0000
committerKim F. Storm2004-08-17 22:34:56 +0000
commitc438dc33d55cc4d9034a885d3c11f1e7de238db5 (patch)
tree60346eb9d9d20557be43f3ddc1b0ee67c92ccfeb
parent107ed38d4bdec03002b2a23619e205722cd5b8d1 (diff)
downloademacs-c438dc33d55cc4d9034a885d3c11f1e7de238db5.tar.gz
emacs-c438dc33d55cc4d9034a885d3c11f1e7de238db5.zip
*** empty log message ***
-rw-r--r--lispref/ChangeLog5
-rw-r--r--src/ChangeLog9
2 files changed, 12 insertions, 2 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index ed0c2e9d421..3a701aaeb63 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,3 +1,8 @@
12004-08-18 Kim F. Storm <storm@cua.dk>
2
3 * processes.texi (Accepting Output): Add `just-this-one' arg to
4 `accept-process-output'.
5
12004-08-10 Luc Teirlinck <teirllm@auburn.edu> 62004-08-10 Luc Teirlinck <teirllm@auburn.edu>
2 7
3 * keymaps.texi: Various changes in addition to: 8 * keymaps.texi: Various changes in addition to:
diff --git a/src/ChangeLog b/src/ChangeLog
index ba43b4754ba..fa80a4f860a 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12004-08-17 Kim F. Storm <storm@cua.dk>
2
3 * process.c (process_send_signal): Fix last change--use
4 _POSIX_VDISABLE instead of CVDISABLE when available.
5
12004-08-16 Richard M. Stallman <rms@gnu.org> 62004-08-16 Richard M. Stallman <rms@gnu.org>
2 7
3 * sysdep.c (child_setup_tty) [SIGNALS_VIA_CHARACTERS]: 8 * sysdep.c (child_setup_tty) [SIGNALS_VIA_CHARACTERS]:
@@ -5,13 +10,13 @@
5 [AIX]: Don't do that here. And don't force VINTR to standard 10 [AIX]: Don't do that here. And don't force VINTR to standard
6 when SIGNALS_VIA_CHARACTERS. 11 when SIGNALS_VIA_CHARACTERS.
7 12
8 * process.c (process_send_signal) 13 * process.c (process_send_signal)
9 [SIGNALS_VIA_CHARACTERS, HAVE_TERMIOS]: Clean up. 14 [SIGNALS_VIA_CHARACTERS, HAVE_TERMIOS]: Clean up.
10 Do nothing if the character is CVDISABLE. 15 Do nothing if the character is CVDISABLE.
11 16
12 * xfaces.c (merge_face_ref): Specifying `unspecified' is a no-op. 17 * xfaces.c (merge_face_ref): Specifying `unspecified' is a no-op.
13 18
14 * intervals.c (move_if_not_intangible): 19 * intervals.c (move_if_not_intangible):
15 Force POSITION to be between BEGV and ZV. 20 Force POSITION to be between BEGV and ZV.
16 21
172004-08-14 John Paul Wallington <jpw@gnu.org> 222004-08-14 John Paul Wallington <jpw@gnu.org>