unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Ken Brown <kbrown@cornell.edu>
To: Chong Yidong <cyd@stupidchicken.com>
Cc: Emacs <emacs-devel@gnu.org>
Subject: Re: Cygwin patches
Date: Fri, 20 Nov 2009 17:26:12 -0500	[thread overview]
Message-ID: <4B071784.5030901@cornell.edu> (raw)
In-Reply-To: <871vjs7tn4.fsf@stupidchicken.com>

On 11/20/2009 4:50 PM, Chong Yidong wrote:
> Ken Brown <kbrown@cornell.edu> writes:
> 
>> Now that you're preparing for emacs 23.2, could you please apply the
>> cygwin patches that I submitted last June?
> 
> Thanks, I've checked in your changes, except for the following:
> 
>> --- origsrc/lisp/net/browse-url.el	2009-11-20 11:34:25.000000000 -0500
>> +++ src/lisp/net/browse-url.el	2009-11-20 11:35:28.000000000 -0500
>> @@ -693,7 +693,9 @@
>>  	  (cond ((not (buffer-modified-p)))
>>  		(browse-url-save-file (save-buffer))
>>  		(t (message "%s modified since last save" file))))))
>> -  (browse-url (browse-url-file-url file))
>> +  (if (eq system-type 'cygwin)
>> +      (shell-command (concat "cygstart " (shell-quote-argument file)))
>> +    (browse-url (browse-url-file-url file)))
>>    (run-hooks 'browse-url-of-file-hook))
> 
> I still don't understand why cygwin needs special handling when, e.g.,
> the other Windows ports don't.  Could you explain?

Cygwin provides a linux-like environment for Windows, but it doesn't 
provide its own web browser.  So it's natural for a cygwin user to just 
want to use the default Windows browser.  And cygwin provides the 
"cygstart" command precisely to make this sort of thing easy.  Thus

   cygstart /unix/style/path/to/file.html

will open file.html in the default Windows browser.  Cygstart takes care 
of converting the path to a form that Windows understands.  Without my 
patch, (browse-url-file-url file) returns a URL that doesn't get 
correctly converted.

Ken

Without my patch,





  parent reply	other threads:[~2009-11-20 22:26 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-11-20 20:00 Cygwin patches Ken Brown
2009-11-20 21:50 ` Chong Yidong
2009-11-20 21:59   ` Lennart Borgman
2009-11-20 22:26   ` Ken Brown [this message]
2009-11-20 23:54     ` Lennart Borgman
2009-11-21  8:12     ` Eli Zaretskii
2009-11-21 12:12       ` Ken Brown
2009-11-21 12:16         ` Lennart Borgman
2009-11-21 12:42         ` Eli Zaretskii
2009-11-21 21:21           ` Ken Brown
2009-11-21 21:48             ` Eli Zaretskii
2009-11-22  5:25             ` Davis Herring
2009-11-22 12:59               ` Ken Brown
2009-11-22 23:03                 ` Chong Yidong
2009-11-22 23:23                   ` Ken Brown
2009-11-22 23:30                     ` Lennart Borgman
2009-11-23  1:37                       ` Ken Brown
2009-11-23  1:42                         ` Lennart Borgman
2009-11-23  1:50                         ` Chong Yidong
2009-11-23  2:09                           ` Ken Brown
2009-11-23 19:50                             ` Ken Brown
2009-11-23 20:59                               ` Chong Yidong
  -- strict thread matches above, loose matches on Subject: below --
2009-11-20 23:40 Angelo Graziosi
2009-11-21  4:50 ` Chong Yidong

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4B071784.5030901@cornell.edu \
    --to=kbrown@cornell.edu \
    --cc=cyd@stupidchicken.com \
    --cc=emacs-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).