From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED.blaine.gmane.org!not-for-mail From: Konstantin Kharlamov Newsgroups: gmane.emacs.devel Subject: [PATCH 2/3] lisp/progmodes/etags.el don't (forward-char) as it's overriden next line Date: Sat, 16 Mar 2019 04:53:13 +0300 Message-ID: <20190316015314.2335-2-Hi-Angel@yandex.ru> References: <20190316015314.2335-1-Hi-Angel@yandex.ru> Mime-Version: 1.0 Content-Transfer-Encoding: quoted-printable Injection-Info: blaine.gmane.org; posting-host="blaine.gmane.org:195.159.176.226"; logging-data="54516"; mail-complaints-to="usenet@blaine.gmane.org" To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Mar 16 02:55:13 2019 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([209.51.188.17]) by blaine.gmane.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:256) (Exim 4.89) (envelope-from ) id 1h4yXZ-000E4Z-4D for ged-emacs-devel@m.gmane.org; Sat, 16 Mar 2019 02:55:13 +0100 Original-Received: from localhost ([127.0.0.1]:35608 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h4yXX-0000ti-Nj for ged-emacs-devel@m.gmane.org; Fri, 15 Mar 2019 21:55:11 -0400 Original-Received: from eggs.gnu.org ([209.51.188.92]:59381) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h4yVx-0008FW-FL for emacs-devel@gnu.org; Fri, 15 Mar 2019 21:53:34 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h4yVw-0001L2-Ma for emacs-devel@gnu.org; Fri, 15 Mar 2019 21:53:33 -0400 Original-Received: from forward100p.mail.yandex.net ([77.88.28.100]:50985) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1h4yVv-0001Jt-Q0 for emacs-devel@gnu.org; Fri, 15 Mar 2019 21:53:32 -0400 Original-Received: from mxback11g.mail.yandex.net (mxback11g.mail.yandex.net [IPv6:2a02:6b8:0:1472:2741:0:8b7:90]) by forward100p.mail.yandex.net (Yandex) with ESMTP id 8C2155980AD1 for ; Sat, 16 Mar 2019 04:53:28 +0300 (MSK) Original-Received: from smtp1o.mail.yandex.net (smtp1o.mail.yandex.net [2a02:6b8:0:1a2d::25]) by mxback11g.mail.yandex.net (nwsmtp/Yandex) with ESMTP id KbmkXVgZ0u-rS1asBUt; Sat, 16 Mar 2019 04:53:28 +0300 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1552701208; bh=e3FT0CY3514koB753h+uGEwQbxiEf9G0gapR9qpQ1K0=; h=In-Reply-To:Subject:To:From:References:Date:Message-Id; b=av3EBBYA0Say3MKYdMvJUgiUU/+pNwDsv4zYbFL4qVYRBL5WwsQcOJJzmt8WVlMK7 17rAwBBkfmPhoSRm+wxjNFewjLhCRjTZF5LoJMZn0XwH00+25b55bd6P6VYLhXugPq lZFbtLRneUZwSCkldagbO1bqGZ86H0WUdasuWJSk= Authentication-Results: mxback11g.mail.yandex.net; dkim=pass header.i=@yandex.ru Original-Received: by smtp1o.mail.yandex.net (nwsmtp/Yandex) with ESMTPSA id hzxBGO16Wk-rRXGYU7K; Sat, 16 Mar 2019 04:53:27 +0300 (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client certificate not present) X-Mailer: git-send-email 2.21.0 In-Reply-To: <20190316015314.2335-1-Hi-Angel@yandex.ru> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 77.88.28.100 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.org gmane.emacs.devel:234197 Archived-At: --- lisp/progmodes/etags.el | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lisp/progmodes/etags.el b/lisp/progmodes/etags.el index 05dc7aa1baf..62637414ef8 100644 --- a/lisp/progmodes/etags.el +++ b/lisp/progmodes/etags.el @@ -1395,11 +1395,6 @@ etags-goto-tag-location (re-search-forward pat nil t) (user-error "Rerun etags: `%s' not found in %s" pat buffer-file-name))) - ;; Position point at the right place - ;; if the search string matched an extra Ctrl-m at the beginning. - (and (eq selective-display t) - (looking-at "\^m") - (forward-char 1)) (beginning-of-line))) =20 (defun etags-list-tags (file) ; Doc string? --=20 2.21.0