]> git.eshelyaron.com Git - emacs.git/commitdiff
Spelling and minor grammar fixes
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 10 Mar 2015 07:49:20 +0000 (00:49 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 10 Mar 2015 07:49:57 +0000 (00:49 -0700)
lisp/ChangeLog
lisp/emacs-lisp/package.el
lisp/net/tramp-adb.el
lisp/net/tramp-sh.el

index df45ec496321466303c841f5ff3738d4171cb80a..c25f4efcdd0e93cf6f7c4d9e9da5da29cf7c29cc 100644 (file)
        Use `with-temp-file'.
 
        * net/tramp-sh.el (tramp-perl-file-attributes)
-       (tramp-perl-directory-files-and-attributes): Escape apostrophs in
+       (tramp-perl-directory-files-and-attributes): Escape apostrophes in
        file names.
        (tramp-do-file-attributes-with-stat): Quote file name.
        (tramp-sh-handle-directory-files-and-attributes): Fall back to
        Normalize use of "cd".
        (tramp-do-directory-files-and-attributes-with-stat): Use the
        `quoting-style' arg of `ls' if possible.  Make it also working for
-       file names with apostrophs.
+       file names with apostrophes.
        (tramp-sh-handle-file-name-all-completions): Use arguments of `ls'
        in proper order.
        (tramp-do-copy-or-rename-file-via-buffer)
index 00608f3d2c7bba3a5365a7a4b0c70406db0b1518..0d001bff4cf1ca9920a65ee39c7436889e21bce3 100644 (file)
@@ -1695,10 +1695,10 @@ similar to an entry in `package-alist'.  Save the cached copy to
 
 ;;;###autoload
 (defun package-refresh-contents ()
-  "Download the description of all configured ELPAs.
+  "Download descriptions of all configured ELPA packages.
 For each archive configured in the variable `package-archives',
-this informs Emacs about the latest versions of all packages it
-offers, and makes them available for download."
+inform Emacs about the latest versions of all packages it offers,
+and make them available for download."
   (interactive)
   ;; FIXME: Do it asynchronously.
   (unless (file-exists-p package-user-dir)
index fae54520102a7d4c437b2472d9ce69d58fdd172a..6696dcf15052d2c76cb5e1f714fe5e423cc41bc8 100644 (file)
@@ -1013,7 +1013,7 @@ PRESERVE-UID-GID and PRESERVE-EXTENDED-ATTRIBUTES are completely ignored."
          (tramp-set-connection-property v "process-buffer" nil))))))
 
 (defun tramp-adb-get-device (vec)
-  "Return full host name from VEC to be used in shell exceution.
+  "Return full host name from VEC to be used in shell execution.
 E.g. a host name \"192.168.1.1#5555\" returns \"192.168.1.1:5555\"
      a host name \"R38273882DE\" returns \"R38273882DE\"."
   ;; Sometimes this is called before there is a connection process
index 580c5d08ecdb56133516f2e7bc797c7c4e4bfd5c..76d2b0149175e8b36aa28744f7949c8627b24fe4 100644 (file)
@@ -1695,7 +1695,7 @@ be non-negative integers."
      ;; "-"; this would confuse xargs.  "ls -aQ" might be a solution,
      ;; but it does not work on all remote systems.  Therefore, we
      ;; use \000 as file separator.
-     ;; Apostrophs in the stat output are masked as \037 character, in
+     ;; Apostrophes in the stat output are masked as \037 characters, in
      ;; order to make a proper shell escape of them in file names.
      "cd %s && echo \"(\"; (%s %s -a | "
      "xargs %s -c "
@@ -1703,7 +1703,7 @@ be non-negative integers."
      " -- 2>/dev/null | sed -e 's/\"/\\\\\"/g' -e 's/\037/\"/g'); echo \")\"")
     (tramp-shell-quote-argument localname)
     (tramp-get-ls-command vec)
-    ;; On systems which have no quotings style, file names with
+    ;; On systems which have no quoting style, file names with
     ;; special characters could fail.
     (if (tramp-get-ls-command-with-quoting-style vec)
        "--quoting-style=shell" "")