diff lisp/x-dnd.el @ 111333:de02b794c330

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.
author Glenn Morris <rgm@gnu.org>
date Tue, 02 Nov 2010 20:49:04 -0700
parents 280c8ae2476d
children 417b1e4d63cd
line wrap: on
line diff
--- a/lisp/x-dnd.el	Tue Nov 02 20:40:54 2010 -0700
+++ b/lisp/x-dnd.el	Tue Nov 02 20:49:04 2010 -0700
@@ -220,7 +220,7 @@
 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 @@
 
 (provide 'x-dnd)
 
-;; arch-tag: b621fb7e-50da-4323-850b-5fc71ae64621
 ;;; x-dnd.el ends here