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.bugs Subject: bug#44554: 27.1; Feature request: SRFI-62 style comments for Emacs Lisp. Date: Tue, 10 Nov 2020 22:31:54 +0300 Message-ID: References: <87sg9hwbo8.fsf@delllaptop.lockywolf.net> <87mtzpgsz7.fsf@gnus.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="24461"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Mutt/2.0 (3d08634) (2020-11-07) Cc: Vladimir Nikishkin , 44554@debbugs.gnu.org To: Lars Ingebrigtsen Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Tue Nov 10 20:51:35 2020 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 1kcZfy-0006Dd-GO for geb-bug-gnu-emacs@m.gmane-mx.org; Tue, 10 Nov 2020 20:51:34 +0100 Original-Received: from localhost ([::1]:35892 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kcZfx-0006fF-Hn for geb-bug-gnu-emacs@m.gmane-mx.org; Tue, 10 Nov 2020 14:51:33 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:53368) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kcZVm-0007Lq-Q8 for bug-gnu-emacs@gnu.org; Tue, 10 Nov 2020 14:41:02 -0500 Original-Received: from debbugs.gnu.org ([209.51.188.43]:55621) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1kcZVm-0001Nq-FF for bug-gnu-emacs@gnu.org; Tue, 10 Nov 2020 14:41:02 -0500 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1kcZVm-00060p-D8 for bug-gnu-emacs@gnu.org; Tue, 10 Nov 2020 14:41:02 -0500 X-Loop: help-debbugs@gnu.org Resent-From: Jean Louis Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Tue, 10 Nov 2020 19:41:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 44554 X-GNU-PR-Package: emacs Original-Received: via spool by 44554-submit@debbugs.gnu.org id=B44554.160503724123059 (code B ref 44554); Tue, 10 Nov 2020 19:41:02 +0000 Original-Received: (at 44554) by debbugs.gnu.org; 10 Nov 2020 19:40:41 +0000 Original-Received: from localhost ([127.0.0.1]:38930 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kcZVR-0005zq-Dt for submit@debbugs.gnu.org; Tue, 10 Nov 2020 14:40:41 -0500 Original-Received: from static.rcdrun.com ([95.85.24.50]:49783) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kcZVQ-0005zj-3b for 44554@debbugs.gnu.org; Tue, 10 Nov 2020 14:40:40 -0500 Original-Received: from localhost ([::ffff:197.157.34.177]) (AUTH: PLAIN admin, TLS: TLS1.2,256bits,ECDHE_RSA_AES_256_GCM_SHA384) by static.rcdrun.com with ESMTPSA id 00000000002C0005.000000005FAAECB5.00000A94; Tue, 10 Nov 2020 19:40:36 +0000 Content-Disposition: inline In-Reply-To: <87mtzpgsz7.fsf@gnus.org> 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" Xref: news.gmane.io gmane.emacs.bugs:193048 Archived-At: * Lars Ingebrigtsen [2020-11-10 18:03]: > Vladimir Nikishkin writes: > > > #;(defvar demo-variable nil > > "This is a demo-variable declared to illustrate SRFI-62.") > > ``` > > > > The special reader syntax "#;" means "please, ignore the next valid > > s-expression completely". > > Sexp-based comments would certainly be nice, but I wonder whether > comment blocks would be even more useful (if we have to prioritise): > > #| this is > a comment |# Voting for CL comment blocks. It will increase documenting ability of Emacs. I am using such to accept input from customers online, their human readable data is shown in the comment blocks, and it is all LISP data that can be processed.