From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Jean Louis Newsgroups: gmane.emacs.help Subject: Re: Fwd: How do I go about debugging my Elisp code? Date: Sat, 15 Jan 2022 11:24:25 +0300 Message-ID: References: <87wnj1x5mn.fsf@zoho.eu> <8735lpwxu1.fsf@zoho.eu> 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="12557"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Mutt/2.1.5+104 (cd3a5c8) (2022-01-09) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Sat Jan 15 09:29:28 2022 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 1n8eRE-00037q-FE for geh-help-gnu-emacs@m.gmane-mx.org; Sat, 15 Jan 2022 09:29:28 +0100 Original-Received: from localhost ([::1]:33146 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1n8eRC-0006Go-UO for geh-help-gnu-emacs@m.gmane-mx.org; Sat, 15 Jan 2022 03:29:26 -0500 Original-Received: from eggs.gnu.org ([209.51.188.92]:37798) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n8eQU-0006D9-4S for help-gnu-emacs@gnu.org; Sat, 15 Jan 2022 03:28:42 -0500 Original-Received: from stw1.rcdrun.com ([217.170.207.13]:33323) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n8eQS-00011H-Ba for help-gnu-emacs@gnu.org; Sat, 15 Jan 2022 03:28:41 -0500 Original-Received: from localhost ([::ffff:41.75.187.28]) (AUTH: PLAIN admin, TLS: TLS1.3,256bits,ECDHE_RSA_AES_256_GCM_SHA384) by stw1.rcdrun.com with ESMTPSA id 000000000005BED4.0000000061E2858F.00006A6F; Sat, 15 Jan 2022 01:27:58 -0700 Mail-Followup-To: help-gnu-emacs@gnu.org Content-Disposition: inline In-Reply-To: <8735lpwxu1.fsf@zoho.eu> Received-SPF: pass client-ip=217.170.207.13; envelope-from=bugs@gnu.support; helo=stw1.rcdrun.com X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_PASS=-0.001, SPF_PASS=-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" Xref: news.gmane.io gmane.emacs.help:135319 Archived-At: * Emanuel Berg via Users list for the GNU Emacs text editor [2022-01-15 05:14]: > >> One good way to comply is the package I made for friend > >> from Sweden: > >> > >> your hjälpsam Package Header Assistant > >> https://hyperscope.link/3/7/7/3/0/Your-hjälpsam-Package-Header-Assistant-37730.html > > > > Hahaha :D > > > > "hjälpsam" = helpful > > Very good! > > Only this: > > (defun package-header-ask-keywords () > "Ask author for package keywords." > (let ((keywords '()) > (keyword)) > (while (string-match "[^[:blank:]]" > (setq keyword > (completing-read "Keywords: " (package-header-keywords) nil t))) > (push keyword keywords)) > (when keywords > (mapconcat 'identity (sort keywords #'string<) " ")))) > > In the prompt string, maybe it is a good idea to mention how > to quit? Type nothing just hit RET? Since/if every pack should > have at least one keyword, the first PS could be > > Keyword: [TAB to complete] > > (note the singular form) > > after that it could be > > Keyword: [RET to quit] > > Then, remove duplicates from the result, I say this because > when I tried the software it took three times to figure out > that was how it worked, at first I thought it didn't register, > so when I finally quit it said > > Keywords: convenience convenience convenience Thanks for suggestions, I have changed it now to following: (defun package-header-ask-keywords () "Ask author for package keywords." (let ((keywords '()) (keyword)) (while (string-match "[^[:blank:]]" (setq keyword (completing-read "Keywords (RET to quit): " (package-header-keywords) nil t))) (push keyword keywords)) (delete-dups keywords) (when keywords (mapconcat 'identity (sort keywords #'string<) " ")))) And with double key "s p", updated the published information: https://hyperscope.link/3/7/7/3/0/Your-hj%C3%A4lpsam-Package-Header-Assistant-37730.html -- Jean Take action in Free Software Foundation campaigns: https://www.fsf.org/campaigns In support of Richard M. Stallman https://stallmansupport.org/