From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28540 invoked by alias); 4 Aug 2003 17:48:38 -0000 Mailing-List: contact gdb-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sources.redhat.com Received: (qmail 28530 invoked from network); 4 Aug 2003 17:48:37 -0000 Received: from unknown (HELO concert.shout.net) (204.253.184.25) by sources.redhat.com with SMTP; 4 Aug 2003 17:48:37 -0000 Received: from duracef.shout.net (duracef.shout.net [204.253.184.12]) by concert.shout.net (8.12.9/8.12.9) with ESMTP id h74HmbbA025642; Mon, 4 Aug 2003 12:48:37 -0500 Received: from duracef.shout.net (localhost [127.0.0.1]) by duracef.shout.net (8.12.9/8.12.9) with ESMTP id h74HmbHK004619; Mon, 4 Aug 2003 12:48:37 -0500 Received: (from mec@localhost) by duracef.shout.net (8.12.9/8.12.9/Submit) id h74HmbQD004618; Mon, 4 Aug 2003 13:48:37 -0400 Date: Mon, 04 Aug 2003 17:48:00 -0000 From: Michael Elizabeth Chastain Message-Id: <200308041748.h74HmbQD004618@duracef.shout.net> To: gdb@sources.redhat.com, jacqueslenormand@sympatico.ca Subject: Re: MI interface grammar question X-SW-Source: 2003-08/txt/msg00046.txt.bz2 nl ==>| |CR | CR-LF These are just ASCII characters. 'CR' is a literal character, ascii "carriage return", character 0x0D. 'LF' is a literal character, ascii "line feed", character 0x0A. For historical reasons, there are two separate characters to mark the end of the line. Unix and Linux systems use 'LF'. Windows and MS-DOS systems use 'CR' followed by 'LF'. Macintosh systems use 'CR'. For more information on ascii, hit google, or try this: http://www.jimprice.com/jim-asc.htm Michael C