From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: [PATCH] lisp-mode: fix defstruct docstring identification for Common Lisp Date: Thu, 02 Feb 2023 12:46:47 +0200 Message-ID: <83cz6sxs2w.fsf@gnu.org> References: <20230131005457.162562-1-nicolas@n16f.net> Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="21134"; mail-complaints-to="usenet@ciao.gmane.io" Cc: emacs-devel@gnu.org To: Nicolas Martyanoff Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Thu Feb 02 11:47:23 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 1pNX7j-0005E1-3j for ged-emacs-devel@m.gmane-mx.org; Thu, 02 Feb 2023 11:47:23 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1pNX79-00034B-SI; Thu, 02 Feb 2023 05:46:47 -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 1pNX77-00033z-W7 for emacs-devel@gnu.org; Thu, 02 Feb 2023 05:46:46 -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 1pNX77-0008Um-La; Thu, 02 Feb 2023 05:46:45 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=lG+J4AoDr9OQ8DgG+e8I7ilzpUPvvogXy5M1D7Kc4x8=; b=O23H3kfsDjkR no7xQRlcilAi2eBEYaQehZgRjhbjsU1vrp0kO12KRqmwoZKacxCWqm/Q3rt/FXN5raTwNv7ff7Yv0 Mls37zbaqjtSPPgMSCqsBDSOJlG8OgFV/TT8evTauLN20EZ628xrODvSZBT2je7duMVXTOCzX2lat 1fOmGJhsQH3ZtBfrB7RytX2HEUQiyXGU6JyaL6/Iyy9vuEWf04SPgayYX/v7faXfvhtMCHDlfuPyV cpnLcZ/3Ud9FOkXSee2EpI7QHpceeuddfdp7atwzYz7zdYCr+oUW4JUpA5SIIMy7xVllc2sZahYJf K24BseCV58fVdb2hGyvEZw==; Original-Received: from [87.69.77.57] (helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pNX77-0006Nt-4D; Thu, 02 Feb 2023 05:46:45 -0500 In-Reply-To: <20230131005457.162562-1-nicolas@n16f.net> (message from Nicolas Martyanoff on Tue, 31 Jan 2023 01:54:57 +0100) 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:302900 Archived-At: > From: Nicolas Martyanoff > Cc: Nicolas Martyanoff > Date: Tue, 31 Jan 2023 01:54:57 +0100 > > In Common Lisp, defstruct accepts a docstring in second position. Having the > docstring identified as such allows correct highlighting. Do you mean cl-defstruct? If not, what do you mean? Can you show a small Lisp recipe to demonstrate the differences in highlighting before and after the change? Thanks.