From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Arash Esbati Newsgroups: gmane.emacs.devel Subject: Re: master 47e313e9805: Unbind 'C-M-i' in Text mode Date: Wed, 29 Nov 2023 20:11:15 +0100 Message-ID: References: <170099515102.15929.4538081255360222923@vcs2.savannah.gnu.org> <20231126103911.6CEAFC25D5B@vcs2.savannah.gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="31421"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Cc: Eshel Yaron To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Wed Nov 29 20:12:19 2023 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1r8Pys-0007yM-Ij for ged-emacs-devel@m.gmane-mx.org; Wed, 29 Nov 2023 20:12:18 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1r8Pxx-0008PO-Ph; Wed, 29 Nov 2023 14:11:21 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1r8Pxv-0008Oy-6x for emacs-devel@gnu.org; Wed, 29 Nov 2023 14:11:19 -0500 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1r8Pxu-0003ES-Qz; Wed, 29 Nov 2023 14:11:18 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=wEBb8kGCnNRbCdhSzIl16kt+Lt8Fr8HXsglgSBs+KSs=; b=VYhPOVkDA+4JS5Yvc5Ai 5JIE9R6EYIxI/krRF1i498MKW+K2aguzcpOufHK+E6oDzOQIkNJDrwZ1ZEkDsXbE8LBB+LePA74Mq ugX/Lq8FpUBdNhMNOAQxBGLJi0H7QPYjfrWhJJVglOhpeIFvbdmR6lEHkRT5ns/0or6hExvibNGWe juV83RoTji84RvafMjEtI9VwcEDKz+3cqRk283edQk3NEfl48uwC771F135EHDcRrDyrs+tKzQYxK IbOuLyPXNPT4zE/U+h+AnOR25C05/h6VZbrl0DVBcIgaDSElrW/NrE5TSpGrtj9wKUSZIjLUG+BXO LoPSFc4qiL1lcg==; In-Reply-To: <20231126103911.6CEAFC25D5B@vcs2.savannah.gnu.org> (Eli Zaretskii's message of "Sun, 26 Nov 2023 05:39:11 -0500 (EST)") X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 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-mx.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.devel:313371 Archived-At: Eli Zaretskii writes: > branch: master > commit 47e313e9805c527e590df4270062a9185ee9db78 > Author: Eshel Yaron > Commit: Eli Zaretskii > [...] > diff --git a/lisp/textmodes/text-mode.el b/lisp/textmodes/text-mode.el > index ccba1b063ab..7f38a1c463d 100644 > --- a/lisp/textmodes/text-mode.el > +++ b/lisp/textmodes/text-mode.el > [...] > @@ -131,7 +143,8 @@ Turning on Text mode runs the normal hook `text-mode-= hook'." >=20=20 > ;; Enable text conversion in this buffer. > (setq-local text-conversion-style t) > - (add-hook 'context-menu-functions 'text-mode-context-menu 10 t)) > + (add-hook 'context-menu-functions 'text-mode-context-menu 10 t) > + (add-hook 'completion-at-point-functions #'ispell-completion-at-point = 10 t)) >=20=20 > (define-derived-mode paragraph-indent-text-mode text-mode "Parindent" > "Major mode for editing text, with leading spaces starting a paragraph. I think this part of the change now throws: ELC+ELN ../lisp/textmodes/text-mode.elc In end of data: text-mode.el:147:46: Warning: the function =E2=80=98ispell-completion-at-= point=E2=80=99 is not known to be defined. Maybe declare'ing the function helps? This is with Emacs 30 (a811846879) on macOS. Best, Arash