aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2002-08-02 18:03:01 +0000
committerRichard M. Stallman2002-08-02 18:03:01 +0000
commitcc305a604df06ed827b63fe078db7b6d80c5104f (patch)
tree37bfde76d4b51db150b95d6003ae272cc53074f4
parentd80dee05364c3380e8bb741c8909501d22f05f16 (diff)
downloademacs-cc305a604df06ed827b63fe078db7b6d80c5104f.tar.gz
emacs-cc305a604df06ed827b63fe078db7b6d80c5104f.zip
*** empty log message ***
-rw-r--r--etc/NEWS8
-rw-r--r--etc/PROBLEMS7
-rw-r--r--lisp/ChangeLog18
3 files changed, 31 insertions, 2 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 1a7fc2709b6..4d0d9358c9e 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -85,8 +85,11 @@ read-only, the Emacs buffer is now read-only too. Type C-x C-q if you
85want to make the buffer writable. (As root, you will in fact be able 85want to make the buffer writable. (As root, you will in fact be able
86to alter the file.) 86to alter the file.)
87 87
88** The new command `revert-buffer-with-coding-system' (C-x RET r)
89revisits the current file using a coding system that you specify.
90
88--- 91---
89** ps-print can now print Unicode characters. 92** `ps-print' can now print Unicode characters.
90 93
91Printing text with characters from the mule-unicode-* sets works with 94Printing text with characters from the mule-unicode-* sets works with
92ps-print, provided that you have installed the appropriate BDF fonts. 95ps-print, provided that you have installed the appropriate BDF fonts.
@@ -1017,6 +1020,9 @@ to examine a file being visited and deduce the proper coding system
1017for it. (If the coding system is detected incorrectly for a specific 1020for it. (If the coding system is detected incorrectly for a specific
1018file, you can put a `coding:' tags to override it.) 1021file, you can put a `coding:' tags to override it.)
1019 1022
1023** The new function `merge-coding-systems' fills in unspecified aspects
1024of one coding system from another coding system.
1025
1020** The variable `safe-local-eval-forms' specifies a list of forms that 1026** The variable `safe-local-eval-forms' specifies a list of forms that
1021are ok to evaluate when they appear in an `eval' local variables 1027are ok to evaluate when they appear in an `eval' local variables
1022specification. Normally Emacs asks for confirmation before evaluating 1028specification. Normally Emacs asks for confirmation before evaluating
diff --git a/etc/PROBLEMS b/etc/PROBLEMS
index 0eb57d53e2b..64433b73d9e 100644
--- a/etc/PROBLEMS
+++ b/etc/PROBLEMS
@@ -2,6 +2,11 @@ This file describes various problems that have been encountered
2in compiling, installing and running GNU Emacs. 2in compiling, installing and running GNU Emacs.
3 3
4 4
5* Emacs reports a BadAtom error (from X) running on Solaris 7 or 8.
6
7This happens when Emacs was built on some other version of Solaris.
8Rebuild it on Solaris 8.
9
5* Mule-UCS loads very slowly. 10* Mule-UCS loads very slowly.
6 11
7Changes to Emacs internals interact badly with Mule-UCS's `un-define' 12Changes to Emacs internals interact badly with Mule-UCS's `un-define'
@@ -456,7 +461,7 @@ If this is the problem, you can configure the jpeg library with the
456shared version of libjpeg, which you need to install. Finally, rerun 461shared version of libjpeg, which you need to install. Finally, rerun
457the Emacs configure script, which should now find the jpeg library. 462the Emacs configure script, which should now find the jpeg library.
458Alternatively, modify the generated src/Makefile to link the .a file 463Alternatively, modify the generated src/Makefile to link the .a file
459explicitly. 464explicitly, and edit src/config.h to define HAVE_JPEG.
460 465
461* Building Emacs over NFS fails with ``Text file busy''. 466* Building Emacs over NFS fails with ``Text file busy''.
462 467
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 6529854245e..8853ba55178 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,21 @@
12002-08-02 Richard M. Stallman <rms@gnu.org>
2
3 * international/mule.el (merge-coding-systems): New function.
4 (set-buffer-file-coding-system): Use merge-coding-systems.
5 Change prompt for args.
6 (revert-buffer-with-coding-system): New command.
7
8 * international/mule-cmds.el (mule-keymap, set-coding-system-map):
9 Add bindings for revert-buffer-with-coding-system.
10 (set-coding-system-map): Clarify menu item info for
11 set-buffer-file-coding-system.
12 (set-coding-system-map): Reorder and add separators.
13
14 * emacs-lisp/edebug.el (edebug-eval-top-level-form):
15 Use eval-expression.
16
17 * subr.el (atomic-change-group): Doc fix.
18
12002-07-31 Colin Walters <walters@debian.org> 192002-07-31 Colin Walters <walters@debian.org>
2 20
3 * ibuffer.el (ibuffer-hooks): Rename to `ibuffer-hook'; Add 21 * ibuffer.el (ibuffer-hooks): Rename to `ibuffer-hook'; Add