diff options
| author | Richard M. Stallman | 2002-08-02 18:03:01 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-08-02 18:03:01 +0000 |
| commit | cc305a604df06ed827b63fe078db7b6d80c5104f (patch) | |
| tree | 37bfde76d4b51db150b95d6003ae272cc53074f4 | |
| parent | d80dee05364c3380e8bb741c8909501d22f05f16 (diff) | |
| download | emacs-cc305a604df06ed827b63fe078db7b6d80c5104f.tar.gz emacs-cc305a604df06ed827b63fe078db7b6d80c5104f.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 8 | ||||
| -rw-r--r-- | etc/PROBLEMS | 7 | ||||
| -rw-r--r-- | lisp/ChangeLog | 18 |
3 files changed, 31 insertions, 2 deletions
| @@ -85,8 +85,11 @@ read-only, the Emacs buffer is now read-only too. Type C-x C-q if you | |||
| 85 | want to make the buffer writable. (As root, you will in fact be able | 85 | want to make the buffer writable. (As root, you will in fact be able |
| 86 | to alter the file.) | 86 | to alter the file.) |
| 87 | 87 | ||
| 88 | ** The new command `revert-buffer-with-coding-system' (C-x RET r) | ||
| 89 | revisits 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 | ||
| 91 | Printing text with characters from the mule-unicode-* sets works with | 94 | Printing text with characters from the mule-unicode-* sets works with |
| 92 | ps-print, provided that you have installed the appropriate BDF fonts. | 95 | ps-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 | |||
| 1017 | for it. (If the coding system is detected incorrectly for a specific | 1020 | for it. (If the coding system is detected incorrectly for a specific |
| 1018 | file, you can put a `coding:' tags to override it.) | 1021 | file, you can put a `coding:' tags to override it.) |
| 1019 | 1022 | ||
| 1023 | ** The new function `merge-coding-systems' fills in unspecified aspects | ||
| 1024 | of 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 |
| 1021 | are ok to evaluate when they appear in an `eval' local variables | 1027 | are ok to evaluate when they appear in an `eval' local variables |
| 1022 | specification. Normally Emacs asks for confirmation before evaluating | 1028 | specification. 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 | |||
| 2 | in compiling, installing and running GNU Emacs. | 2 | in 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 | |||
| 7 | This happens when Emacs was built on some other version of Solaris. | ||
| 8 | Rebuild it on Solaris 8. | ||
| 9 | |||
| 5 | * Mule-UCS loads very slowly. | 10 | * Mule-UCS loads very slowly. |
| 6 | 11 | ||
| 7 | Changes to Emacs internals interact badly with Mule-UCS's `un-define' | 12 | Changes 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 | |||
| 456 | shared version of libjpeg, which you need to install. Finally, rerun | 461 | shared version of libjpeg, which you need to install. Finally, rerun |
| 457 | the Emacs configure script, which should now find the jpeg library. | 462 | the Emacs configure script, which should now find the jpeg library. |
| 458 | Alternatively, modify the generated src/Makefile to link the .a file | 463 | Alternatively, modify the generated src/Makefile to link the .a file |
| 459 | explicitly. | 464 | explicitly, 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 @@ | |||
| 1 | 2002-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 | |||
| 1 | 2002-07-31 Colin Walters <walters@debian.org> | 19 | 2002-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 |