From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Michael Albinus Newsgroups: gmane.emacs.devel Subject: Re: patch for removing some c99 style comments Date: Mon, 24 Aug 2009 21:46:41 +0200 Message-ID: <87eir1uh9a.fsf@gmx.de> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1251143225 13681 80.91.229.12 (24 Aug 2009 19:47:05 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 24 Aug 2009 19:47:05 +0000 (UTC) Cc: Emacs Development To: joakim@verona.se Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Aug 24 21:46:58 2009 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.50) id 1MffVJ-0001Sx-K3 for ged-emacs-devel@m.gmane.org; Mon, 24 Aug 2009 21:46:57 +0200 Original-Received: from localhost ([127.0.0.1]:47559 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MffVI-00085s-Kh for ged-emacs-devel@m.gmane.org; Mon, 24 Aug 2009 15:46:56 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MffVD-000853-Fn for emacs-devel@gnu.org; Mon, 24 Aug 2009 15:46:51 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MffV9-000829-4A for emacs-devel@gnu.org; Mon, 24 Aug 2009 15:46:51 -0400 Original-Received: from [199.232.76.173] (port=46251 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MffV8-000826-TS for emacs-devel@gnu.org; Mon, 24 Aug 2009 15:46:46 -0400 Original-Received: from mail.gmx.net ([213.165.64.20]:43997) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1MffV8-0006SI-8K for emacs-devel@gnu.org; Mon, 24 Aug 2009 15:46:46 -0400 Original-Received: (qmail invoked by alias); 24 Aug 2009 19:46:44 -0000 Original-Received: from p57A22881.dip0.t-ipconnect.de (EHLO arthur.local) [87.162.40.129] by mail.gmx.net (mp069) with SMTP; 24 Aug 2009 21:46:44 +0200 X-Authenticated: #3708877 X-Provags-ID: V01U2FsdGVkX19cp2APU/dcj0x1BT4UcAWSZQqPmpv1V+DgN0wSo2 NqwVLcLipM/RmQ In-Reply-To: (joakim@verona.se's message of "Mon, 24 Aug 2009 14:08:30 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.50 (gnu/linux) X-Y-GMX-Trusted: 0 X-FuHaFi: 0.57 X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. 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:114564 Archived-At: joakim@verona.se writes: > diff --git a/src/dbusbind.c b/src/dbusbind.c > index 33a0700..c2d549c 100644 > --- a/src/dbusbind.c > +++ b/src/dbusbind.c > @@ -744,7 +744,7 @@ xd_add_watch (watch, data) > if (fd == -1) > return FALSE; > > - //printf ("xd_add_watch: %d\n", fd); > + /*printf ("xd_add_watch: %d\n", fd);*/ > /* Add the file descriptor to input_wait_mask. */ > add_keyboard_wait_descriptor (fd); > } > @@ -769,7 +769,7 @@ xd_remove_watch (watch, data) > if (fd == -1) > return; > > - //printf ("xd_remove_watch: %d\n", fd); > + /*printf ("xd_remove_watch: %d\n", fd);*/ > /* Remove the file descriptor from input_wait_mask. */ > delete_keyboard_wait_descriptor (fd); > } That's already history. It was a private comment for test code I forgot to cleanup. Best regards, Michael.