]> git.eshelyaron.com Git - emacs.git/commitdiff
*** empty log message ***
authorGerd Moellmann <gerd@gnu.org>
Wed, 2 Aug 2000 20:23:23 +0000 (20:23 +0000)
committerGerd Moellmann <gerd@gnu.org>
Wed, 2 Aug 2000 20:23:23 +0000 (20:23 +0000)
etc/NEWS
lisp/ChangeLog
src/ChangeLog

index d8d6d3ee75aa9fb882c4aeed4016785dfa5c55b3..2e008b4184d06022e71a6fb4b483dd1e1f59e9ce 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -734,6 +734,12 @@ eval-expression-print-length, and eval-expression-debug-on-error.
 *** The function `eval-defun' (M-C-x) now loads Edebug and instruments
 code when called with a prefix argument.
 
+** Ispell changes
+
+*** The command `ispell' new spell-checks a region if
+transient-mark-mode is on, and the mark is active.  Otherise it
+spell-checks the current buffer.
+
 ** Dired changes
 
 *** New variable `dired-recursive-deletes' determines if the delete
@@ -1325,6 +1331,10 @@ functionality with aliases for the mldrag functions.
 * Lisp changes made after edition 2.6 of the Emacs Lisp Manual,
 (Display-related features are described in a page of their own below.)
 
+** If `display-buffer-reuse-frames' is set, function `display-buffer'
+will raise frames displaying a buffer, instead of creating a new
+frame or window.
+
 ** Two new functions for removing elements from lists/sequences
 were added
 
@@ -1399,8 +1409,9 @@ ALL-FRAMES = t means include windows on all frames including invisible frames.
 If ALL-FRAMES is a frame, it means include windows on that frame.
 Anything else means restrict to the selected frame.
 
-** The function `single-key-description' now encloses function key
-and event names in angle brackets.
+** The function `single-key-description' now encloses function key and
+event names in angle brackets.  When called with a second optional
+argument non-nil, angle brackets won't be printed.
 
 ** If the variable `message-truncate-lines' is bound to t around a
 call to `message', the echo area will not be resized to display that
index 7e5becbf08d721af31042fd00d5876bed7273fa5..27dad6be3a45ceb4c1a70b65ba721ba29ddd5357 100644 (file)
@@ -1,3 +1,19 @@
+2000-08-02  Gerd Moellmann  <gerd@gnu.org>
+
+       * replace.el (occur): Set tab-width in the *Occur* buffer to the
+       value of tab-width in the original buffer.  Choose a line number
+       format that's a multiple of the original buffer's tab width, so
+       that lines appear right.
+
+       * textmodes/ispell.el (ispell): New function, replacing an alias.
+       Spell-check active region if in transient-mark-mode and mark
+       is active; otherwise spell-check buffer.
+
+2000-08-02  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
+
+       * ps-mule.el: Fix a customization problem on
+       ps-mule-font-info-database-default.
+
 2000-08-02  Eli Zaretskii  <eliz@is.elta.co.il>
 
        * progmodes/ebrowse.el (ebrowse-tree-mode-map): Use
index 5efe0edb18b5dbc880b1a340ab39ac3cd865ec6f..6f10a7c7e1b7c3b585485d9bca6496daceb3700c 100644 (file)
@@ -1,3 +1,25 @@
+2000-08-02  Gerd Moellmann  <gerd@gnu.org>
+
+       * alloc.c (lisp_malloc, lisp_free): Use size_t and POINTER_TYPE.
+       (xrealloc, xmalloc): Use size_t.  Some callers adjusted.
+
+       * lisp.h (Fsingle_key_description, xmalloc, xrealloc): Change
+       prototype.
+
+       * keyboard.c (read_char_minibuf_menu_prompt): Add new parameter
+       in call to Fsingle_key_description.
+
+       * keymap.c (Fsingle_key_description): Add parameter NO_ANGLES.
+       Callers changed.
+
+2000-08-02  Colin Walters <walters@cis.ohio-state.edu>
+
+       * window.c (display_buffer_reuse_frames): New variable.
+       (Fdisplay_buffer): If display_buffer_reuse_frames is set, reuse
+       frames displaying BUFFER.
+       (syms_of_window): Define Lisp variable
+       display-buffer-reuse-frames.
+
 2000-08-01  Miles Bader  <miles@gnu.org>
 
        * editfns.c (Fconstrain_to_field): Fix the conditions for deciding