From debbugs-submit-bounces@debbugs.gnu.org Sat Oct 23 12:26:41 2021 Received: (at submit) by debbugs.gnu.org; 23 Oct 2021 16:26:41 +0000 Received: from localhost ([127.0.0.1]:37032 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1meJqz-0000WA-83 for submit@debbugs.gnu.org; Sat, 23 Oct 2021 12:26:41 -0400 Received: from lists.gnu.org ([209.51.188.17]:57568) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1meJ98-0007hW-IW for submit@debbugs.gnu.org; Sat, 23 Oct 2021 11:41:25 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:58532) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1meJ98-0004tJ-BH for bug-gnu-emacs@gnu.org; Sat, 23 Oct 2021 11:41:22 -0400 Received: from mx.sdf.org ([205.166.94.24]:61873) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1meJ8v-0000hz-EX for bug-gnu-emacs@gnu.org; Sat, 23 Oct 2021 11:41:22 -0400 Received: from localhost ([110.224.24.164]) (authenticated (0 bits)) by mx.sdf.org (8.15.2/8.14.5) with ESMTPA id 19NFf41K001146 for ; Sat, 23 Oct 2021 15:41:07 GMT References: <87pmrvbyif.fsf@sdf.org> <87zgqzda7w.fsf@sdf.org> User-agent: mu4e 1.4.15; emacs 29.0.50 From: Sharaf Zaman To: bug-gnu-emacs@gnu.org Subject: Fwd: [PATCH] Fix a memory leak in pgtk_draw_fringe_bitmap Date: Sat, 23 Oct 2021 15:41:00 +0000 Message-ID: <87wnm3da0j.fsf@sdf.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Received-SPF: pass client-ip=205.166.94.24; envelope-from=shzam@sdf.org; helo=mx.sdf.org X-Spam_score_int: 16 X-Spam_score: 1.6 X-Spam_bar: + X-Spam_report: (1.6 / 5.0 requ) BAYES_05=-0.5, HOSTED_IMG_MULTI_PUB_01=2.137, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=no autolearn_force=no X-Spam_action: no action X-Spam-Score: 1.6 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Hello! I discovered that there's a memory leak in the pgtk code, if the windows are created/destroyed/moved/shrunk/widened frequently. I've verified it with profiler that this indeed is the location (https:/ [...] Content analysis details: (1.6 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -2.3 RCVD_IN_DNSWL_MED RBL: Sender listed at https://www.dnswl.org/, medium trust [209.51.188.17 listed in list.dnswl.org] 0.9 SPF_FAIL SPF: sender does not match SPF record (fail) [SPF failed: Please see http://www.openspf.org/Why?s=mfrom; id=shzam%40sdf.org; ip=209.51.188.17; r=debbugs.gnu.org] -0.0 SPF_HELO_PASS SPF: HELO matches SPF record -0.0 RCVD_IN_MSPIKE_H2 RBL: Average reputation (+2) [209.51.188.17 listed in wl.mailspike.net] 3.0 HOSTED_IMG_MULTI_PUB_01 Multiple hosted images at public site X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Sat, 23 Oct 2021 12:26:36 -0400 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 0.6 (/) --=-=-= Content-Type: text/plain Hello! I discovered that there's a memory leak in the pgtk code, if the windows are created/destroyed/moved/shrunk/widened frequently. I've verified it with profiler that this indeed is the location (https://i.imgur.com/LnrgGyj.png) and fixed it (https://i.imgur.com/zdgnn5K.png). PS: This is my first time sending a patch over an email, I'm not 100% sure if this is how it's done. -- Kind Regards, Sharaf Zaman --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-Fix-a-memory-leak-in-pgtk_draw_fringe_bitmap.patch >From 13a901f5e1d6b262ea08e05e95d3e69f99ad4e13 Mon Sep 17 00:00:00 2001 From: Sharaf Zaman Date: Sat, 23 Oct 2021 14:01:55 +0000 Subject: [PATCH] Fix a memory leak in pgtk_draw_fringe_bitmap * src/pgtkterm.c (pgtk_draw_fringe_bitmap): we had an unbalanced cairo_save/restore. --- src/pgtkterm.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/pgtkterm.c b/src/pgtkterm.c index 86074d010d..40489c0c6b 100644 --- a/src/pgtkterm.c +++ b/src/pgtkterm.c @@ -3504,7 +3504,6 @@ pgtk_draw_fringe_bitmap (struct window *w, struct glyph_row *row, struct face *face = p->face; cairo_t *cr = pgtk_begin_cr_clip (f); - cairo_save (cr); /* Must clip because of partially visible lines. */ pgtk_clip_to_row (w, row, ANY_AREA, cr); @@ -3546,7 +3545,7 @@ pgtk_draw_fringe_bitmap (struct window *w, struct glyph_row *row, p->wd, p->h, p->x, p->y, p->overlay_p); } - cairo_restore (cr); + pgtk_end_cr_clip(f); } static struct atimer *hourglass_atimer = NULL; -- 2.33.0 --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Sun Oct 24 08:47:38 2021 Received: (at control) by debbugs.gnu.org; 24 Oct 2021 12:47:38 +0000 Received: from localhost ([127.0.0.1]:38130 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mecuY-0001Ts-OK for submit@debbugs.gnu.org; Sun, 24 Oct 2021 08:47:38 -0400 Received: from mail-pl1-f178.google.com ([209.85.214.178]:33519) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mecuX-0001T2-28 for control@debbugs.gnu.org; Sun, 24 Oct 2021 08:47:37 -0400 Received: by mail-pl1-f178.google.com with SMTP id s24so2034600plp.0 for ; Sun, 24 Oct 2021 05:47:36 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:mime-version:date:message-id:subject:to; bh=7BWwr7oULe4nXONyl6NxyWFt4mCf53po8hPSaJUnicA=; b=tTbZwwo06QGCdj2vzxWvnxVgnxQlnAoTkdY7qQXEcW8d5YKuXVfDTNfijtY+jhcpFg p3D8LP+Fjp/eXV6ZHc6f7FX8y2xVoKHE+2CKiyUasqHZw8XumxQ/qt9Nzt7LxhAhPGge h98vzrakVAqa4tT9sNvh8Lq5NX3zTHHM8AegyZmY2bnmxJhsVQGN+JyITpTOWtBLSQam 0a7o6QPCCLULEXHaKaMl1Xy9bT4SdWTvrgRyukCI7h40liDyytx+lakBNEzIPMr1bHDH mXQ3MQv0Iv7EdBFGj7iGWM6PZngP8ZEYTH05/1sjq7AwSj6a1oniiz7MO81eP+tiKgfo spGA== X-Gm-Message-State: AOAM53201qOx7n80BD2G48UpMv7+Q8dOu069oc4YlomUUXmSQlnMIA7a L40DCJU8vzqbTztIb1PND4kGBRA3VbSIZ8gd9VJ21TDi X-Google-Smtp-Source: ABdhPJxwVotXjydUqOuZBvclzrJUeCLYVk9F+sZQLavd56K0DbxO5f7K9l94ZEl2u0dnSS5iU45XqOVby0GCJMB0cBo= X-Received: by 2002:a17:90b:3b86:: with SMTP id pc6mr10848635pjb.143.1635079651465; Sun, 24 Oct 2021 05:47:31 -0700 (PDT) Received: from 753933720722 named unknown by gmailapi.google.com with HTTPREST; Sun, 24 Oct 2021 05:47:31 -0700 From: Stefan Kangas MIME-Version: 1.0 Date: Sun, 24 Oct 2021 05:47:31 -0700 Message-ID: Subject: control message for bug #51355 To: control@debbugs.gnu.org Content-Type: text/plain; charset="UTF-8" X-Spam-Score: 0.5 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.5 (/) forcemerge 51355 51354 quit From debbugs-submit-bounces@debbugs.gnu.org Sun Oct 24 14:09:30 2021 Received: (at 51355) by debbugs.gnu.org; 24 Oct 2021 18:09:30 +0000 Received: from localhost ([127.0.0.1]:40781 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mehw1-0006Hn-Tv for submit@debbugs.gnu.org; Sun, 24 Oct 2021 14:09:30 -0400 Received: from quimby.gnus.org ([95.216.78.240]:46716) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mehvz-0006HR-Vy; Sun, 24 Oct 2021 14:09:29 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date: References:Subject:Cc:To:From:Sender:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=TZLfxUT07vmn3reFl2vg/fUdH8LHpu8NHYZ0NEc4Shw=; b=T8X27o+5Ks7npf45XCE0PhZ4up LP7rGxMu9UYQP0ppAbTVyc5OcrpUjKvlQjg0+BQGPq4WM58WWtKvNHTkkwQJwpp1CK5wczgsWnmpL weJT6Acy8Y8Uwj+0Hsx1M4RhJLAGQykzwdJEQwnC6nbxSJTYcKJVL36raPkiQALzTosk=; Received: from [84.212.220.105] (helo=elva) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1mehvq-0001Ch-8D; Sun, 24 Oct 2021 20:09:20 +0200 From: Lars Ingebrigtsen To: Sharaf Zaman Subject: Re: bug#51354: [PATCH] Fix a memory leak in pgtk_draw_fringe_bitmap References: <87pmrvbyif.fsf@sdf.org> <87zgqzda7w.fsf@sdf.org> <87wnm3da0j.fsf@sdf.org> Date: Sun, 24 Oct 2021 20:09:17 +0200 In-Reply-To: <87wnm3da0j.fsf@sdf.org> (Sharaf Zaman's message of "Sat, 23 Oct 2021 15:41:00 +0000") Message-ID: <87fssq5m7m.fsf_-_@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: Sharaf Zaman writes: > I discovered that there's a memory leak in the pgtk code, if the windows are > created/destroyed/moved/shrunk/widened frequently. I've verified it with > profiler that this indeed is the location (h [...] Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.7 (/) X-Debbugs-Envelope-To: 51355 Cc: 51355@debbugs.gnu.org, 51354@debbugs.gnu.org, Yuuki Harano X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.3 (/) Sharaf Zaman writes: > I discovered that there's a memory leak in the pgtk code, if the windows are > created/destroyed/moved/shrunk/widened frequently. I've verified it with > profiler that this indeed is the location (https://i.imgur.com/LnrgGyj.png) and > fixed it (https://i.imgur.com/zdgnn5K.png). Makes sense to me, so I've applied it to the pgtk branch, but perhaps Yuuki has a comment (added to the CCs). > PS: This is my first time sending a patch over an email, I'm not 100% > sure if this is how it's done. Looked perfect. :-) This change was small enough to apply without assigning copyright to the FSF, but for future patches you want to submit, it might make sense to get the paperwork started now, so that subsequent patches can be applied speedily. Would you be willing to sign such paperwork? -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Sun Oct 24 14:09:36 2021 Received: (at control) by debbugs.gnu.org; 24 Oct 2021 18:09:36 +0000 Received: from localhost ([127.0.0.1]:40784 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mehw8-0006IC-5u for submit@debbugs.gnu.org; Sun, 24 Oct 2021 14:09:36 -0400 Received: from quimby.gnus.org ([95.216.78.240]:46734) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mehw6-0006Hb-4b for control@debbugs.gnu.org; Sun, 24 Oct 2021 14:09:34 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Subject:From:To:Message-Id:Date:Sender:Reply-To:Cc: MIME-Version:Content-Type:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=VaOvI3HfY+WUMRwAoTZjz7h8SueWaY8FFaT1qdbOZPQ=; b=c3ktKGLOZC1E/+0/Rl7vq2hdJ6 BpfbwuHTFQB+SEbscJIfkGK0Eu1m13L035jnG6ywYEJvJuM9lMu1KQokJbPEdxcPFGIC5dxkMFJyO ewLCbhFusMGdNAYMuroN5qG4YmhC59dETjizswBSpty4sspduRDOCyPbOMzV2jQUURvo=; Received: from [84.212.220.105] (helo=elva) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1mehvy-0001Cq-If for control@debbugs.gnu.org; Sun, 24 Oct 2021 20:09:28 +0200 Date: Sun, 24 Oct 2021 20:09:26 +0200 Message-Id: <87ee8a5m7d.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #51354 X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: close 51354 29.1 quit Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) close 51354 29.1 quit From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 25 09:36:10 2021 Received: (at 51355) by debbugs.gnu.org; 25 Oct 2021 13:36:10 +0000 Received: from localhost ([127.0.0.1]:41984 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mf093-0000ST-QV for submit@debbugs.gnu.org; Mon, 25 Oct 2021 09:36:10 -0400 Received: from quimby.gnus.org ([95.216.78.240]:55678) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mf090-0000Rv-QH; Mon, 25 Oct 2021 09:36:08 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date: References:Subject:Cc:To:From:Sender:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=9ytkg67PzDkvcuK+IxkzZvsGqfEDERTsrc7xURylaGA=; b=cWRlmAo0qNIW6Jnuk3rozmaBOY JqTQWwq9yWNQq+YNrA+T7x6h2dtoKKyFlw3YllA0I8prNTKUv4lwvf94WJtbh3axrbaDRgGtuVnvT yIbl/UlW5D7EZJpXSTlyBCA7hCxu22cMeiJ7tW0jZdfKrM7On0TZKX6iWqHMb0GNoZek=; Received: from [84.212.220.105] (helo=elva) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1mf08s-0001VB-3D; Mon, 25 Oct 2021 15:36:00 +0200 From: Lars Ingebrigtsen To: Sharaf Zaman Subject: Re: bug#51354: [PATCH] Fix a memory leak in pgtk_draw_fringe_bitmap References: <87pmrvbyif.fsf@sdf.org> <87zgqzda7w.fsf@sdf.org> <87wnm3da0j.fsf@sdf.org> <87fssq5m7m.fsf_-_@gnus.org> <874k95txyd.fsf@sdf.org> Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwAgMAAAAqbBEUAAAABGdBTUEAALGPC/xhBQAAACBj SFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAADFBMVEW4oGLo4LhfSi7/ ///dCHUJAAAAAWJLR0QDEQxM8gAAAAd0SU1FB+UKGQ0CC0DACHwAAAGzSURBVCjPNdDBitswEAbg UYgX45OzSEvZUzaUYusp7GBD6pMVNKHklJQutHmKpCSXnFrILqUnOySgzFN2pO765I/5NRoNiCJJ E4GrB4UIsZmeUkR7QgbE0z2UxkpfEX+q3Wdt7IvCGoocYaY5V3NlnA9d4xAXgrHWWp9chGbEyMa0 eaUDtr6bnjg6d3zGYwPF8fLCf77BantPJf7/wAxkkr6jLOJp6i/BygJ7CZCzrAXpETsVukmTzkHT QfnKKi1sP6Abx+5Ao7Hiq0d1hka1Mv6urxUuhjCzrXzUug+xFm3UZh44BKvm/QCSK4MvrdsM+uWF kfIEuIGnpjM+xpjtnpveYORjXF433V4JFRD/aIgOM+VjOHUDcuIbAhostcuIRD3ylTKjPKGJEh42 pz4hWT+HM2u6JMdtXYLfWPXYpUS/uQHOVX13vic6+YUUI/z48+i09LBKtoO/7tjX4UzdxgfaPrWM xesau+utHIeYvJp558rMA9UIC/pQxGHQqMCZ3lXbyGP4gMvzrerCBKrBLx7SV34V2J6dFQGWl64z CXVAhJbyFCA8gTGh/Rt4xZ90lIp/x1KvKUgs+CYAAAAldEVYdGRhdGU6Y3JlYXRlADIwMjEtMTAt MjVUMTM6MDI6MTErMDA6MDCeWyIKAAAAJXRFWHRkYXRlOm1vZGlmeQAyMDIxLTEwLTI1VDEzOjAy OjExKzAwOjAw7waatgAAAABJRU5ErkJggg== X-Now-Playing: Mike Rutherford's _Smallcreep's Day_: "Smallcreep's Day VI" Date: Mon, 25 Oct 2021 15:35:57 +0200 In-Reply-To: <874k95txyd.fsf@sdf.org> (Sharaf Zaman's message of "Mon, 25 Oct 2021 06:31:53 +0000") Message-ID: <87tuh5xm4i.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: Sharaf Zaman writes: >> This change was small enough to apply without assigning copyright to the >> FSF, but for future patches you want to submit, it might make sense to >> get the paperwork started now, so that subseque [...] Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 51355 Cc: 51355@debbugs.gnu.org, 51354@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Sharaf Zaman writes: >> This change was small enough to apply without assigning copyright to the >> FSF, but for future patches you want to submit, it might make sense to >> get the paperwork started now, so that subsequent patches can be applied >> speedily. Would you be willing to sign such paperwork? > > Sure! Where can I do that? Great! Here's the form to get started: Please email the following information to assign@gnu.org, and we will send you the assignment form for your past and future changes. Please use your full legal name (in ASCII characters) as the subject line of the message. ---------------------------------------------------------------------- REQUEST: SEND FORM FOR PAST AND FUTURE CHANGES [What is the name of the program or package you're contributing to?] Emacs [Did you copy any files or text written by someone else in these changes? Even if that material is free software, we need to know about it.] [Do you have an employer who might have a basis to claim to own your changes? Do you attend a school which might make such a claim?] [For the copyright registration, what country are you a citizen of?] [What year were you born?] [Please write your email address here.] [Please write your postal address here.] [Which files have you changed so far, and which new files have you written so far?] From unknown Fri Aug 15 20:28:40 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 23 Nov 2021 12:24:05 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator