From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Benjamin Riefenstahl Newsgroups: gmane.emacs.devel Subject: Re: shell-quote-argument and multibyte Date: 13 Apr 2003 23:57:10 +0200 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: References: <3E99C876.3000809@math.ku.dk> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1050271163 1386 80.91.224.249 (13 Apr 2003 21:59:23 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 13 Apr 2003 21:59:23 +0000 (UTC) Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Sun Apr 13 23:59:22 2003 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 194pVR-0000M5-00 for ; Sun, 13 Apr 2003 23:59:21 +0200 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 194pWW-0003jo-00 for ; Mon, 14 Apr 2003 00:00:28 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 194pUz-0001z9-0F for emacs-devel@quimby.gnus.org; Sun, 13 Apr 2003 17:58:53 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 194pUi-0001y8-00 for emacs-devel@gnu.org; Sun, 13 Apr 2003 17:58:36 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 194pTM-000135-00 for emacs-devel@gnu.org; Sun, 13 Apr 2003 17:57:13 -0400 Original-Received: from [193.28.100.184] (helo=mail.epost.de) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 194pSf-0000q2-00 for emacs-devel@gnu.org; Sun, 13 Apr 2003 17:56:29 -0400 Original-Received: from cicero.benny.turtle-trading.net.epost.de (193.99.153.6) by mail.epost.de (6.7.015) id 3E5ED8940045E20D for emacs-devel@gnu.org; Sun, 13 Apr 2003 23:56:27 +0200 Original-To: emacs-devel@gnu.org In-Reply-To: <3E99C876.3000809@math.ku.dk> Original-Lines: 20 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Emacs development discussions. List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:13215 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:13215 Hi Lars, Lars Hansen writes: > I dired one can specify a list of external viewers. This is a nice > new feature. However, there is a problem, at least on Windows, when > there are special characters in the file name. I don't know where > the problem should be fixed, but I do know that it disapears if > string-make-unibyte is called on ARGUMENT in shell-quote-argument. Isn't this a place to use file-name-coding-system? Like (decode-coding-string ARGUMENT (or file-name-coding-system default-file-name-coding-system)) Or something similar. so long, benny