]> git.eshelyaron.com Git - emacs.git/commitdiff
*** empty log message ***
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 19 Nov 2001 23:04:35 +0000 (23:04 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 19 Nov 2001 23:04:35 +0000 (23:04 +0000)
etc/NEWS
lisp/ChangeLog
src/ChangeLog

index fc6a2e79bc6e0c2ee35885cd36d4069573fd94d3..b7b1201e025412812353f5e8ca2ee7543d6d95aa 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -18,10 +18,17 @@ installed programs.
 \f
 * Changes in Emacs 21.3
 
+** If you hit M-C-SPC (mark-sexp) repeatedly, the marked region
+will now be extended each time, so you can mark the next two sexps with
+M-C-SPC M-C-SPC, for example.
+
+** mouse-wheels can now scroll a specific fraction of the window
+(rather than a fixed number of lines) and the scrolling is `progressive'.
+
 ** The keyboard-coding-system is now automatically set based on
 your current locale settings.  If it turns out that your terminal
-does not support the encoding implied by your locale, you will
-need to add
+does not support the encoding implied by your locale (for example,
+it inserts non-ASCII chars if you hit M-i), you will need to add
 
        (set-keyboard-coding-system nil)
 
@@ -159,6 +166,9 @@ SQL buffer.
 \f
 * Lisp Changes in Emacs 21.3
 
+** describe-vector now takes a second argument `describer' which is
+called to print the entries' values.  It default to `princ'.
+
 ** defcustom and other custom declarations now use a default group
 (the last group defined in the same file) when no :group was given.
 
index cd2173d07571dfc81416fbbf10a7460afda8e05f..c59d646acbe2ad915670b23ea16daa17da6c6906 100644 (file)
@@ -1,3 +1,27 @@
+2001-11-19  Stefan Monnier  <monnier@cs.yale.edu>
+
+       * emacs-lisp/lisp.el (mark-sexp): Mark more if repeated.
+
+       * progmodes/cc-engine.el (c-parse-state): Typo. From Martin Stjernholm.
+
+       * mwheel.el (mouse-wheel-scroll-amount): Allow float values.
+       (mouse-wheel-progessive-speed): New var.
+       (mwheel-scroll): Use it and handle float values.
+
+       * lazy-lock.el (lazy-lock-install-hooks): Remove make-local-hook.
+
+       * iswitchb.el (iswitchb-mode): Use define-minor-mode.
+       (iswitchb): Fix the case where the result was selected with the mouse.
+       (iswitchb-completion-help): Use the normal *Completions* now that
+       mouse selection works.
+       (iswitchb-minibuffer-setup): Simplify.
+
+       * newcomment.el (comment-column, comment-style, comment-multi-line)
+       (comment-auto-fill-only-comments): Remove :group arg.
+       (comment-padding): Add :type.
+       (comment-indent-new-line): Ignore comment-auto-fill-only-comments
+       if called interactively.
+
 2001-11-19  Colin Walters  <walters@verbum.org>
 
        * calc/calc.el (toplevel): Add comment and version header.
@@ -13,7 +37,7 @@
        (browse-url-default-browser): New function.
        (browse-url-process-environment): Use browse-url-browser-display.
        (browse-url-browser-display): Renamed from browse-url-netscape-display.
-       (browse-url-mozilla-startup-arguments, browse-url-galeon-program) 
+       (browse-url-mozilla-startup-arguments, browse-url-galeon-program)
        (browse-url-galeon-arguments, browse-url-galeon-startup-arguments)
        (browse-url-mozilla-program, browse-url-mozilla-arguments): New vars.
        (browse-url-browser-function): New default, new options.
index 424b5945a27f10edb585bc7f05e3a941dd6b7e68..63bb5a637a737da88a2bbb39566ab3e3a6602009 100644 (file)
@@ -1,5 +1,8 @@
 2001-11-19  Stefan Monnier  <monnier@cs.yale.edu>
 
+       * fileio.c (Fwrite_region): Move choose_write_coding_system to
+       after build_annotations.
+
        * syntax.c (describe_syntax): Add dummy arg.
        (describe_syntax_1): Update call to describe_vector.