From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 27 09:03:06 2015 Received: (at submit) by debbugs.gnu.org; 27 Aug 2015 13:03:07 +0000 Received: from localhost ([127.0.0.1]:39857 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1ZUwpa-00059C-3z for submit@debbugs.gnu.org; Thu, 27 Aug 2015 09:03:06 -0400 Received: from eggs.gnu.org ([208.118.235.92]:53254) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1ZUwpT-00058i-8W for submit@debbugs.gnu.org; Thu, 27 Aug 2015 09:03:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZUwpR-0005kz-Ua for submit@debbugs.gnu.org; Thu, 27 Aug 2015 09:02:54 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: * X-Spam-Status: No, score=1.1 required=5.0 tests=BAYES_50, FREEMAIL_ENVFROM_END_DIGIT,FREEMAIL_FROM,T_DKIM_INVALID autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:55840) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZUwpR-0005kv-SZ for submit@debbugs.gnu.org; Thu, 27 Aug 2015 09:02:53 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34998) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZUwpM-0006Da-7z for bug-gnu-emacs@gnu.org; Thu, 27 Aug 2015 09:02:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZUwpI-0005fK-7P for bug-gnu-emacs@gnu.org; Thu, 27 Aug 2015 09:02:48 -0400 Received: from mail-qk0-x22c.google.com ([2607:f8b0:400d:c09::22c]:33794) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZUwpI-0005eu-3L for bug-gnu-emacs@gnu.org; Thu, 27 Aug 2015 09:02:44 -0400 Received: by qkfh127 with SMTP id h127so9715234qkf.1 for ; Thu, 27 Aug 2015 06:02:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id:mime-version:content-type; bh=Dlt0dQgtgvld5IUKD3OhdkW+NQwWdnQ2PPiJn/gA1l0=; b=HiTOs8w+24CvXAcuCYq6qY9eFWA3WBw4WltOABBlOUeMljvpVgQikmggCYmVyFdt8C WnifNhej7/k76zlNe7zTGWYyi6An832MMsGIeWmfVgCwb6MCp9xVzJWNruV3Jhkn+JGR J5w9HkZI33ruJKhA+sGsH5BBdOAqcb4KPlga+jDliRD7uRULDsdt+sFqRKE86pqL+tGV oDKrcM1JfhBKKsxf8Y8DW7HwdirH0LunxiGGZ8AnehNPYFUBf0Eaac+rhLoIK7bPl8u1 E4npLSc7SQTihqNDQ6Omru7Ll0x7g+11Cpweu3GvkXijwbGgdkdqXcyAjBq5Nbq24HHo Kcdw== X-Received: by 10.55.198.201 with SMTP id s70mr6461374qkl.42.1440680562868; Thu, 27 Aug 2015 06:02:42 -0700 (PDT) Received: from StormPC.yourcompany.com (ec2-52-3-137-119.compute-1.amazonaws.com. [52.3.137.119]) by smtp.gmail.com with ESMTPSA id f72sm1207404qhe.1.2015.08.27.06.02.40 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 27 Aug 2015 06:02:42 -0700 (PDT) From: lo2net To: bug-gnu-emacs@gnu.org Subject: 25.0.50; doc/lispref/strings.texi duplicated string-prefix-p/string-suffix-p function describe text section Date: Thu, 27 Aug 2015 21:02:36 +0800 Message-ID: <87y4gwnatv.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -3.8 (---) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.8 (---) Hi all, Found duplicated text section in file doc/lispref/strings.texi: ...... 507 @defun string-prefix-p string1 string2 &optional ignore-case 508 This function returns non-@code{nil} if @var{string1} is a prefix of 509 @var{string2}; i.e., if @var{string2} starts with @var{string1}. If 510 the optional argument @var{ignore-case} is non-@code{nil}, the 511 comparison ignores case differences. 512 @end defun 513 514 @defun string-suffix-p suffix string &optional ignore-case 515 This function returns non-@code{nil} if @var{suffix} is a suffix of 516 @var{string}; i.e., if @var{string} ends with @var{suffix}. If the 517 optional argument @var{ignore-case} is non-@code{nil}, the comparison 518 ignores case differences. 519 @end defun ...... 623 @defun string-prefix-p string1 string2 &optional ignore-case 624 This function returns non-@code{nil} if @var{string1} is a prefix of 625 @var{string2}; i.e., if @var{string2} starts with @var{string1}. If 626 the optional argument @var{ignore-case} is non-@code{nil}, the 627 comparison ignores case differences. 628 @end defun 629 630 @defun string-suffix-p suffix string &optional ignore-case 631 This function returns non-@code{nil} if @var{suffix} is a suffix of 632 @var{string}; i.e., if @var{string} ends with @var{suffix}. If the 633 optional argument @var{ignore-case} is non-@code{nil}, the comparison 634 ignores case differences. 635 @end defun Thanks, lo2net From debbugs-submit-bounces@debbugs.gnu.org Sun Jan 28 19:53:37 2018 Received: (at 21362) by debbugs.gnu.org; 29 Jan 2018 00:53:37 +0000 Received: from localhost ([127.0.0.1]:46998 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1efxhZ-0000Kz-Iu for submit@debbugs.gnu.org; Sun, 28 Jan 2018 19:53:37 -0500 Received: from mail-it0-f45.google.com ([209.85.214.45]:34572) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1efxhX-0000Kg-4L; Sun, 28 Jan 2018 19:53:35 -0500 Received: by mail-it0-f45.google.com with SMTP id m11so29492857iti.1; Sun, 28 Jan 2018 16:53:35 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=sender:from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=+MwGfgJPYhN8pZfUJkjGJ1fhldFNHaO0leIcNIyka2A=; b=eGu/l00RsVlRbtMyeVjslFWub7cOHNLdLYwMBw9i4r3yXdQ+HXTfWwBcl/hWJtDX1n ff0B9EgBVHMAw6wat3pd9eResvPajwIfA0OcF2fiymuNQ9zKlV6iEK1osrrNUGqLeUc+ XiDd5VNGD7xzce10qQQonigTs4SKyFOtZ0wsUGTn0Lv84aAR96L+bOEoGlI3A8olINDb ciHAkxeDO4i+YBCpLeRsqoUg/r6fyE2jRrdIQLHCHKtg0m5Ux/D8BVwXT1Sp5eb+lXEk jnIqW3d4nxIY1fqHL90S4r9VtOXXDt+uLhdSKhexdQDwSkaILYesrlwB44zwuK7u3UjL A4sw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:sender:from:to:cc:subject:references:date :in-reply-to:message-id:user-agent:mime-version; bh=+MwGfgJPYhN8pZfUJkjGJ1fhldFNHaO0leIcNIyka2A=; b=jcEhH9v6TytPt/9mJp6U67rkfeTThEbLy21k94oZQIgC3RVGa+dYckzhK6myz7wS0w mo1GV630GNoYxRgDlqkkzx8HIYQT8eJuwE29jqbAh0IMEkyHVavTmS073Jb5O5ovKUo7 uaLIhkyD854IyFh9GCV/IBkQyD5Kt8b6BCKsUyWt88Cdp03ce1N+T1U0tPv3uNUJhXHb Wqc9onFvBMFoe7QPSpAWmFm+HUGR9czHqAFjX7NI0k/Mas/iuTlxbfOqG3dpqqc3Nn1W BSDAF6hiEo67NY1tPVroFiQUyI6d7BloaavdYlfC04QeVkbaF04jYh8CD8kXp0vEe1Ha cZ4w== X-Gm-Message-State: AKwxytfO9Lb0Lan+L4sPK7oQ7fdr0Z+ktCu4k1kATNErPuMg0hNKxZ8l cu00NkolmjyduE8j5Lc8+r2fngcm X-Google-Smtp-Source: AH8x227j0LI5IiJOG2+mYCf7EffmOU7fM/GFEdtzYI/Gzf0vb0CsKJa63s/r4F0DpAZ+ZyP9MJbqTQ== X-Received: by 10.36.37.209 with SMTP id g200mr26693920itg.152.1517187209412; Sun, 28 Jan 2018 16:53:29 -0800 (PST) Received: from zebian ([45.2.119.34]) by smtp.googlemail.com with ESMTPSA id c140sm6495814itc.1.2018.01.28.16.53.27 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Sun, 28 Jan 2018 16:53:28 -0800 (PST) From: Noam Postavsky To: lo2net Subject: Re: bug#21362: 25.0.50; doc/lispref/strings.texi duplicated string-prefix-p/string-suffix-p function describe text section References: <87y4gwnatv.fsf@gmail.com> Date: Sun, 28 Jan 2018 19:53:27 -0500 In-Reply-To: <87y4gwnatv.fsf@gmail.com> (lo2net's message of "Thu, 27 Aug 2015 21:02:36 +0800") Message-ID: <87607ljxiw.fsf@users.sourceforge.net> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.0.90 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.2 (/) X-Debbugs-Envelope-To: 21362 Cc: 21362@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 0.2 (/) tags 21362 fixed close 21362 25.2 quit lo2net writes: > Hi all, > Found duplicated text section in file doc/lispref/strings.texi: It was fixed along with Bug#25047. [1: 2086f4c0c6]: 2016-11-29 19:07:15 +0900 Typo fixes in elisp manual https://git.savannah.gnu.org/cgit/emacs.git/commit/?id=2086f4c0c6ecf8b94173c97162ae1b09749eabb5 From unknown Sat Jun 21 10:42:19 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 26 Feb 2018 12:24:05 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator