comparison src/buffer.c @ 10668:acbd9fab366a

(Fget_buffer_create): Call buffer_memory_full.
author Richard M. Stallman <rms@gnu.org>
date Sun, 05 Feb 1995 08:58:27 +0000
parents eafe5efc009b
children dea8f022819d
comparison
equal deleted inserted replaced
10667:bacef13bc2ca 10668:acbd9fab366a
264 BUF_GAP_SIZE (b) = 20; 264 BUF_GAP_SIZE (b) = 20;
265 BLOCK_INPUT; 265 BLOCK_INPUT;
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;
273 BUF_BEGV (b) = 1; 273 BUF_BEGV (b) = 1;
274 BUF_ZV (b) = 1; 274 BUF_ZV (b) = 1;