From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Ivanov Dmitry Newsgroups: gmane.emacs.devel Subject: Re[2]: Incorrect error message for file operation in Windows Date: Mon, 3 Jun 2013 11:31:39 +0400 Message-ID: <491098163.20130603113139@gmail.com> References: <1265839700.20130602145343@gmail.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1370244716 4128 80.91.229.3 (3 Jun 2013 07:31:56 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 3 Jun 2013 07:31:56 +0000 (UTC) Cc: emacs-devel@gnu.org To: Stefan Monnier Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Jun 03 09:31:55 2013 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1UjPFD-00076H-2w for ged-emacs-devel@m.gmane.org; Mon, 03 Jun 2013 09:31:55 +0200 Original-Received: from localhost ([::1]:39905 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UjPFC-0007Tw-N8 for ged-emacs-devel@m.gmane.org; Mon, 03 Jun 2013 03:31:54 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:36554) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UjPF4-0007TL-Pq for emacs-devel@gnu.org; Mon, 03 Jun 2013 03:31:51 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UjPF1-000393-55 for emacs-devel@gnu.org; Mon, 03 Jun 2013 03:31:46 -0400 Original-Received: from mail-lb0-f177.google.com ([209.85.217.177]:60910) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UjPF0-00038X-Tc for emacs-devel@gnu.org; Mon, 03 Jun 2013 03:31:43 -0400 Original-Received: by mail-lb0-f177.google.com with SMTP id y6so399023lbh.36 for ; Mon, 03 Jun 2013 00:31:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:x-mailer:x-priority:message-id:to:cc:subject:in-reply-to :references:mime-version:content-type:content-transfer-encoding; bh=2HDrYz5zGHUAgbB5qbFePJzF8gvlB5Ze87nRXP7c674=; b=zZxXWCXzWAFhIPaWUQTCljlZQEI3ZF/Cs0dwx23+c6qcbnXrzi/oazFghqxF2HPhIV WrYSV+SlTMuC0Fl9b1FEHggzZY4wzOJLa3nCMzA0+VKxyGqan2muWu3FMlQXTpylNv8T FKeyjTVgNJSatp+t/bjnsAkzp9a02CV0CXe2BQQH8WNuHmOsTnDzGI+bz+jtEvNTmNzq EoLwAmr5m+GlZZVBEGf6i04+r80KBn1uGfmMe+a8ZoTV4ae3k9A8dGeKSeAA8gtKLMaw LgEYanUegTK3rFFIHpwuIFmibvlHeulc4mE4CzA5twqny2YPSqVUMHW054xisNe88GT5 WNLw== X-Received: by 10.152.27.170 with SMTP id u10mr10330524lag.45.1370244701767; Mon, 03 Jun 2013 00:31:41 -0700 (PDT) Original-Received: from organiza-r2odev (ppp37-190-57-38.pppoe.spdop.ru. [37.190.57.38]) by mx.google.com with ESMTPSA id o6sm3062343laj.2.2013.06.03.00.31.39 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Mon, 03 Jun 2013 00:31:40 -0700 (PDT) X-Mailer: The Bat! (v3.98.4) Professional X-Priority: 3 (Normal) In-Reply-To: X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 209.85.217.177 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:160030 Archived-At: > On an unrelated note: the above `condition-case' will catch the signals > `error' and `quote', but of course, there is no such thing as > a `quote' signal. IOW you wanted to write: > > (condition-case ex > (copy-file "~/.emacs.d/drupal.el" "e:/video") > (error (message (format "Caught exception: [%s]" ex)))) Using your version now, thanks.