From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED.blaine.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: [PATCH v5] Enable xwidgets on macOS Date: Sat, 27 Jul 2019 16:03:37 +0300 Message-ID: <83v9vnljdi.fsf@gnu.org> References: <20190718192321.65684-1-pcr910303@icloud.com> <20190719041654.88561-1-pcr910303@icloud.com> <83pnm5t8ui.fsf@gnu.org> <831rybn4jm.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Injection-Info: blaine.gmane.org; posting-host="blaine.gmane.org:195.159.176.226"; logging-data="168903"; mail-complaints-to="usenet@blaine.gmane.org" Cc: alan@idiocy.org, emacs-devel@gnu.org To: =?utf-8?B?7KGw7ISx67mI?= Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Jul 27 15:03:54 2019 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([209.51.188.17]) by blaine.gmane.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1hrMMa-000hmc-EW for ged-emacs-devel@m.gmane.org; Sat, 27 Jul 2019 15:03:52 +0200 Original-Received: from localhost ([::1]:45752 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hrMMY-0003Lz-Na for ged-emacs-devel@m.gmane.org; Sat, 27 Jul 2019 09:03:50 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:56480) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hrMMW-0003Lt-FU for emacs-devel@gnu.org; Sat, 27 Jul 2019 09:03:49 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]:39954) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hrMMV-00009X-SP; Sat, 27 Jul 2019 09:03:47 -0400 Original-Received: from [176.228.60.248] (port=2659 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1hrMMV-00059i-BA; Sat, 27 Jul 2019 09:03:47 -0400 In-reply-to: (message from =?utf-8?B?7KGw7ISx67mI?= on Sat, 27 Jul 2019 21:35:07 +0900) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.23 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" Xref: news.gmane.org gmane.emacs.devel:238950 Archived-At: > From: 조성빈 > Date: Sat, 27 Jul 2019 21:35:07 +0900 > Cc: alan@idiocy.org, emacs-devel@gnu.org > > >> +(defun xwidget-webkit-save-as-file (url mime-type file-name) > >> + "For XWIDGET webkit, save URL of MIME-TYPE to location specified by user. > >> +FILE-NAME combined with `xwidget-webkit-download-dir' is the default file name > >> +of the prompt when reading. When the file name the user specified is a > >> +directory, URL is saved at the specified directory as FILE-NAME." > > > > The last sentence is unclear: what will be the directory where the URL > > will be saved, and what will be the name of the saved file in that > > directory? > > Well, it was meaning that the URL will be saved at the directory the user specified in the prompt with the name FILE-NAME. > > I’m not sure how I should reword it due to my poor English skills; can you give me some suggestions? If you show me an example of using this command, and the results -- in what directory and under what base name will the URL be saved -- then I will be able to suggest a better wording. Thanks.