From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Don Woods Newsgroups: gmane.emacs.help Subject: Re: cannot disable paren matching Date: Tue, 27 Dec 2016 17:46:36 -0700 (MST) Message-ID: <201612280046.uBS0kaxW042068@home.icynic.com> References: NNTP-Posting-Host: blaine.gmane.org X-Trace: blaine.gmane.org 1482886279 17129 195.159.176.226 (28 Dec 2016 00:51:19 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Wed, 28 Dec 2016 00:51:19 +0000 (UTC) Cc: don@icynic.com To: help-gnu-emacs@gnu.org, john.b.mastro@gmail.com Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Dec 28 01:51:15 2016 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cM2SU-0003Lm-J0 for geh-help-gnu-emacs@m.gmane.org; Wed, 28 Dec 2016 01:51:10 +0100 Original-Received: from localhost ([::1]:56822 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cM2SZ-0002b1-Cp for geh-help-gnu-emacs@m.gmane.org; Tue, 27 Dec 2016 19:51:15 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:56289) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cM2Rx-0002ak-6j for help-gnu-emacs@gnu.org; Tue, 27 Dec 2016 19:50:38 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cM2Ru-0003uu-2o for help-gnu-emacs@gnu.org; Tue, 27 Dec 2016 19:50:37 -0500 Original-Received: from home.icynic.com ([75.148.112.132]:63284) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cM2Rt-0003tm-NB for help-gnu-emacs@gnu.org; Tue, 27 Dec 2016 19:50:33 -0500 Original-Received: from home.icynic.com (localhost [127.0.0.1]) by home.icynic.com (8.14.5/8.14.4) with ESMTP id uBS0kaw1042069 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 27 Dec 2016 17:46:36 -0700 (MST) (envelope-from don@home.icynic.com) Original-Received: (from don@localhost) by home.icynic.com (8.14.5/8.14.5/Submit) id uBS0kaxW042068; Tue, 27 Dec 2016 17:46:36 -0700 (MST) (envelope-from don) In-Reply-To: X-detected-operating-system: by eggs.gnu.org: FreeBSD 9.x [fuzzy] X-Received-From: 75.148.112.132 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: "help-gnu-emacs" Xref: news.gmane.org gmane.emacs.help:112014 Archived-At: > > Are you sure that the culprit is the (show-paren-mode) ? > > > > M-x describe-mode ps-mode said > > > > ... > >> ps-mode-r-gt > > ] ps-mode-r-angle > > } ps-mode-r-brace > > In Emacs 25 these are all bound to `self-insert-command', so I suspect > that's the issue (and not show-paren-mode). > > John We have a winner!! Indeed, in Emacs 22 and 24 those functions all use (insert ">") and such, rather than self-insert-command. I changed them to use (self-insert-command 1) and now they behave as desired! (I suppose the 1 might be optional. Whatever. It works!) Thanks, John! And apparently there is no lingering bug to be fixed, since Emacs 25 already includes the correction. -- Don.