From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Bob Proulx Newsgroups: gmane.emacs.help,gmane.emacs.windows Subject: Re: Emacs gdb interface Date: Wed, 21 Mar 2012 01:50:07 -0600 Message-ID: <20120321075007.GF23207@discord.proulx.com> References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1332318513 4932 80.91.229.3 (21 Mar 2012 08:28:33 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Wed, 21 Mar 2012 08:28:33 +0000 (UTC) To: Dani Moncayo , help-emacs-windows@gnu.org, help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Mar 21 09:28:30 2012 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1SAGuD-0002EC-Q3 for geh-help-gnu-emacs@m.gmane.org; Wed, 21 Mar 2012 09:28:29 +0100 Original-Received: from localhost ([::1]:48042 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SAGuC-00049L-Uk for geh-help-gnu-emacs@m.gmane.org; Wed, 21 Mar 2012 04:28:28 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:53068) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SAGu8-00048z-4o for help-gnu-emacs@gnu.org; Wed, 21 Mar 2012 04:28:25 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SAGu1-00007R-SR for help-gnu-emacs@gnu.org; Wed, 21 Mar 2012 04:28:23 -0400 Original-Received: from joseki.proulx.com ([216.17.153.58]:36047) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SAGts-00006C-FI; Wed, 21 Mar 2012 04:28:08 -0400 Original-Received: from discord.proulx.com (localhost [127.0.0.1]) by joseki.proulx.com (Postfix) with ESMTP id 750E821249; Wed, 21 Mar 2012 02:28:05 -0600 (MDT) Original-Received: by discord.proulx.com (Postfix, from userid 1000) id 4565290C09A; Wed, 21 Mar 2012 01:50:07 -0600 (MDT) Mail-Followup-To: Bob Proulx , Dani Moncayo , help-emacs-windows@gnu.org, help-gnu-emacs@gnu.org Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.18 (2008-05-17) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 216.17.153.58 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:84058 gmane.emacs.windows:5311 Archived-At: Dani Moncayo wrote: > > There is no newline in the intended output, so perhaps the output isn't > > flushed yet. Does it appear if you step through the rest of the program? > > I've tried it and not, it never appears, even after I've reached the > end of the program. Please add a newline to the output. I think that without the newline the output may be covered by other output. I think it likely that the output is actually being output but just covered. - printf("hello, world!"); + printf("hello, world!\n"); Bob