diff options
| author | Richard M. Stallman | 1995-02-05 08:58:27 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-02-05 08:58:27 +0000 |
| commit | 81841847d14e995e083b3a537e97d3401e119abd (patch) | |
| tree | 93b34047e9c2609e7dfd524dbdda53f1f6d6f666 /src | |
| parent | 08b610e4dc0ddaa0707ac3dc7eb59dadba21738c (diff) | |
| download | emacs-81841847d14e995e083b3a537e97d3401e119abd.tar.gz emacs-81841847d14e995e083b3a537e97d3401e119abd.zip | |
(Fget_buffer_create): Call buffer_memory_full.
Diffstat (limited to 'src')
| -rw-r--r-- | src/buffer.c | 2 |
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; |