summaryrefslogtreecommitdiff
path: root/lisp/net
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2011-12-30 17:27:15 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2011-12-30 17:27:15 -0800
commit22bcf2046977620a7f37bbd4dff4be4a4fffc0ed (patch)
tree39e83ae1f1389e54aec5074029a1d430aaca2876 /lisp/net
parentb30941dba07605b40efbf139eed2007d6b1e5445 (diff)
downloademacs-22bcf2046977620a7f37bbd4dff4be4a4fffc0ed.tar.gz
emacs-22bcf2046977620a7f37bbd4dff4be4a4fffc0ed.tar.bz2
emacs-22bcf2046977620a7f37bbd4dff4be4a4fffc0ed.zip
Spelling fixes.
Diffstat (limited to 'lisp/net')
-rw-r--r--lisp/net/socks.el2
-rw-r--r--lisp/net/tramp-gvfs.el2
-rw-r--r--lisp/net/tramp-smb.el2
3 files changed, 3 insertions, 3 deletions
diff --git a/lisp/net/socks.el b/lisp/net/socks.el
index d792077d861..ac8ec15929b 100644
--- a/lisp/net/socks.el
+++ b/lisp/net/socks.el
@@ -414,7 +414,7 @@ version.")
((= atype socks-address-type-name)
(format "%c%s" (length address) address))
(t
- (error "Unkown address type: %d" atype))))
+ (error "Unknown address type: %d" atype))))
(info (gethash proc socks-connections))
request version)
(or info (error "socks-send-command called on non-SOCKS connection %S"
diff --git a/lisp/net/tramp-gvfs.el b/lisp/net/tramp-gvfs.el
index 27dff3aa8d9..abebed6115f 100644
--- a/lisp/net/tramp-gvfs.el
+++ b/lisp/net/tramp-gvfs.el
@@ -1209,7 +1209,7 @@ connection if a previous connection has died for some reason."
(format "Opening connection for %s using %s" host method)
(format "Opening connection for %s@%s using %s" user host method))
- ;; Enable auth-sorce and password-cache.
+ ;; Enable auth-source and password-cache.
(tramp-set-connection-property vec "first-password-request" t)
;; There will be a callback of "askPassword" when a password is
diff --git a/lisp/net/tramp-smb.el b/lisp/net/tramp-smb.el
index 73b9339e25a..c062ebbbfd2 100644
--- a/lisp/net/tramp-smb.el
+++ b/lisp/net/tramp-smb.el
@@ -973,7 +973,7 @@ If VEC has no cifs capabilities, exchange \"/\" by \"\\\\\"."
(setq
localname
(if (string-match "^/?[^/]+\\(/.*\\)" localname)
- ;; There is a share, sparated by "/".
+ ;; There is a share, separated by "/".
(if (not (tramp-smb-get-cifs-capabilities vec))
(mapconcat
(lambda (x) (if (equal x ?/) "\\" (char-to-string x)))