diff options
| author | Paul Eggert | 2014-09-11 12:44:25 -0700 |
|---|---|---|
| committer | Paul Eggert | 2014-09-11 12:44:25 -0700 |
| commit | 0f2ed59206faf8d71c71203613a715c6aa187c3e (patch) | |
| tree | 7da027a3fc4ed89cb156052fe0c481b7d70f71f7 /src/alloc.c | |
| parent | 1dd1218653be3425e7f53ea1cfcb0d14addfaa05 (diff) | |
| download | emacs-0f2ed59206faf8d71c71203613a715c6aa187c3e.tar.gz emacs-0f2ed59206faf8d71c71203613a715c6aa187c3e.zip | |
Spelling fixes.
* lisp/ses.el (ses-file-format-extend-parameter-list): Rename from
ses-file-format-extend-paramter-list. All uses changed.
* lisp/gnus-cloud.el (gnus-cloud-parse-version-1): Fix misspelling
of ":delete".
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 1dbd46d6f89..a0725efef07 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -453,7 +453,7 @@ mmap_lisp_allowed_p (void) | |||
| 453 | /* If we can't store all memory addresses in our lisp objects, it's | 453 | /* If we can't store all memory addresses in our lisp objects, it's |
| 454 | risky to let the heap use mmap and give us addresses from all | 454 | risky to let the heap use mmap and give us addresses from all |
| 455 | over our address space. We also can't use mmap for lisp objects | 455 | over our address space. We also can't use mmap for lisp objects |
| 456 | if we might dump: unexec doesn't preserve the contents of mmaped | 456 | if we might dump: unexec doesn't preserve the contents of mmapped |
| 457 | regions. */ | 457 | regions. */ |
| 458 | return pointers_fit_in_lispobj_p () && !might_dump; | 458 | return pointers_fit_in_lispobj_p () && !might_dump; |
| 459 | } | 459 | } |
| @@ -7131,7 +7131,7 @@ detect_suspicious_free (void* ptr) | |||
| 7131 | 7131 | ||
| 7132 | DEFUN ("suspicious-object", Fsuspicious_object, Ssuspicious_object, 1, 1, 0, | 7132 | DEFUN ("suspicious-object", Fsuspicious_object, Ssuspicious_object, 1, 1, 0, |
| 7133 | doc: /* Return OBJ, maybe marking it for extra scrutiny. | 7133 | doc: /* Return OBJ, maybe marking it for extra scrutiny. |
| 7134 | If Emacs is compiled with suspicous object checking, capture | 7134 | If Emacs is compiled with suspicious object checking, capture |
| 7135 | a stack trace when OBJ is freed in order to help track down | 7135 | a stack trace when OBJ is freed in order to help track down |
| 7136 | garbage collection bugs. Otherwise, do nothing and return OBJ. */) | 7136 | garbage collection bugs. Otherwise, do nothing and return OBJ. */) |
| 7137 | (Lisp_Object obj) | 7137 | (Lisp_Object obj) |