]> git.eshelyaron.com Git - emacs.git/commitdiff
*** empty log message ***
authorRichard M. Stallman <rms@gnu.org>
Mon, 5 Nov 2001 00:14:46 +0000 (00:14 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 5 Nov 2001 00:14:46 +0000 (00:14 +0000)
etc/NEWS
lisp/ChangeLog
src/ChangeLog

index d06d47e85aa6182b15599576dd16c714d232c853..78b342897f7fb50874f399072f7ee0a51b9471c4 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -6,7 +6,11 @@ Please send Emacs bug reports to bug-gnu-emacs@gnu.org.
 For older news, see the file ONEWS
 
 \f
-* Changes in Emacs 21.2
+* Changes in Emacs 21.3
+** Display of hollow cursors now obeys the buffer-local value (if any)
+of `cursor-in-non-selected-windows' in the buffer that the cursor
+appears in.
 
 ** The default values of `tooltip-delay' and `tooltip-hide-delay'
 were changed.
@@ -106,7 +110,15 @@ SQL buffer.
               (master-set-slave sql-buffer))))
 
 \f
-* Lisp Changes in Emacs 21.2
+* Lisp Changes in Emacs 21.3
+
+** New function `buffer-local-value'.
+
+- Function: buffer-local-value variable buffer
+
+This function returns the buffer-local binding of VARIABLE (a symbol)
+in buffer BUFFER.  If VARIABLE does not have a buffer-local binding in
+buffer BUFFER, it returns the default value of VARIABLE instead.
 
 ** The default value of paragraph-start and indent-line-function has
 been changed to reflect the one used in text-mode rather than the one
index 2ad0511c3264207aef51dad50b8c7b68428ccd8a..ce8c9aba4bd22fbeed587c4be1d9a6776fc30c4a 100644 (file)
@@ -1,5 +1,8 @@
 2001-11-04  Richard M. Stallman  <rms@gnu.org>
 
+       * international/mule-cmds.el (set-locale-environment): 
+       Make it interactive; make arg optional.
+
        * international/mule-diag.el (help-funs): Require help-funs.
 
 2001-11-04  Eli Zaretskii  <eliz@is.elta.co.il>
index 15942022a466a19b09cf5680e8e2b32b3d30a0bf..7a63543d60bd4b9f0289525af40eb0fea8f25ab3 100644 (file)
@@ -4,6 +4,18 @@
        for display-table glyphs from the code buffer text, to fix
        bugs in the former.
 
+2001-11-04  Michael Welsh Duggan  <md5i@cs.cmu.edu>
+
+       * buffer.c (Fbuffer_local_value): New function.
+       (syms_of_buffer): defsubr it.
+       
+       * xterm.c, w32term.c (x_display_and_set_cursor): Use buffer-local
+       value of `cursor-in-non-selected-windows'.
+
+       * lisp.h (Qcursor_in_non_selected_windows): New declaration.
+       * xdisp.c (Qcursor_in_non_selected_windows): New variable.
+       (syms_of_xdisp): Initialize it.
+       
 2001-11-04  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
 
        * xfns.c (Fx_create_frame): Doc fix.