From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25427 invoked by alias); 14 Nov 2014 20:38:01 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 25417 invoked by uid 89); 14 Nov 2014 20:38:00 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,SPF_SOFTFAIL autolearn=no version=3.3.2 X-HELO: mtaout28.012.net.il Received: from mtaout28.012.net.il (HELO mtaout28.012.net.il) (80.179.55.184) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 14 Nov 2014 20:37:58 +0000 Received: from conversion-daemon.mtaout28.012.net.il by mtaout28.012.net.il (HyperSendmail v2007.08) id <0NF100G00QA2JV00@mtaout28.012.net.il> for gdb-patches@sourceware.org; Fri, 14 Nov 2014 22:35:14 +0200 (IST) Received: from HOME-C4E4A596F7 ([87.69.4.28]) by mtaout28.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0NF1007BMQIQLU80@mtaout28.012.net.il>; Fri, 14 Nov 2014 22:35:14 +0200 (IST) Date: Fri, 14 Nov 2014 20:38:00 -0000 From: Eli Zaretskii Subject: Re: [PATCH 4/4] Update documentation on catching a group of related syscalls. In-reply-to: <87ioih398l.fsf@krisman.be> To: Gabriel Krisman Bertazi Cc: gdb-patches@sourceware.org Reply-to: Eli Zaretskii Message-id: <83ppcph623.fsf@gnu.org> References: <1414956944-8856-1-git-send-email-gabriel@krisman.be> <1414956944-8856-5-git-send-email-gabriel@krisman.be> <83vbmxwfnk.fsf@gnu.org> <87ppctkwcz.fsf@krisman.be> <83wq71krkh.fsf@gnu.org> <87ioih398l.fsf@krisman.be> X-IsSubscribed: yes X-SW-Source: 2014-11/txt/msg00339.txt.bz2 > From: Gabriel Krisman Bertazi > Cc: gdb-patches@sourceware.org > Date: Fri, 14 Nov 2014 16:52:42 -0200 > > --- a/gdb/breakpoint.c > +++ b/gdb/breakpoint.c > @@ -16736,11 +16736,11 @@ If REGEX is given, only stop for libraries matching the regular expression."), > CATCH_PERMANENT, > CATCH_TEMPORARY); > add_catch_command ("syscall", _("\ > -Catch system calls by their names and/or numbers.\n\ > -Arguments say which system calls to catch. If no arguments\n\ > -are given, every system call will be caught.\n\ > -Arguments, if given, should be one or more system call names\n\ > -(if your system supports that), or system call numbers."), > +Catch system calls by their names, groups and/or numbers. Arguments\n\ > +say which system calls to catch. If no arguments are given, every\n\ > +system call will be caught. Arguments, if given, should be one or\n\ > +more system call names (if your system supports that), system call\n\ > +groups or system call numbers."), The first line of the doc string must be a single complete sentence terminated by a period. That's because some help-related commands stop displaying at the first period. Otherwise, these patches are OK. Thanks.