From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED.blaine.gmane.org!not-for-mail From: Andreas Seltenreich Newsgroups: gmane.emacs.help Subject: Re: every release of emacs, i have to fix comint Date: Fri, 03 May 2019 07:56:19 +0200 Message-ID: <87h8ac6pz0.fsf@aurora.npff.co> References: Mime-Version: 1.0 Content-Type: text/plain Injection-Info: blaine.gmane.org; posting-host="blaine.gmane.org:195.159.176.226"; logging-data="16087"; mail-complaints-to="usenet@blaine.gmane.org" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.0.50 (gnu/linux) Cc: help-gnu-emacs@gnu.org To: Samuel Wales Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri May 03 23:18:37 2019 Return-path: Envelope-to: geh-help-gnu-emacs@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 1hMfZX-0012u5-QT for geh-help-gnu-emacs@m.gmane.org; Fri, 03 May 2019 23:18:23 +0200 Original-Received: from localhost ([127.0.0.1]:39946 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hMXNu-0001gH-Fp for geh-help-gnu-emacs@m.gmane.org; Fri, 03 May 2019 08:33:50 -0400 Original-Received: from eggs.gnu.org ([209.51.188.92]:55376) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hMRBK-0007qd-PO for help-gnu-emacs@gnu.org; Fri, 03 May 2019 01:56:27 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hMRBJ-0004ec-VL for help-gnu-emacs@gnu.org; Fri, 03 May 2019 01:56:26 -0400 Original-Received: from aurora.npff.co ([116.203.150.34]:59188) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hMRBJ-0004dr-PS for help-gnu-emacs@gnu.org; Fri, 03 May 2019 01:56:25 -0400 Original-Received: by aurora.npff.co (Postfix, from userid 1000) id B867B4238C; Fri, 3 May 2019 07:56:21 +0200 (CEST) X-PGP-Key: 4096R/803D1FFF 2015-02-04 Key fingerprint = 4758 81DC 8539 494D 29B4 692D F587 0601 803D 1FFF In-Reply-To: (Samuel Wales's message of "Wed, 1 May 2019 15:03:22 -0700") X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 116.203.150.34 X-Mailman-Approved-At: Fri, 03 May 2019 08:33:27 -0400 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:120165 Archived-At: Samuel Wales writes: > for example: > > ;; alpha > '(add-text-properties prompt-start (point) '(rear-nonsticky t))) > > is there a variable someplace that says "please don't chnge my bash prompt"? I don't think there is, but I often use Advises to modify the behavior of Emacs' functions from my ~/.emacs without having to modify the source itself or having a copy+pasted, outdated version there. (info "(elisp) Advising Functions") Maybe that's an option in your case as well? regards, Andreas