From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Juri Linkov Newsgroups: gmane.emacs.bugs Subject: bug#69703: Ispell process restarted too often Date: Thu, 14 Mar 2024 19:50:08 +0200 Organization: LINKOV.NET Message-ID: <86cyrwpusv.fsf@mail.linkov.net> References: <86y1aqh70o.fsf@mail.linkov.net> <86bk7mwlwl.fsf@gnu.org> <867cia3z7x.fsf@mail.linkov.net> <86sf0yug9z.fsf@gnu.org> <867ci7rj05.fsf@mail.linkov.net> <86le6ntsqd.fsf@gnu.org> <86sf0vnysh.fsf@mail.linkov.net> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="17970"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/30.0.50 (x86_64-pc-linux-gnu) Cc: 69703@debbugs.gnu.org To: Eli Zaretskii Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Thu Mar 14 18:56:48 2024 Return-path: Envelope-to: geb-bug-gnu-emacs@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 1rkpJv-0004X4-Sn for geb-bug-gnu-emacs@m.gmane-mx.org; Thu, 14 Mar 2024 18:56:47 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1rkpJb-00058m-KZ; Thu, 14 Mar 2024 13:56:27 -0400 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 1rkpJa-00058Y-CS for bug-gnu-emacs@gnu.org; Thu, 14 Mar 2024 13:56:26 -0400 Original-Received: from debbugs.gnu.org ([2001:470:142:5::43]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1rkpJa-0005Sk-4K for bug-gnu-emacs@gnu.org; Thu, 14 Mar 2024 13:56:26 -0400 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1rkpK9-0004r7-Kj for bug-gnu-emacs@gnu.org; Thu, 14 Mar 2024 13:57:01 -0400 X-Loop: help-debbugs@gnu.org Resent-From: Juri Linkov Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Thu, 14 Mar 2024 17:57:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 69703 X-GNU-PR-Package: emacs Original-Received: via spool by 69703-submit@debbugs.gnu.org id=B69703.171043899318629 (code B ref 69703); Thu, 14 Mar 2024 17:57:01 +0000 Original-Received: (at 69703) by debbugs.gnu.org; 14 Mar 2024 17:56:33 +0000 Original-Received: from localhost ([127.0.0.1]:50562 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rkpJg-0004qO-Rv for submit@debbugs.gnu.org; Thu, 14 Mar 2024 13:56:33 -0400 Original-Received: from relay2-d.mail.gandi.net ([217.70.183.194]:58027) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rkpJb-0004q3-89 for 69703@debbugs.gnu.org; Thu, 14 Mar 2024 13:56:31 -0400 Original-Received: by mail.gandi.net (Postfix) with ESMTPSA id 60EC740003; Thu, 14 Mar 2024 17:55:44 +0000 (UTC) In-Reply-To: <86sf0vnysh.fsf@mail.linkov.net> (Juri Linkov's message of "Tue, 12 Mar 2024 19:30:06 +0200") X-GND-Sasl: juri@linkov.net X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: bug-gnu-emacs@gnu.org List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.bugs:281629 Archived-At: BTW, currently the order or enabling minor modes and reading dir-local variables looks wrong: after visiting a file first minor modes are enabled, then dir-local-variables are set in the buffer. So with (add-hook 'text-mode-hook 'flyspell-mode) Ispell starts the Ispell process with the global dictionary. Then later reads 'ispell-personal-dictionary' from .dir-locals.el and restarts the Ispell process with another dictionary. A workaround for configs is to force 'hack-dir-local-variables' before enabling 'flyspell-mode' that is not a nice hack: (defun my-flyspell-mode () ;; Avoid duplicate calls when ‘flyspell-mode’ is enabled by ‘.dir-locals.el’, ;; because the first call uses the global value of ‘ispell-personal-dictionary’, ;; and so restarts the Ispell process. (unless (progn (hack-dir-local-variables) (member '(mode . flyspell) file-local-variables-alist)) (flyspell-mode))) (add-hook 'text-mode-hook 'my-flyspell-mode)