]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fgarbage_collect): Don't truncate command-history here.
authorRichard M. Stallman <rms@gnu.org>
Mon, 20 Apr 1998 17:04:16 +0000 (17:04 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 20 Apr 1998 17:04:16 +0000 (17:04 +0000)
src/alloc.c

index 6948ff1a3d89c8a50835636f4932b73a0c94ab23..b41af98ac4fab6bc5e3a6a537c947a25bc2e812d 100644 (file)
@@ -55,8 +55,6 @@ extern __malloc_size_t _bytes_used;
 extern int __malloc_extra_blocks;
 #endif /* !defined(DOUG_LEA_MALLOC) */
 
-extern Lisp_Object Vhistory_length;
-
 #define max(A,B) ((A) > (B) ? (A) : (B))
 #define min(A,B) ((A) < (B) ? (A) : (B))
 
@@ -1728,15 +1726,7 @@ Garbage collection happens automatically if you cons more than\n\
   if (garbage_collection_messages)
     message1_nolog ("Garbage collecting...");
 
-  /* Don't keep command history around forever.  */
-  if (NUMBERP (Vhistory_length) && XINT (Vhistory_length) > 0)
-    {
-      tem = Fnthcdr (Vhistory_length, Vcommand_history);
-      if (CONSP (tem))
-       XCONS (tem)->cdr = Qnil;
-    }
-
-  /* Likewise for undo information.  */
+  /* Don't keep undo information around forever.  */
   {
     register struct buffer *nextb = all_buffers;