From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7685 invoked by alias); 9 Jun 2003 21:10:56 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 7637 invoked from network); 9 Jun 2003 21:10:55 -0000 Received: from unknown (HELO zenia.home) (12.223.225.216) by sources.redhat.com with SMTP; 9 Jun 2003 21:10:55 -0000 Received: by zenia.home (Postfix, from userid 5433) id B311620FE6; Mon, 9 Jun 2003 16:11:53 -0500 (EST) To: gdb-patches@sources.redhat.com Subject: [obvious] Remove extra semicolon from example text in manual From: Jim Blandy Date: Mon, 09 Jun 2003 21:10:00 -0000 Message-ID: User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2003-06/txt/msg00305.txt.bz2 2003-06-09 Jim Blandy * gdb.texinfo (Separate Debug Files): Remove extra semicolon. *** gdb/doc/gdb.texinfo.~1.162.~ 2003-05-08 16:37:12.000000000 -0500 --- gdb/doc/gdb.texinfo 2003-06-09 16:10:19.000000000 -0500 *************** *** 10011,10017 **** crc = ~crc & 0xffffffff; for (end = buf + len; buf < end; ++buf) crc = crc32_table[(crc ^ *buf) & 0xff] ^ (crc >> 8); ! return ~crc & 0xffffffff;; @} @end smallexample --- 10011,10017 ---- crc = ~crc & 0xffffffff; for (end = buf + len; buf < end; ++buf) crc = crc32_table[(crc ^ *buf) & 0xff] ^ (crc >> 8); ! return ~crc & 0xffffffff; @} @end smallexample