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 | |
| 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')
| -rw-r--r-- | src/alloc.c | 4 | ||||
| -rw-r--r-- | src/buffer.c | 2 | ||||
| -rw-r--r-- | src/frame.c | 2 | ||||
| -rw-r--r-- | src/frame.h | 2 |
4 files changed, 5 insertions, 5 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) |
diff --git a/src/buffer.c b/src/buffer.c index 7a6ddfa719d..9f3a824a738 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -5943,7 +5943,7 @@ The value takes effect whenever you tell a window to display this buffer; | |||
| 5943 | for instance, with `set-window-buffer' or when `display-buffer' displays it. | 5943 | for instance, with `set-window-buffer' or when `display-buffer' displays it. |
| 5944 | 5944 | ||
| 5945 | A value of `bottom' means put the horizontal scroll bar at the bottom of | 5945 | A value of `bottom' means put the horizontal scroll bar at the bottom of |
| 5946 | the window; a value of nil means don't show any horizonal scroll bars. | 5946 | the window; a value of nil means don't show any horizontal scroll bars. |
| 5947 | A value of t (the default) means do whatever the window's frame | 5947 | A value of t (the default) means do whatever the window's frame |
| 5948 | specifies. */); | 5948 | specifies. */); |
| 5949 | 5949 | ||
diff --git a/src/frame.c b/src/frame.c index d0e585622e2..94100312346 100644 --- a/src/frame.c +++ b/src/frame.c | |||
| @@ -351,7 +351,7 @@ frame_windows_min_size (Lisp_Object frame, Lisp_Object horizontal, Lisp_Object p | |||
| 351 | 351 | ||
| 352 | /* Make sure windows sizes of frame F are OK. new_width and new_height | 352 | /* Make sure windows sizes of frame F are OK. new_width and new_height |
| 353 | are in pixels. A value of -1 means no change is requested for that | 353 | are in pixels. A value of -1 means no change is requested for that |
| 354 | size (but the frame may still have to be resized to accomodate | 354 | size (but the frame may still have to be resized to accommodate |
| 355 | windows with their minimum sizes. | 355 | windows with their minimum sizes. |
| 356 | 356 | ||
| 357 | The argument INHIBIT can assume the following values: | 357 | The argument INHIBIT can assume the following values: |
diff --git a/src/frame.h b/src/frame.h index c942a9008fa..947ba6dccd9 100644 --- a/src/frame.h +++ b/src/frame.h | |||
| @@ -1288,7 +1288,7 @@ extern Lisp_Object Vframe_list; | |||
| 1288 | / FRAME_LINE_HEIGHT (f)) | 1288 | / FRAME_LINE_HEIGHT (f)) |
| 1289 | 1289 | ||
| 1290 | /* Return the pixel width/height of frame F with a text size of | 1290 | /* Return the pixel width/height of frame F with a text size of |
| 1291 | width/heigh. */ | 1291 | width/height. */ |
| 1292 | #define FRAME_TEXT_TO_PIXEL_WIDTH(f, width) \ | 1292 | #define FRAME_TEXT_TO_PIXEL_WIDTH(f, width) \ |
| 1293 | ((width) \ | 1293 | ((width) \ |
| 1294 | + FRAME_SCROLL_BAR_AREA_WIDTH (f) \ | 1294 | + FRAME_SCROLL_BAR_AREA_WIDTH (f) \ |