From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Heime Newsgroups: gmane.emacs.help Subject: Re: Printing alist pairs to a dedicated buffur Date: Sat, 20 Apr 2024 17:23:56 +0000 Message-ID: References: <87bk65fpsz.fsf@ledu-giraud.fr> <87plukbbod.fsf@ledu-giraud.fr> 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="21843"; mail-complaints-to="usenet@ciao.gmane.io" Cc: Manuel Giraud , Heime via Users list for the GNU Emacs text editor To: Heime Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Sat Apr 20 19:24:35 2024 Return-path: Envelope-to: geh-help-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 1ryES2-0005Xp-UY for geh-help-gnu-emacs@m.gmane-mx.org; Sat, 20 Apr 2024 19:24:34 +0200 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ryERa-0006Ya-8F; Sat, 20 Apr 2024 13:24:06 -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 1ryERZ-0006YK-30 for help-gnu-emacs@gnu.org; Sat, 20 Apr 2024 13:24:05 -0400 Original-Received: from mail-4027.protonmail.ch ([185.70.40.27]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ryERW-0002Yy-Na for help-gnu-emacs@gnu.org; Sat, 20 Apr 2024 13:24:04 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail3; t=1713633840; x=1713893040; bh=joeW1mwjS1ziGygKwM6PAX2Fyfqda8uYGd3GSvB5+zw=; h=Date:To:From:Cc:Subject:Message-ID:In-Reply-To:References: Feedback-ID:From:To:Cc:Date:Subject:Reply-To:Feedback-ID: Message-ID:BIMI-Selector; b=kWJbxvV+ZF/hf+AH/U4fcMdkdGxOMgm4N+v2FGDFlWQ7uuoLwdYOaWUbxiE0XwOqu DGMtOzbw5uoYHU2F6nKyiz9Ry2lDE+bsQTIYY4kUQy5Bc+35TrH6MvC7D4ktb8J++Z E7zDJRepuFLk8toAA5o1dnmiWZ2S9jj7U2seso8b05LEWZi8kPWoNJAykYFXuXjyzq wmk22ikvMzv2DgfHTm8G4Uo/uTTruFOrD27O4/MNoTFmOqQgJ4HH2MTmlkpRN1ihbv bk+IfTHz/TkqWUUjiEyRq3YwvGs6b8qOsVzzB6zvJr8HNpBhIfaDwakLKiFOCwiFRv +/bBDm7X4UOFw== In-Reply-To: Feedback-ID: 57735886:user:proton X-Pm-Message-ID: 689e78b069bd48e6f8b49be77971ca0ca8acd0da Received-SPF: pass client-ip=185.70.40.27; envelope-from=heimeborgia@protonmail.com; helo=mail-4027.protonmail.ch X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, FREEMAIL_FROM=0.001, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TO_EQ_FM_DIRECT_MX=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.29 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-mx.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.help:146408 Archived-At: On Sunday, April 21st, 2024 at 4:37 AM, Heime = wrote: > On Saturday, April 20th, 2024 at 9:55 PM, Manuel Giraud manuel@ledu-girau= d.fr wrote: >=20 > > Heime heimeborgia@protonmail.com writes: > >=20 > > > This is how I am filling my alist named tema-lugar > > >=20 > > > (defun tema-mark (kfrz) > > > "Associate line number at cursor position with key phrase KFRZ." > > > (interactive "sString: ") > > >=20 > > > (let ( (lnum (line-number-at-pos)) ) > > >=20 > > > (setq-local tema-lugar > > > (append tema-lugar > > > (list (cons kfrz lnum)))) )) > >=20 > > Hi, > >=20 > > Maybe your error comes from this `setq-local'. I have used` defvar' > > which will create a global (i.e. visible everywhere in Emacs) variable. > > `setq-local' or` defvar-local' are used for buffer-local variables. > > Buffer-local variables are visible only from the buffer they were > > created. > >=20 > > In your previous command, the first thing you did was to switch to > > another buffer that knows nothing about tema-lugar. I suggest you to > > read "(elisp) Buffer-Local Variables". -> Manuel Giraud >=20 > Correct, the alist was defined with setq-local for information about the = current > buffer. And I want to print the contents of the alist to a buffer named "= tema". Have come up with the following solution using an intermediate function tha= t passes the alist as argument. Can I do this in a more straightforward mann= er ? (defun tema-catapult (lugar) "Display the content of the association list LUGAR to the tema buffer. Because `tema-lugar' was defined with `defvar-local'." (with-current-buffer (get-buffer-create "tema") (insert (format "%s\n" "tema-lugar:")) (dolist (pair lugar) (insert (format "%s %d\n" (car pair) (cdr pair))))) ) (defun tema-alist () "Display the content of the association list tema-lugar." (interactive) (tema-catapult tema-lugar))