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] Added alias for removed font-lock function Date: Thu, 22 Dec 2022 11:01:08 +0200 Message-ID: <83y1qz95ij.fsf@gnu.org> References: <49cdc78c-f4f4-4300-982c-ad1909da3547@app.fastmail.com> Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="14312"; mail-complaints-to="usenet@ciao.gmane.io" Cc: emacs-devel@gnu.org To: "Benson Chu" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Thu Dec 22 10:02:12 2022 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 1p8HSu-0003XL-NI for ged-emacs-devel@m.gmane-mx.org; Thu, 22 Dec 2022 10:02:12 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1p8HSK-0003Wx-NO; Thu, 22 Dec 2022 04:01:37 -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 1p8HSA-0003VV-Nq for emacs-devel@gnu.org; Thu, 22 Dec 2022 04:01:28 -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 1p8HSA-0005jA-Ei; Thu, 22 Dec 2022 04:01:26 -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=4cvAAzIJ5NEGxEtDF6c3vXd7mcPf5IykTa7MW6PPanI=; b=PcD0g16vCnCl zHw0mOvz2RMLg2dlUoiNlREbMPykOJ/11jOXoLGB8t5u62y9MWuH+tQjpSYmN11BTTx3PuxGyxkOU lE9JzOJSo4Rw+YK5IN/0RjVMCPXNQF43IlLgKqrUX0MtOy6yCI8DPRv5FHuMn3yLxTP0FsY/gZQxn NaTIKc0+t8IyzW2YEi6Qe+mVxuyJ0EKIDMxCnm63J1jBpKXWt0Qu7li5wsX4KjRtznHhSw2k4Zg1n YbEHWsoJbWClqO7o8KG3GRkf8zhRBo2xYDRLZFoc4trhV99y5IVSsNyO4Joz4tSebIVhXq8Po6Ggx +B2v6cGI2+WqipoAjuwGJQ==; 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 1p8HS7-0007P3-GH; Thu, 22 Dec 2022 04:01:26 -0500 In-Reply-To: <49cdc78c-f4f4-4300-982c-ad1909da3547@app.fastmail.com> (bensonchu457@gmail.com) 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:301782 Archived-At: > Date: Wed, 21 Dec 2022 18:11:50 -0600 > From: "Benson Chu" > > I build Emacs off of master regularly, and recently found that while > using the font-lock-studio package, one function in lisp/font-lock.el > was renamed. > > I've added a define-obsolete-function-alias for the renamed function, > and have attached a patch to this email. Is this the right way to > submit a patch? A better way of submitting patches is with "M-x report-emacs-bug", then the patch gets recorded by our issue tracker and has a reference number. I installed this patch on the emacs-29 branch. Thanks.