emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Emacs-diffs] trunk r113149: * ido.el (ido-read-internal): Fix bug#1


From: Stefan Monnier
Subject: Re: [Emacs-diffs] trunk r113149: * ido.el (ido-read-internal): Fix bug#14620.
Date: Sun, 23 Jun 2013 23:19:11 -0400
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux)

> +      ((if (memq system-type '(windows-nt ms-dos))
> +           (string-match "\\`[a-zA-Z]:\\|[\\][^\\]" ido-selected)
> +         (string-match "/[^/]" ido-selected))

Aka

         ((string-match (if (memq system-type '(windows-nt ms-dos))
                            "\\`[a-zA-Z]:\\|[\\][^\\]"
                          "/[^/]")
                        ido-selected)

-- Stefan



reply via email to

[Prev in Thread] Current Thread [Next in Thread]