aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2013-05-04 22:03:08 -0700
committerPaul Eggert2013-05-04 22:03:08 -0700
commita37d34f3b470e3fb4013e01d207488e3ddb78798 (patch)
treec0c554e588e165b0b3feb086c8b309cc30e89702
parentc129b51f4bfbba7b06534661610c7eb6e85826bb (diff)
downloademacs-a37d34f3b470e3fb4013e01d207488e3ddb78798.tar.gz
emacs-a37d34f3b470e3fb4013e01d207488e3ddb78798.zip
Spelling fixes (or remove unnecessary and unusually-spelled words).
-rw-r--r--lisp/ls-lisp.el4
-rw-r--r--src/fileio.c5
-rw-r--r--src/nsfns.m8
3 files changed, 8 insertions, 9 deletions
diff --git a/lisp/ls-lisp.el b/lisp/ls-lisp.el
index 60d6b7b7ba5..82a78545d62 100644
--- a/lisp/ls-lisp.el
+++ b/lisp/ls-lisp.el
@@ -404,8 +404,8 @@ not contain `d', so that a full listing is expected."
404 ;; the wildcard; let's say something similar. 404 ;; the wildcard; let's say something similar.
405 (insert "(No match)\n")) 405 (insert "(No match)\n"))
406 (insert (format "total %.0f\n" (fceiling (/ sum 1024.0)))))) 406 (insert (format "total %.0f\n" (fceiling (/ sum 1024.0))))))
407 ;; dired-insert-directory exprects to find point after the 407 ;; dired-insert-directory expects to find point after the
408 ;; text. But if the listinmg is empty, as e.g. in empty 408 ;; text. But if the listing is empty, as e.g. in empty
409 ;; directories with -a removed from switches, point will be 409 ;; directories with -a removed from switches, point will be
410 ;; before the inserted text, and dired-insert-directory will 410 ;; before the inserted text, and dired-insert-directory will
411 ;; not indent the listing correctly. Going to the end of the 411 ;; not indent the listing correctly. Going to the end of the
diff --git a/src/fileio.c b/src/fileio.c
index 38b98a243b2..4a792d43a97 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -6076,9 +6076,8 @@ file is usually more useful if it contains the deleted text. */);
6076 Hence, for now by default fsync is used only when interactive. 6076 Hence, for now by default fsync is used only when interactive.
6077 6077
6078 For more on why fsync often fails to work on today's hardware, see: 6078 For more on why fsync often fails to work on today's hardware, see:
6079 Zheng M, Tucek J, Qin F, Lillibridge M. Understanding the 6079 Zheng M et al. Understanding the robustness of SSDs under power fault.
6080 robustness of SSDs under power fault. 11th USENIX Conference on 6080 11th USENIX Conf. on File and Storage Technologies, 2013 (FAST '13), 271-84
6081 File and Storage Technologies, 2013 (FAST '13), 271-84
6082 http://www.usenix.org/system/files/conference/fast13/fast13-final80.pdf 6081 http://www.usenix.org/system/files/conference/fast13/fast13-final80.pdf
6083 6082
6084 For more on why fsync does not suffice even if it works properly, see: 6083 For more on why fsync does not suffice even if it works properly, see:
diff --git a/src/nsfns.m b/src/nsfns.m
index 0d9ebe0ef50..95fdd516b99 100644
--- a/src/nsfns.m
+++ b/src/nsfns.m
@@ -1502,7 +1502,7 @@ Optional arg DIR_ONLY_P, if non-nil, means choose only directories. */)
1502 1502
1503 ret = (ret == NSOKButton) || panelOK; 1503 ret = (ret == NSOKButton) || panelOK;
1504 1504
1505 if (ret) 1505 if (ret)
1506 { 1506 {
1507 NSString *str = [panel getFilename]; 1507 NSString *str = [panel getFilename];
1508 if (! str) str = [panel getDirectory]; 1508 if (! str) str = [panel getDirectory];
@@ -1699,7 +1699,7 @@ If omitted or nil, the selected frame's display is used. */)
1699 (Lisp_Object display) 1699 (Lisp_Object display)
1700{ 1700{
1701 NSWindowDepth depth; 1701 NSWindowDepth depth;
1702 1702
1703 check_ns_display_info (display); 1703 check_ns_display_info (display);
1704 depth = [ns_get_screen (display) depth]; 1704 depth = [ns_get_screen (display) depth];
1705 1705
@@ -2267,7 +2267,7 @@ DEFUN ("xw-display-color-p", Fxw_display_color_p, Sxw_display_color_p, 0, 1, 0,
2267{ 2267{
2268 NSWindowDepth depth; 2268 NSWindowDepth depth;
2269 NSString *colorSpace; 2269 NSString *colorSpace;
2270 2270
2271 check_ns_display_info (display); 2271 check_ns_display_info (display);
2272 depth = [ns_get_screen (display) depth]; 2272 depth = [ns_get_screen (display) depth];
2273 colorSpace = NSColorSpaceFromDepth (depth); 2273 colorSpace = NSColorSpaceFromDepth (depth);
@@ -2546,7 +2546,7 @@ Value is t if tooltip was open, nil otherwise. */)
2546 2546
2547/* 2547/*
2548 Handle arrow/function/control keys and copy/paste/cut in file dialogs. 2548 Handle arrow/function/control keys and copy/paste/cut in file dialogs.
2549 Return YES if handeled, NO if not. 2549 Return YES if handled, NO if not.
2550 */ 2550 */
2551static BOOL 2551static BOOL
2552handlePanelKeys (NSSavePanel *panel, NSEvent *theEvent) 2552handlePanelKeys (NSSavePanel *panel, NSEvent *theEvent)