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: add docstring recognition for more common lisp symbols Date: Thu, 09 Feb 2023 17:48:49 +0200 Message-ID: <83pmailtzy.fsf@gnu.org> References: <20230209103914.26136-1-nicolas@n16f.net> <83wn4rkjvp.fsf@gnu.org> <87357eyjxq.fsf@valhala.localdomain> Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="25353"; 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 09 16:50:00 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 1pQ9BO-0006Il-LE for ged-emacs-devel@m.gmane-mx.org; Thu, 09 Feb 2023 16:49:58 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1pQ9AX-0005hK-Jc; Thu, 09 Feb 2023 10:49:05 -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 1pQ9AV-0005hB-QH for emacs-devel@gnu.org; Thu, 09 Feb 2023 10:49:03 -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 1pQ9AV-00054G-Dy; Thu, 09 Feb 2023 10:49:03 -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=pp/qdOYL233E7fJcD3pPUufbDpHBlWkGM6w0aIR7P/k=; b=c+lWOYZpsnFE V8aAMFBx6Ou2RXkmv9Q6EviTCofu7nYhbwNYSmS7KqcgruA6ahEv1b3NeFYq8fLHKZPvtRgXLUeJM DY6ehmDxNDxzJS7UVJ1OVq304ifWpA9tPS8IAFCtSu++khm240PCiPDFXbWNYvlN9C7u5F0XmzdOT 2OyD29txx9YvON2Wx7IXbU/laKWpd66fg5YUtXY9jUXxHPOz+2zx9dhO6u5RwQBrWaU3IPh+PSyKm sw+wCZ0zW1mXuRqcvt1a9Nzl+CzhYl8jxoWAHKmKr8m5obABwXI2dh4tZdqli828pbhxiFy8Jf7dH yjLc8sGEfBy5Ttwo6oHW7g==; 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 1pQ9AU-0001ES-Ts; Thu, 09 Feb 2023 10:49:03 -0500 In-Reply-To: <87357eyjxq.fsf@valhala.localdomain> (message from Nicolas Martyanoff on Thu, 09 Feb 2023 15:47:45 +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:303084 Archived-At: > From: Nicolas Martyanoff > Cc: Nicolas Martyanoff , emacs-devel@gnu.org > Date: Thu, 09 Feb 2023 15:47:45 +0100 > > > Please in the future try to follow our style for log messages more > > closely. As an example, look at how I modified your log message for > > this commit. > > Ah you mean like some kind of file-by-file changelog? No problem. Yes, we use ChangeLog-style log messages. Of course, in addition to the file names and function names, you can provide any supporting free-style description of the changes, their reasons, and whatever else you think is important. But we want the file and function names to be also present. Thanks.