aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/url
diff options
context:
space:
mode:
authorPaul Eggert <[email protected]>2011-11-14 23:55:13 -0800
committerPaul Eggert <[email protected]>2011-11-14 23:55:13 -0800
commitda6062e6ea440f6cd68db251390fcb91450103ba (patch)
tree8643e5ab1b5045cfb22e254412632f671658645f /lisp/url
parent672b871d9838335ac12faaf62793a811f1269a66 (diff)
Spelling fixes.
Diffstat (limited to 'lisp/url')
-rw-r--r--lisp/url/url-dav.el2
-rw-r--r--lisp/url/url-http.el4
-rw-r--r--lisp/url/url.el4
3 files changed, 5 insertions, 5 deletions
diff --git a/lisp/url/url-dav.el b/lisp/url/url-dav.el
index 3d1f6afcb0..95ab2623ff 100644
--- a/lisp/url/url-dav.el
+++ b/lisp/url/url-dav.el
@@ -909,7 +909,7 @@ Returns nil if URL contains no name starting with FILE."
;; Only one file and FILE matches it exactly...
t)
(t
- ;; Need to figure out the longest string that they have in commmon
+ ;; Need to figure out the longest string that they have in common
(setq matches (sort matches (lambda (a b) (> (length a) (length b)))))
(let ((n (length file))
(searching t)
diff --git a/lisp/url/url-http.el b/lisp/url/url-http.el
index e9da4a1010..bb7744be43 100644
--- a/lisp/url/url-http.el
+++ b/lisp/url/url-http.el
@@ -702,7 +702,7 @@ should be shown to the user."
(not-acceptable ; 406
;; The resource identified by the request is only capable of
;; generating response entities which have content
- ;; characteristics nota cceptable according to the accept
+ ;; characteristics not acceptable according to the accept
;; headers sent in the request.
(setq success t))
(proxy-authentication-required ; 407
@@ -1092,7 +1092,7 @@ the end of the document."
(url-http-activate-callback)))
((string= "CONNECT" url-http-method)
;; A CONNECT request is finished, but we cannot stick this
- ;; back on the free connectin list
+ ;; back on the free connection list
(url-http-debug "CONNECT request must have headers only.")
(when (url-http-parse-headers)
(url-http-activate-callback)))
diff --git a/lisp/url/url.el b/lisp/url/url.el
index 7136b6023c..c95b61c43f 100644
--- a/lisp/url/url.el
+++ b/lisp/url/url.el
@@ -252,7 +252,7 @@ no further processing). URL is either a string or a parsed URL."
;; interrupt it before it got a chance to handle process input.
;; `sleep-for' was tried but it lead to other forms of
;; hanging. --Stef
- (unless (or (with-local-quit
+ (unless (or (with-local-quit
(accept-process-output proc))
(null proc))
;; accept-process-output returned nil, maybe because the process
@@ -290,7 +290,7 @@ no further processing). URL is either a string or a parsed URL."
;; These requires could advantageously be moved to url-mm-callback or
;; turned into autoloads, but I suspect that it would introduce some bugs
;; because loading those files from a process sentinel or filter may
- ;; result in some undesirable carner cases.
+ ;; result in some undesirable corner cases.
(require 'mm-decode)
(require 'mm-view)
(url-retrieve url 'url-mm-callback nil))