diff options
author | Glenn Morris <rgm@gnu.org> | 2009-09-03 06:54:57 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2009-09-03 06:54:57 +0000 |
commit | 597e2240abb69d6d1dc7cf72350575f8e871b8e4 (patch) | |
tree | 364a3fd7e1ea2401b1d8e6a936dbf74ee8a563c9 /lisp/x-dnd.el | |
parent | 99b195c851fef3b843917001bb621879f5396e71 (diff) | |
download | emacs-597e2240abb69d6d1dc7cf72350575f8e871b8e4.tar.gz |
Use default-value rather than default-enable-multibyte-characters.
Diffstat (limited to 'lisp/x-dnd.el')
-rw-r--r-- | lisp/x-dnd.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/x-dnd.el b/lisp/x-dnd.el index 74c6321c815..f10506a6a9f 100644 --- a/lisp/x-dnd.el +++ b/lisp/x-dnd.el @@ -1,6 +1,7 @@ ;;; x-dnd.el --- drag and drop support for X. -;; Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. +;; Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 +;; Free Software Foundation, Inc. ;; Author: Jan Dj,Ad(Brv <jan.h.d@swipnet.se> ;; Maintainer: FSF @@ -263,7 +264,7 @@ STRING is the uri-list as a string. The URIs are separated by \\r\\n." WINDOW is the window where the drop happened. STRING is the file names as a string, separated by nulls." (let ((uri-list (split-string string "[\0\r\n]" t)) - (coding (and default-enable-multibyte-characters + (coding (and (default-value 'enable-multibyte-characters) (or file-name-coding-system default-file-name-coding-system))) retval) |