# HG changeset patch # User Jim Blandy # Date 718490560 0 # Node ID 4bea5980f778de585bb2d18b26064ef72c5f3ddb # Parent a45cf4b36ce9a8755a9d9e582b80a11fe2b2f9ac * alloc.c (Fmemory_limit): Explain why we divide by 1024. Don't bother trying to display the size in the minibuffer. diff -r a45cf4b36ce9 -r 4bea5980f778 src/alloc.c --- a/src/alloc.c Wed Oct 07 19:46:04 1992 +0000 +++ b/src/alloc.c Wed Oct 07 20:42:40 1992 +0000 @@ -2015,15 +2015,12 @@ DEFUN ("memory-limit", Fmemory_limit, Smemory_limit, 0, 0, "", "Return the address of the last byte Emacs has allocated, divided by 1024.\n\ This may be helpful in debugging Emacs's memory usage.\n\ -If called interactively, print the result in the minibuffer.") +The value is divided by 1024 to make sure it will fit in a lisp integer.") () { Lisp_Object end; - XSET (end, Lisp_Int, (int) sbrk (0)); - - if (! NILP (Finteractive_p)) - message ("Memory limit at %dk.", XINT (end)); + XSET (end, Lisp_Int, (int) sbrk (0) / 1024); return end; }