diff etc/NEWS @ 59141:d9de1e27928f

*** empty log message ***
author Richard M. Stallman <rms@gnu.org>
date Mon, 27 Dec 2004 17:08:45 +0000
parents ebbf26327c31
children c8c4178618c3
line wrap: on
line diff
--- a/etc/NEWS	Mon Dec 27 17:01:44 2004 +0000
+++ b/etc/NEWS	Mon Dec 27 17:08:45 2004 +0000
@@ -98,6 +98,11 @@
 
 * Changes in Emacs 21.4
 
+** calculator.el now has radix grouping mode.  In this mode a
+separator character is used between every few digits, making it
+easier to indicate byte boundries etc.  See the documentation of
+the `calculator-radix-grouping-mode' custom variable.
+
 ** You can now follow links by clicking Mouse-1 on the link.
 
 Traditionally, Emacs uses a Mouse-1 click to set point and a Mouse-2
@@ -2395,6 +2400,10 @@
 
 * Lisp Changes in Emacs 21.4
 
++++
+** The function symbol-file tells you which file defined
+a certain function or variable.
+
 ** Lisp code can now test if a given buffer position is inside a
 clickable link with the new function `mouse-on-link-p'.  This is the
 function used by the new `mouse-1-click-follows-link' functionality.
@@ -3105,6 +3114,10 @@
 current file redefined it).
 
 +++
+** `load-history' now records (defun . FUNNAME) when a function is
+defined.  For a variable, it records just the variable name.
+
++++
 ** New Lisp library testcover.el works with edebug to help you determine
 whether you've tested all your Lisp code.  Function testcover-start
 instruments all functions in a given file.  Then test your code.  Function