| delorie.com/archives/browse.cgi | search |
| Mailing-List: | contact cygwin-help AT sourceware DOT cygnus DOT com; run by ezmlm |
| List-Subscribe: | <mailto:cygwin-subscribe AT sources DOT redhat DOT com> |
| List-Archive: | <http://sources.redhat.com/ml/cygwin/> |
| List-Post: | <mailto:cygwin AT sources DOT redhat DOT com> |
| List-Help: | <mailto:cygwin-help AT sources DOT redhat DOT com>, <http://sources.redhat.com/ml/#faqs> |
| Sender: | cygwin-owner AT sources DOT redhat DOT com |
| Delivered-To: | mailing list cygwin AT sources DOT redhat DOT com |
| Message-ID: | <C9A98ED35114D31197D000805FEA668E027B1EDC@mucexch2.muc.sdm.de> |
| From: | "Berndl, Klaus" <klaus DOT berndl AT sdm DOT de> |
| To: | "'ABAK Systemes'" <info AT abaksystemes DOT fr>, cygwin AT cygwin DOT com |
| Subject: | RE: cygwin-mount |
| Date: | Fri, 15 Jun 2001 13:46:50 +0200 |
| MIME-Version: | 1.0 |
| X-Mailer: | Internet Mail Service (5.5.2653.19) |
>I hope my post will not be considered off topic. cygwin-mount.el is the
>emacs package that lets emacs find file with cygwin names. The last
>version of cygwin-mount is really great (even gud knows about cygwin
>mounts) but I get one error on one of our stations when I run
>cygwin-mount-activate.
>The error comes from the line
>... (search-forward-regexp (concat regexp-prefix "user"))
>It can be corrected by adding args to search-forward (third arg set to
>t) but I am not sure if it is the correct way.
You are right, and i have already fixed this in version 1.4.1 which is not yet
released.
In the meanwhile you can fix the code itself, if you change the lines
(if (or (search-forward-regexp (concat regexp-prefix "user"))
(search-forward-regexp (concat regexp-prefix "system")))
to
(if (or (search-forward-regexp (concat regexp-prefix "user") nil t)
(search-forward-regexp (concat regexp-prefix "system") nil t))
Klaus.
--
Want to unsubscribe from this list?
Check out: http://cygwin.com/ml/#unsubscribe-simple
| webmaster | delorie software privacy |
| Copyright © 2019 by DJ Delorie | Updated Jul 2019 |