]> git.eshelyaron.com Git - emacs.git/commitdiff
*** empty log message ***
authorGerd Moellmann <gerd@gnu.org>
Thu, 4 Oct 2001 09:46:28 +0000 (09:46 +0000)
committerGerd Moellmann <gerd@gnu.org>
Thu, 4 Oct 2001 09:46:28 +0000 (09:46 +0000)
etc/NEWS
lispref/ChangeLog
src/ChangeLog

index d15bd07d70d193c9cd3bb5142de5358ddb6c9a55..4e0ae7d247b7b4b62604047f01d3bbcbc585ddf5 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -13,14 +13,14 @@ For older news, see the file ONEWS
 
 ** Variable aliases have been implemented
 
-- macro: defvaralias ALIAS-VAR BASE-VAR
+- Macro: defvaralias ALIAS-VAR BASE-VAR
 
 This defines the symbol ALIAS-VAR as a variable alias for symbol
 BASE-VAR.  This means that retrieving the value of ALIAS-VAR returns
 the value of BASE-VAR, and changing the value of ALIAS-VAR changes the
 value of BASE-VAR.
 
-- function: indirect-variable VARIABLE
+- Function: indirect-variable VARIABLE
 
 This function returns the variable at the end of the chain of aliases
 of VARIABLE.  If VARIABLE is not a symbol, or if VARIABLE is not
index 6061a9fa20e870adad7568a85a556f714ec18260..37bb1c93af1c74404a6c353531a33065bbd6e7cf 100644 (file)
@@ -1,3 +1,7 @@
+2001-10-04  Gerd Moellmann  <gerd@gnu.org>
+
+       * variables.texi (Variable Aliases): New node.
+
 2001-10-02  Miles Bader  <miles@gnu.org>
 
        * minibuf.texi (Minibuffer Misc): Add entries for
index 268d0b4c186ece631de94b679aaf3b4c74a712b4..a94a9a10a0491cdd5db0c1e080d2bb75999e2d8e 100644 (file)
@@ -1,3 +1,13 @@
+2001-10-04  Gerd Moellmann  <gerd@gnu.org>
+
+       This adds a post-gc-hook that's run with GC inhibited.  Requested
+       by Francois Pinard.  XEmacs has it.
+
+       * alloc.c (Vpost_gc_hook, Qpost_gc_hook): New variables.
+       (syms_of_alloc): DEFVAR_LISP post-gc-hook, initialize 
+       Qpost_gc_hook.
+       (Fgarbage_collect): Run post-gc-hook.
+
 2001-10-04  Gerd Moellmann  <gerd@gnu.org>
 
        This adds `defvaralias' and `indirect-variable'.  Changes not