emacs-devel
[Top][All Lists]
Advanced

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

Re: PATCH: Fix IDO interaction with uniquify.el


From: Juanma Barranquero
Subject: Re: PATCH: Fix IDO interaction with uniquify.el
Date: Wed, 5 May 2010 21:48:57 +0200

On Wed, May 5, 2010 at 21:12, Leo <address@hidden> wrote:

> The simplification was uncalled for and it didn't work. I had to use a
> remote machine to generate the patches against trunk and must have
> some mixups during testing.

It still doesn't seem against the trunk. Your patch has:

       (when buf
-       (kill-buffer buf)
-       ;; Check if buffer still exists.
-       (if (get-buffer buf)
+       (if (null (kill-buffer buf))

but the code on trunk/lisp/ido.el is

      (when buf
        (ido-kill-buffer-internal buf)
        ;; Check if buffer still exists.
        (if (get-buffer buf)

    Juanma




reply via email to

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