From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Juanma Barranquero Newsgroups: gmane.emacs.devel Subject: Re: [Emacs-diffs] /srv/bzr/emacs/trunk r99834: Minor fixes to a recent contribution to ido.el Date: Tue, 6 Apr 2010 12:43:17 +0200 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Trace: dough.gmane.org 1270550797 27402 80.91.229.12 (6 Apr 2010 10:46:37 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 6 Apr 2010 10:46:37 +0000 (UTC) Cc: Emacs developers To: jwiegley@gmail.com Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Apr 06 12:46:35 2010 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Nz6Il-0003Iy-6g for ged-emacs-devel@m.gmane.org; Tue, 06 Apr 2010 12:46:35 +0200 Original-Received: from localhost ([127.0.0.1]:43537 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Nz6Ik-00055q-Hw for ged-emacs-devel@m.gmane.org; Tue, 06 Apr 2010 06:46:34 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Nz6Fx-0003LF-1o for emacs-devel@gnu.org; Tue, 06 Apr 2010 06:43:41 -0400 Original-Received: from [140.186.70.92] (port=38956 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Nz6Fv-0003Kh-Qe for emacs-devel@gnu.org; Tue, 06 Apr 2010 06:43:40 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1Nz6Fu-0001Ih-KO for emacs-devel@gnu.org; Tue, 06 Apr 2010 06:43:39 -0400 Original-Received: from mail-bw0-f223.google.com ([209.85.218.223]:40550) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Nz6Fu-0001Ia-FJ for emacs-devel@gnu.org; Tue, 06 Apr 2010 06:43:38 -0400 Original-Received: by bwz23 with SMTP id 23so1708651bwz.26 for ; Tue, 06 Apr 2010 03:43:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :from:date:received:message-id:subject:to:cc:content-type :content-transfer-encoding; bh=DNT2EGeRiQEm27s1o7qmrJzFghH0r2lflCe/8ZPXqWg=; b=fcsk1d1dywdx3uHD27za/qJAlFmXqKnQmUCTpMRzJkHsPiycDpvIx3exQcJ+HEjaDH 1wVNizUigdw7yQmCftkMIwHZ7cbzBw9x3TPCTKoNdRPaXfqZ3XhGNqSZhlP3eEroQSFG tMy5l79tLrNZsIN51v3NyMAOiv2AcZmzpgM5g= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:content-transfer-encoding; b=WzKAHyv8NqZ2IOOwza05y+JDy7AnoWNBseCxgt7Zk86kLPIMrvsqeK3z49CK6BogfO p4tGsfAzswtmU0p+Avr0WuoN0NKBzcv01n9Aud3ELKT9N2neUrTHKlh0d7NJZye+v0V0 zoPmS4kaVR4ihlm8QkJMLjmaIUQe42IAbk5Ik= Original-Received: by 10.204.136.15 with HTTP; Tue, 6 Apr 2010 03:43:17 -0700 (PDT) In-Reply-To: Original-Received: by 10.204.150.77 with SMTP id x13mr257946bkv.19.1270550617134; Tue, 06 Apr 2010 03:43:37 -0700 (PDT) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:123257 Archived-At: On Tue, Apr 6, 2010 at 05:38, wrote: > =C2=A0(ido-virtual-buffers): Moved defvar to fix byte-compiler warning. I had moved the defvar near the beginning of the buffer (in the "Temporary storage" section of ido's variables) and added a docstring, so now one of them is redundant. Juanma