aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1995-02-05 08:58:27 +0000
committerRichard M. Stallman1995-02-05 08:58:27 +0000
commit81841847d14e995e083b3a537e97d3401e119abd (patch)
tree93b34047e9c2609e7dfd524dbdda53f1f6d6f666 /src
parent08b610e4dc0ddaa0707ac3dc7eb59dadba21738c (diff)
downloademacs-81841847d14e995e083b3a537e97d3401e119abd.tar.gz
emacs-81841847d14e995e083b3a537e97d3401e119abd.zip
(Fget_buffer_create): Call buffer_memory_full.
Diffstat (limited to 'src')
-rw-r--r--src/buffer.c2
1 files changed, 1 insertions, 1 deletions
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.")
266 BUFFER_ALLOC (BUF_BEG_ADDR (b), BUF_GAP_SIZE (b)); 266 BUFFER_ALLOC (BUF_BEG_ADDR (b), BUF_GAP_SIZE (b));
267 UNBLOCK_INPUT; 267 UNBLOCK_INPUT;
268 if (! BUF_BEG_ADDR (b)) 268 if (! BUF_BEG_ADDR (b))
269 memory_full (); 269 buffer_memory_full ();
270 270
271 BUF_PT (b) = 1; 271 BUF_PT (b) = 1;
272 BUF_GPT (b) = 1; 272 BUF_GPT (b) = 1;