diff options
| author | Tom Tromey | 2013-03-17 05:17:24 -0600 |
|---|---|---|
| committer | Tom Tromey | 2013-03-17 05:17:24 -0600 |
| commit | 6bd488cd8d05aa3983ca55f70ee384732d8c0085 (patch) | |
| tree | 5645fc7b882638d6c0eb3f61fd55bde1a63fc190 /src/alloc.c | |
| parent | 71f91792e3013b397996905224f387da5cc539a9 (diff) | |
| parent | 9c44569ea2a18099307e0571d523d8637000a153 (diff) | |
| download | emacs-6bd488cd8d05aa3983ca55f70ee384732d8c0085.tar.gz emacs-6bd488cd8d05aa3983ca55f70ee384732d8c0085.zip | |
merge from trunk
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/alloc.c b/src/alloc.c index 63fd973ffce..6da0ac428ab 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -413,11 +413,11 @@ buffer_memory_full (ptrdiff_t nbytes) | |||
| 413 | 413 | ||
| 414 | #ifndef REL_ALLOC | 414 | #ifndef REL_ALLOC |
| 415 | memory_full (nbytes); | 415 | memory_full (nbytes); |
| 416 | #endif | 416 | #else |
| 417 | |||
| 418 | /* This used to call error, but if we've run out of memory, we could | 417 | /* This used to call error, but if we've run out of memory, we could |
| 419 | get infinite recursion trying to build the string. */ | 418 | get infinite recursion trying to build the string. */ |
| 420 | xsignal (Qnil, Vmemory_signal_data); | 419 | xsignal (Qnil, Vmemory_signal_data); |
| 420 | #endif | ||
| 421 | } | 421 | } |
| 422 | 422 | ||
| 423 | /* A common multiple of the positive integers A and B. Ideally this | 423 | /* A common multiple of the positive integers A and B. Ideally this |