]> git.eshelyaron.com Git - emacs.git/commitdiff
*** empty log message ***
authorRichard M. Stallman <rms@gnu.org>
Wed, 28 May 2003 11:52:33 +0000 (11:52 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 28 May 2003 11:52:33 +0000 (11:52 +0000)
etc/NEWS
lisp/ChangeLog
lispref/ChangeLog
man/ChangeLog
src/ChangeLog

index 3e41d0d14b199682dfb8da4cea50d3652f2b6e62..9417fe49fdf98864579ed5464b7e2f2e200d2df9 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -148,6 +148,13 @@ You can now put the init files .emacs and .emacs_SHELL under
 
 ** partial-completion-mode now does partial completion on directory names.
 
+** skeleton.el now supports using - to mark the skeleton-point without
+   interregion interaction.  @ has reverted to only setting
+   skeleton-positions and no longer sets skeleton-point.  Skeletons
+   which used @ to mark skeleton-point independent of _ should now use -
+   instead.  The updated skeleton-insert docstring explains these new
+   features along with other details of skeleton construction.
+
 ** MH-E changes.
 
 Upgraded to MH-E version 7.3. There have been major changes since
index 47616ddaded5de4bd50712b2d533f39e9dfbea3c..45c321247edc127dac7c37a1e3db3094bfc74d63 100644 (file)
@@ -1,3 +1,60 @@
+2003-05-28  Richard M. Stallman  <rms@gnu.org>
+
+       * textmodes/refill.el (refill-fill-paragraph-at):
+       Avoid refilling the following paragraph.
+       (refill-doit): Doc fix.
+
+       * emulation/vip.el (ctl-x-map): Don't bind C-x C-i or C-x 3.
+       (global-map): Don't bind C-z.
+       (vip-setup): New function to rebind C-x 7 and C-z.
+
+       * emacs-lisp/lisp-mode.el (last-sexp-toggle-display):
+       Undo previous change (don't check for eob).  Widen at the beginning.
+
+       * map-ynp.el (map-y-or-n-p): No special handling for exit-prefix.
+       In help string, mention C-g but not ESC.
+
+       * jka-compr.el (jka-compr-insert-file-contents):
+       When REPLACE, delete the proper range of text.
+
+       * info.el (Info-index): Add autoload cookie.
+
+       * forms.el (forms-mode): Use write-file-functions instead
+       of local-write-file-hooks.  Use make-local-variable to make it local.
+
+       * descr-text.el (describe-char-unicode-data): New dummy definition.
+       (unicode-data): Commented out since we can't use UnicodeData.txt as is.
+       (describe-char-unicodedata-file): Variable renamed and commented out.
+
+       * faces.el (set-face-attribute): Set face-modified prop to t
+       when we change the new-frame defaults.
+       (face-spec-set): Set face-modified prop to nil
+       when we change the new-frame defaults.
+
+       * cus-edit.el (custom-face-state-set): non-nil `face-modified'
+       means face was set outside of Custom.
+       
+2003-05-28  Richard M. Stallman  <rms@gnu.org>
+
+       * byte-run.el (with-no-warnings): New function.
+
+       * emacs-lisp/bytecomp.el (byte-compile-no-warnings): New function.
+       (with-no-warnings): Set up compile handler.
+
+       * startup.el (command-line-1): Use with-no-warnings.
+
+       * type-break.el (type-break-cancel-function-timers):
+       Use with-no-warnings.
+
+2003-05-28  Luc Teirlinck  <teirllm@mail.auburn.edu>
+
+        * env.el (substitute-env-vars): Fix typo.
+
+2003-05-28  Walter C. Pelissero  <walter@pelissero.de>  (tiny change)
+
+       * net/browse-url.el (browse-url-mozilla): Correct the conditionals
+       for using ,new-window.
+
 2003-05-27  Glenn Morris  <gmorris@ast.cam.ac.uk>
 
        * progmodes/sh-script.el (sh-here-document-word): Document
index 8418f19b5819b8cdf8de0c9cc049ca0ebc7f68b8..e85e2c864a89c0cac3827176598cdb9ca68b8102 100644 (file)
@@ -1,3 +1,7 @@
+2003-05-28  Richard M. Stallman  <rms@gnu.org>
+
+       * strings.texi (Creating Strings): Clarify split-string.
+
 2003-05-22  Stephen J. Turnbull  <stephen@xemacs.org>
 
        * strings.texi (Creating Strings): Update split-string specification
index 9170a4912e0fe97d42fd606d262b703c46bdc13b..54cc0762763c319102550422026a27088b382c59 100644 (file)
@@ -1,3 +1,7 @@
+2003-05-28  Richard M. Stallman  <rms@gnu.org>
+
+       * indent.texi (Indentation): Condense, simplify, clarify prev change.
+
 2003-05-28  Nick Roberts  <nick@nick.uklinux.net>
 
        * building.texi (GDB Graphical Interface): New node.
index f4fd23efbc74125275060e9b34ef3573e36edbcf..a231582d67e04df344980c76040f5c86d5cb586d 100644 (file)
@@ -1,6 +1,8 @@
-2003-05-28  Dave Love  <fx@gnu.org>
+2003-05-28  Richard M. Stallman  <rms@gnu.org>
 
-       * eval.c (unbind_to): Fix last change for K&R.  From rms.
+       * print.c (syms_of_print) <print-escape-nonascii>: Doc fix.
+
+       * eval.c (unbind_to): Move init of this_binding to separate statement.
 
 2003-05-28  Kim F. Storm  <storm@cua.dk>