summaryrefslogtreecommitdiff
path: root/lisp/x-dnd.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2010-11-02 20:49:04 -0700
committerGlenn Morris <rgm@gnu.org>2010-11-02 20:49:04 -0700
commit537b04b96a8516693acabd5474791f5c77a770d4 (patch)
tree74411a3837610730fad60042b727c5126844a38b /lisp/x-dnd.el
parentcf503f7c08c73b89485ac3d00af917875ed13b39 (diff)
downloademacs-537b04b96a8516693acabd5474791f5c77a770d4.tar.gz
Don't be so lax with spelling.
* lisp/net/dbus.el (dbus-name-owner-changed-handler): Doc fix. * doc/misc/ediff.texi (Quick Help Commands, Miscellaneous): Spelling fix.
Diffstat (limited to 'lisp/x-dnd.el')
-rw-r--r--lisp/x-dnd.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/x-dnd.el b/lisp/x-dnd.el
index c589382e014..f071bc49b74 100644
--- a/lisp/x-dnd.el
+++ b/lisp/x-dnd.el
@@ -220,7 +220,7 @@ The first string is the URL, the second string is the title of that URL.
DATA is encoded in utf-16. Decode the URL and call `x-dnd-handle-uri-list'."
;; Mozilla and applications based on it (Galeon for example) uses
;; text/unicode, but it is impossible to tell if it is le or be. Use what
- ;; the machine Emacs runs on use. This looses if dropping between machines
+ ;; the machine Emacs runs on use. This loses if dropping between machines
;; with different endian, but it is the best we can do.
(let* ((coding (if (eq (byteorder) ?B) 'utf-16be 'utf-16le))
(string (decode-coding-string data coding))
@@ -766,5 +766,4 @@ FORMAT is 32 (not used). MESSAGE is the data part of an XClientMessageEvent."
(provide 'x-dnd)
-;; arch-tag: b621fb7e-50da-4323-850b-5fc71ae64621
;;; x-dnd.el ends here