aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-07-18 14:42:30 +0000
committerGerd Moellmann2000-07-18 14:42:30 +0000
commit3d6cd763f7dec6c53da92f89e0a7d465990d5ba0 (patch)
tree2840c7438dbe78b41185fcd3a1fb3e02e86972f2
parent9a7429681b1b9cb967e449ed3fb623340e30d2d4 (diff)
downloademacs-3d6cd763f7dec6c53da92f89e0a7d465990d5ba0.tar.gz
emacs-3d6cd763f7dec6c53da92f89e0a7d465990d5ba0.zip
*** empty log message ***
-rw-r--r--etc/NEWS14
-rw-r--r--lisp/ChangeLog6
-rw-r--r--src/ChangeLog6
3 files changed, 19 insertions, 7 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 30704a90142..28b20a36519 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -42,13 +42,13 @@ insert a non-ASCII character from your current language environment,
42the file will be saved silently with the appropriate coding. 42the file will be saved silently with the appropriate coding.
43Previously you would be prompted for a safe coding system. 43Previously you would be prompted for a safe coding system.
44 44
45** New variable `inhibit-iso-escape-detection' determines if the 45** New variable `inhibit-iso-escape-detection' determines if Emacs'
46coding system detector pays attention to ISO2022's escape sequences. 46coding system detection algorithm should pay attention to ISO2022's
47If this variable is non-nil, the detector ignores such escape 47escape sequences. If this variable is non-nil, the algorithm ignores
48sequences. The default value is nil, and it is recommended not to 48such escape sequences. The default value is nil, and it is
49change it except for such a special case that you always want to read 49recommended not to change it except for the special case that you
50any escape code verbatimly. If you just want to read a specific file 50always want to read any escape code verbatimly. If you just want to
51without decoding escape codes, use C-x RET c 51read a specific file without decoding escape codes, use C-x RET c
52(`universal-coding-system-argument'). 52(`universal-coding-system-argument').
53 53
54** Variable `default-korean-keyboard' is initialized properly from the 54** Variable `default-korean-keyboard' is initialized properly from the
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 8678dd5a990..af1f3e59806 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12000-07-18 Gerd Moellmann <gerd@gnu.org>
2
3 * cdl.el: Fix `Maintainer' keyword.
4
5 * play/pong.el: Add author's email address.
6
12000-07-17 Sam Steingold <sds@gnu.org> 72000-07-17 Sam Steingold <sds@gnu.org>
2 8
3 * files.el (insert-directory): Call `split-string' instead of 9 * files.el (insert-directory): Call `split-string' instead of
diff --git a/src/ChangeLog b/src/ChangeLog
index 66162f133ec..eb09468a8fc 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,11 @@
12000-07-18 Gerd Moellmann <gerd@gnu.org> 12000-07-18 Gerd Moellmann <gerd@gnu.org>
2 2
3 * alloc.c (allocate_string_data): If string had already data
4 assigned, copy old contents to new string data.
5
6 * coding.c (syms_of_coding): Fix typo in spelling of variable
7 `inhibit-iso-escape-detection'.
8
3 * alloca.c (free) [emacs && EMACS_FREE]: Define as EMACS_FREE. 9 * alloca.c (free) [emacs && EMACS_FREE]: Define as EMACS_FREE.
4 10
5 * Makefile.in: Add dependencies on dispextern.h. 11 * Makefile.in: Add dependencies on dispextern.h.