From: Richard M. Stallman Date: Sun, 5 Feb 1995 08:58:27 +0000 (+0000) Subject: (Fget_buffer_create): Call buffer_memory_full. X-Git-Tag: emacs-19.34~5190 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=81841847d14e995e083b3a537e97d3401e119abd;p=emacs.git (Fget_buffer_create): Call buffer_memory_full. --- diff --git a/src/buffer.c b/src/buffer.c index 1992937cbfc..334d71931a0 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -266,7 +266,7 @@ The value is never nil.") BUFFER_ALLOC (BUF_BEG_ADDR (b), BUF_GAP_SIZE (b)); UNBLOCK_INPUT; if (! BUF_BEG_ADDR (b)) - memory_full (); + buffer_memory_full (); BUF_PT (b) = 1; BUF_GPT (b) = 1;