aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2003-05-28 11:52:33 +0000
committerRichard M. Stallman2003-05-28 11:52:33 +0000
commitff6a3bfb4081a5319c344e0778aafcde429c2ea7 (patch)
treef4128b288c305b2e8db1b03ca3caf459c877789f
parent249c0f71656b128eb0a2b7290ce7408b1368e396 (diff)
downloademacs-ff6a3bfb4081a5319c344e0778aafcde429c2ea7.tar.gz
emacs-ff6a3bfb4081a5319c344e0778aafcde429c2ea7.zip
*** empty log message ***
-rw-r--r--etc/NEWS7
-rw-r--r--lisp/ChangeLog57
-rw-r--r--lispref/ChangeLog4
-rw-r--r--man/ChangeLog4
-rw-r--r--src/ChangeLog6
5 files changed, 76 insertions, 2 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 3e41d0d14b1..9417fe49fdf 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -148,6 +148,13 @@ You can now put the init files .emacs and .emacs_SHELL under
148 148
149** partial-completion-mode now does partial completion on directory names. 149** partial-completion-mode now does partial completion on directory names.
150 150
151** skeleton.el now supports using - to mark the skeleton-point without
152 interregion interaction. @ has reverted to only setting
153 skeleton-positions and no longer sets skeleton-point. Skeletons
154 which used @ to mark skeleton-point independent of _ should now use -
155 instead. The updated skeleton-insert docstring explains these new
156 features along with other details of skeleton construction.
157
151** MH-E changes. 158** MH-E changes.
152 159
153Upgraded to MH-E version 7.3. There have been major changes since 160Upgraded to MH-E version 7.3. There have been major changes since
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 47616ddaded..45c321247ed 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,60 @@
12003-05-28 Richard M. Stallman <rms@gnu.org>
2
3 * textmodes/refill.el (refill-fill-paragraph-at):
4 Avoid refilling the following paragraph.
5 (refill-doit): Doc fix.
6
7 * emulation/vip.el (ctl-x-map): Don't bind C-x C-i or C-x 3.
8 (global-map): Don't bind C-z.
9 (vip-setup): New function to rebind C-x 7 and C-z.
10
11 * emacs-lisp/lisp-mode.el (last-sexp-toggle-display):
12 Undo previous change (don't check for eob). Widen at the beginning.
13
14 * map-ynp.el (map-y-or-n-p): No special handling for exit-prefix.
15 In help string, mention C-g but not ESC.
16
17 * jka-compr.el (jka-compr-insert-file-contents):
18 When REPLACE, delete the proper range of text.
19
20 * info.el (Info-index): Add autoload cookie.
21
22 * forms.el (forms-mode): Use write-file-functions instead
23 of local-write-file-hooks. Use make-local-variable to make it local.
24
25 * descr-text.el (describe-char-unicode-data): New dummy definition.
26 (unicode-data): Commented out since we can't use UnicodeData.txt as is.
27 (describe-char-unicodedata-file): Variable renamed and commented out.
28
29 * faces.el (set-face-attribute): Set face-modified prop to t
30 when we change the new-frame defaults.
31 (face-spec-set): Set face-modified prop to nil
32 when we change the new-frame defaults.
33
34 * cus-edit.el (custom-face-state-set): non-nil `face-modified'
35 means face was set outside of Custom.
36
372003-05-28 Richard M. Stallman <rms@gnu.org>
38
39 * byte-run.el (with-no-warnings): New function.
40
41 * emacs-lisp/bytecomp.el (byte-compile-no-warnings): New function.
42 (with-no-warnings): Set up compile handler.
43
44 * startup.el (command-line-1): Use with-no-warnings.
45
46 * type-break.el (type-break-cancel-function-timers):
47 Use with-no-warnings.
48
492003-05-28 Luc Teirlinck <teirllm@mail.auburn.edu>
50
51 * env.el (substitute-env-vars): Fix typo.
52
532003-05-28 Walter C. Pelissero <walter@pelissero.de> (tiny change)
54
55 * net/browse-url.el (browse-url-mozilla): Correct the conditionals
56 for using ,new-window.
57
12003-05-27 Glenn Morris <gmorris@ast.cam.ac.uk> 582003-05-27 Glenn Morris <gmorris@ast.cam.ac.uk>
2 59
3 * progmodes/sh-script.el (sh-here-document-word): Document 60 * progmodes/sh-script.el (sh-here-document-word): Document
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index 8418f19b581..e85e2c864a8 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,3 +1,7 @@
12003-05-28 Richard M. Stallman <rms@gnu.org>
2
3 * strings.texi (Creating Strings): Clarify split-string.
4
12003-05-22 Stephen J. Turnbull <stephen@xemacs.org> 52003-05-22 Stephen J. Turnbull <stephen@xemacs.org>
2 6
3 * strings.texi (Creating Strings): Update split-string specification 7 * strings.texi (Creating Strings): Update split-string specification
diff --git a/man/ChangeLog b/man/ChangeLog
index 9170a4912e0..54cc0762763 100644
--- a/man/ChangeLog
+++ b/man/ChangeLog
@@ -1,3 +1,7 @@
12003-05-28 Richard M. Stallman <rms@gnu.org>
2
3 * indent.texi (Indentation): Condense, simplify, clarify prev change.
4
12003-05-28 Nick Roberts <nick@nick.uklinux.net> 52003-05-28 Nick Roberts <nick@nick.uklinux.net>
2 6
3 * building.texi (GDB Graphical Interface): New node. 7 * building.texi (GDB Graphical Interface): New node.
diff --git a/src/ChangeLog b/src/ChangeLog
index f4fd23efbc7..a231582d67e 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,6 +1,8 @@
12003-05-28 Dave Love <fx@gnu.org> 12003-05-28 Richard M. Stallman <rms@gnu.org>
2 2
3 * eval.c (unbind_to): Fix last change for K&R. From rms. 3 * print.c (syms_of_print) <print-escape-nonascii>: Doc fix.
4
5 * eval.c (unbind_to): Move init of this_binding to separate statement.
4 6
52003-05-28 Kim F. Storm <storm@cua.dk> 72003-05-28 Kim F. Storm <storm@cua.dk>
6 8