From unknown Tue Aug 19 05:11:41 2025 X-Loop: help-debbugs@gnu.org Subject: bug#52175: 27.2; stale marker left by `fill-region-as-paragraph' Resent-From: Ikumi Keita Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Mon, 29 Nov 2021 10:51:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 52175 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: 52175@debbugs.gnu.org X-Debbugs-Original-To: bug-gnu-emacs@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.163818301017422 (code B ref -1); Mon, 29 Nov 2021 10:51:02 +0000 Received: (at submit) by debbugs.gnu.org; 29 Nov 2021 10:50:10 +0000 Received: from localhost ([127.0.0.1]:37224 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mreEb-0004Wv-Eo for submit@debbugs.gnu.org; Mon, 29 Nov 2021 05:50:10 -0500 Received: from lists.gnu.org ([209.51.188.17]:51322) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mreEV-0004Wd-WE for submit@debbugs.gnu.org; Mon, 29 Nov 2021 05:50:08 -0500 Received: from eggs.gnu.org ([209.51.188.92]:52338) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mreEV-0007v0-Oj for bug-gnu-emacs@gnu.org; Mon, 29 Nov 2021 05:50:03 -0500 Received: from smtp1a.inetd.co.jp ([210.129.88.11]:48082) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mreES-0006U5-0p for bug-gnu-emacs@gnu.org; Mon, 29 Nov 2021 05:50:03 -0500 Received: from localhost (110-133-201-220.rev.home.ne.jp [110.133.201.220]) by smtp1a.inetd.co.jp (Postfix) with ESMTPA id 0289461 for ; Mon, 29 Nov 2021 19:49:55 +0900 (JST) From: Ikumi Keita X-Mailer: MH-E 8.6+git; nmh 1.7.1; GNU Emacs 27.2 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Date: Mon, 29 Nov 2021 19:49:53 +0900 Message-ID: <26598.1638182993@localhost> Received-SPF: pass client-ip=210.129.88.11; envelope-from=ikumi@ikumi.que.jp; helo=smtp1a.inetd.co.jp X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) 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: -2.3 (--) --=-=-= Content-Type: text/plain; charset=iso-2022-jp The function `fill-region-as-paragraph' leaves a temporal marker which isn't cleared in the buffer. Here is the structure of `fill-region-as-paragraph': ---------------------------------------------------------------------- (defun fill-region-as-paragraph (from to &optional justify nosqueeze squeeze-after) [...] (setq to (copy-marker (point) t)) [...] (if (not (> to (point))) nil ;; There is no paragraph, only whitespace: exit now. [...] (goto-char to) (unless (eobp) (forward-char 1)) ;; Return the fill-prefix we used fill-prefix))) ---------------------------------------------------------------------- With this code, temporal marker bound to local variable `to' is left in the buffer. According to elisp reference `(elisp) Overview of Markers', it is recommended to clear such stale marker with suitable `(set-marker MARKER nil)': ,---- | Insertion and deletion in a buffer must check all the markers and | relocate them if necessary. This slows processing in a buffer with a | large number of markers. For this reason, it is a good idea to make a | marker point nowhere if you are sure you don’t need it any more. `---- I'd propose to apply the attached patch to accomplish that. Regards, Ikumi Keita --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=patch Content-Description: clear temporal marker diff -r b5040f7ef2cb -r a9285b04999c lisp/textmodes/fill.el --- a/lisp/textmodes/fill.el Sat Mar 27 02:27:15 2021 +0900 +++ b/lisp/textmodes/fill.el Fri Nov 19 14:00:38 2021 +0900 @@ -708,7 +709,10 @@ (goto-char from-plus-indent)) (if (not (> to (point))) - nil ;; There is no paragraph, only whitespace: exit now. + ;; There is no paragraph, only whitespace: exit now. + (progn + (set-marker to nil) + nil) (or justify (setq justify (current-justification))) @@ -784,6 +788,7 @@ ;; Leave point after final newline. (goto-char to) (unless (eobp) (forward-char 1)) + (set-marker to nil) ;; Return the fill-prefix we used fill-prefix))) --=-=-= Content-Type: text/plain In GNU Emacs 27.2 (build 1, x86_64-unknown-freebsd13.0, GTK+ Version 3.24.27, cairo version 1.16.0) of 2021-04-15 built on freebsd.vmware Windowing system distributor 'The X.Org Foundation', version 11.0.12011000 System Description: 13.0-RELEASE-p5 Recent messages: No current message Scanning +outbox...done No more undeleted messages Processing deletes and refiles for +outbox...done Making completion list... C-x v ~ runs the command vc-revision-other-window Type C-x 1 to delete the help window, C-M-v to scroll help. Mark saved where search started Mark set Making completion list... Configured using: 'configure --with-canna --with-canna-includes=/usr/local/canna/include --with-canna-libraries=/usr/local/canna/lib --without-xim --disable-largefile --without-modules --with-sound=yes --with-file-notification=yes --with-cairo=yes CFLAGS=-O3' Configured features: XPM JPEG TIFF GIF PNG RSVG CAIRO SOUND DBUS GSETTINGS GLIB NOTIFY KQUEUE ACL GNUTLS LIBXML2 FREETYPE HARFBUZZ ZLIB TOOLKIT_SCROLL_BARS GTK3 X11 XDBE XIM THREADS JSON PDUMPER LCMS2 GMP Important settings: value of $EMACSLOADPATH: /home/keita/elisp: value of $LANG: ja_JP.eucJP locale-coding-system: japanese-iso-8bit-unix Major mode: Info Minor modes in effect: global-git-commit-mode: t magit-auto-revert-mode: t shell-dirtrack-mode: t tooltip-mode: t global-eldoc-mode: t mouse-wheel-mode: t tool-bar-mode: t menu-bar-mode: t file-name-shadow-mode: t global-font-lock-mode: t font-lock-mode: t blink-cursor-mode: t auto-composition-mode: t auto-encryption-mode: t auto-compression-mode: t buffer-read-only: t line-number-mode: t transient-mark-mode: t Load-path shadows: ~/elisp/reftex-parse hides /usr/local/share/emacs/27.2/lisp/textmodes/reftex-parse /home/keita/.emacs.d/elpa/soap-client-3.2.0/soap-client hides /usr/local/share/emacs/27.2/lisp/net/soap-client /home/keita/.emacs.d/elpa/soap-client-3.2.0/soap-inspect hides /usr/local/share/emacs/27.2/lisp/net/soap-inspect Features: (shadow emacsbug mule-util jka-compr misearch multi-isearch log-view vc vc-dispatcher vc-hg bug-reference magit-gitignore face-remap magit-submodule magit-obsolete magit-blame magit-stash magit-reflog magit-bisect magit-push magit-pull magit-fetch magit-clone magit-remote magit-commit magit-sequence magit-notes magit-worktree magit-tag magit-merge magit-branch magit-reset magit-files magit-refs magit-status magit magit-repos magit-apply magit-wip magit-log magit-diff smerge-mode diff git-commit rx log-edit pcvs-util add-log magit-core magit-autorevert autorevert filenotify magit-margin magit-transient magit-process with-editor shell pcomplete comint ring server ansi-color magit-mode transient magit-git magit-section magit-utils dash mh-thread boxquote rect supercite regi mh-identity mh-letter mh-comp sendmail vc-git diff-mode easy-mmode conf-mode flow-fill cl-extra help-mode shr-color color mh-search mh-alias multi-prompt crm smiley qp mm-archive mail-extr mh-mime mh-gnus mh-show goto-addr thingatpt gnus-cite gnus-art mm-uu mml2015 mm-view mml-smime smime dig gnus-sum url url-proxy url-privacy url-expand url-methods url-history mailcap shr url-cookie url-domsuf url-util svg xml dom gnus-group gnus-undo gnus-start gnus-cloud nnimap nnmail mail-source utf7 netrc nnoo parse-time iso8601 gnus-spec gnus-int message rmc puny dired dired-loaddefs format-spec rfc822 mml mml-sec epa derived epg epg-config mm-decode mm-bodies mm-encode mail-parse rfc2231 gmm-utils mailheader gnus-win gnus-range gnus nnheader wid-edit mh-seq mh-inc hl-line mh-tool-bar mh-xface mh-utils mh-folder which-func imenu gnus-util rmail rmail-loaddefs rfc2047 rfc2045 ietf-drums mm-util mail-prsvr mail-utils text-property-search time-date mh-scan mh-e mh-compat mailabbrev mh-buffers mh-loaddefs edmacro kmacro preview-latex auto-loads tex-site canna-im info package easymenu browse-url url-handlers url-parse auth-source cl-seq eieio eieio-core cl-macs eieio-loaddefs password-cache json subr-x map url-vars seq byte-opt gv bytecomp byte-compile cconv cl-loaddefs cl-lib japan-util tooltip eldoc electric uniquify ediff-hook vc-hooks lisp-float-type mwheel term/x-win x-win term/common-win x-dnd tool-bar dnd fontset image regexp-opt fringe tabulated-list replace newcomment text-mode elisp-mode lisp-mode prog-mode register page tab-bar menu-bar rfn-eshadow isearch timer select scroll-bar mouse jit-lock font-lock syntax facemenu font-core term/tty-colors frame minibuffer cl-generic cham georgian utf-8-lang misc-lang vietnamese tibetan thai tai-viet lao korean japanese eucjp-ms cp51932 hebrew greek romanian slovak czech european ethiopic indian cyrillic chinese composite charscript charprop case-table epa-hook jka-cmpr-hook help simple abbrev obarray cl-preloaded nadvice loaddefs button faces cus-face macroexp files text-properties overlay sha1 md5 base64 format env code-pages mule custom widget hashtable-print-readable backquote threads dbusbind kqueue lcms2 dynamic-setting system-font-setting font-render-setting cairo move-toolbar gtk x-toolkit x multi-tty make-network-process emacs) Memory information: ((conses 16 244096 28812) (symbols 48 22813 1) (strings 32 77097 10106) (string-bytes 1 2539003) (vectors 16 43698) (vector-slots 8 1236535 74930) (floats 8 398 186) (intervals 56 4375 0) (buffers 1000 31)) --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Mon Nov 29 09:41:00 2021 Received: (at control) by debbugs.gnu.org; 29 Nov 2021 14:41:01 +0000 Received: from localhost ([127.0.0.1]:37583 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mrhq0-0000Pt-LX for submit@debbugs.gnu.org; Mon, 29 Nov 2021 09:41:00 -0500 Received: from quimby.gnus.org ([95.216.78.240]:58442) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mrhpy-0000PS-Dw for control@debbugs.gnu.org; Mon, 29 Nov 2021 09:40:59 -0500 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=n0y69+72Y8Kd0yEamLMnDOj7cBT049Bc8Hqw/g3Wstw=; b=KQFBMVUKNjj+Kz1OQNoBRbT8zc 3jga8qIIh3fbs/ss5DTRL/jZGyc+ayWNBV7/gjCxlV3YLDLnDQTa/dlv7BG6w6H95bbutXyHjYo6o gDTeLhSw0G2qEsNj/c+ITp9Wo6YKp58iuhhKU+Z1VsiR8ijwHTwc5t5VAMnXg1G8kBU0=; Received: from [84.212.220.105] (helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1mrhpq-0005Cz-RG for control@debbugs.gnu.org; Mon, 29 Nov 2021 15:40:52 +0100 Date: Mon, 29 Nov 2021 15:40:49 +0100 Message-Id: <87sfvfxbwu.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #52175 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 52175 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 52175 29.1 quit From unknown Tue Aug 19 05:11:41 2025 X-Loop: help-debbugs@gnu.org Subject: bug#52175: 27.2; stale marker left by `fill-region-as-paragraph' Resent-From: Lars Ingebrigtsen Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Mon, 29 Nov 2021 14:42:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 52175 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Ikumi Keita Cc: 52175@debbugs.gnu.org Received: via spool by 52175-submit@debbugs.gnu.org id=B52175.16381968671687 (code B ref 52175); Mon, 29 Nov 2021 14:42:02 +0000 Received: (at 52175) by debbugs.gnu.org; 29 Nov 2021 14:41:07 +0000 Received: from localhost ([127.0.0.1]:37589 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mrhq6-0000R9-Te for submit@debbugs.gnu.org; Mon, 29 Nov 2021 09:41:07 -0500 Received: from quimby.gnus.org ([95.216.78.240]:58434) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mrhpx-0000PQ-04 for 52175@debbugs.gnu.org; Mon, 29 Nov 2021 09:41:01 -0500 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=SoaohVrGqN4kneq4IXnzMQk3giUGsLDy5GynZcD9OBM=; b=NDddGb0zHWt9dfA1YnWngsQqHq m1echKj03hsyPzIjALqiZVHO+sz7vixopUkTZUzdHnLKAZoKm3SB/w8VYDyEF/R1g+6Xc8KmqaVss PBXn6/stP4jggO2G8tkFeT+t/PpJUtjOGhTGRnrJeJCgBtY5qetB+AUt/Vr7TuW3S2AA=; Received: from [84.212.220.105] (helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1mrhpi-0005Cu-OM; Mon, 29 Nov 2021 15:40:47 +0100 From: Lars Ingebrigtsen References: <26598.1638182993@localhost> X-Now-Playing: Colleen's _The Tunnel and the Clearing_: "Hidden in the Current" Date: Mon, 29 Nov 2021 15:40:41 +0100 In-Reply-To: <26598.1638182993@localhost> (Ikumi Keita's message of "Mon, 29 Nov 2021 19:49:53 +0900") Message-ID: <87tufvxbx2.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: Ikumi Keita writes: > I'd propose to apply the attached patch to accomplish that. Looks good to me, so I've applied it to Emacs 29. 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-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 (---) Ikumi Keita writes: > I'd propose to apply the attached patch to accomplish that. Looks good to me, so I've applied it to Emacs 29. 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 unknown Tue Aug 19 05:11:41 2025 X-Loop: help-debbugs@gnu.org Subject: bug#52175: 27.2; stale marker left by `fill-region-as-paragraph' Resent-From: Ikumi Keita Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Mon, 29 Nov 2021 15:53:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 52175 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Lars Ingebrigtsen Cc: 52175@debbugs.gnu.org Received: via spool by 52175-submit@debbugs.gnu.org id=B52175.163820117012182 (code B ref 52175); Mon, 29 Nov 2021 15:53:02 +0000 Received: (at 52175) by debbugs.gnu.org; 29 Nov 2021 15:52:50 +0000 Received: from localhost ([127.0.0.1]:38999 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mrixS-0003AL-0X for submit@debbugs.gnu.org; Mon, 29 Nov 2021 10:52:50 -0500 Received: from smtp1a.inetd.co.jp ([210.129.88.11]:45828) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mrixM-0003A6-DO for 52175@debbugs.gnu.org; Mon, 29 Nov 2021 10:52:44 -0500 Received: from localhost (110-133-201-220.rev.home.ne.jp [110.133.201.220]) by smtp1a.inetd.co.jp (Postfix) with ESMTPA id 0D2FA61; Tue, 30 Nov 2021 00:52:38 +0900 (JST) From: Ikumi Keita In-reply-to: <87tufvxbx2.fsf@gnus.org> References: <26598.1638182993@localhost> <87tufvxbx2.fsf@gnus.org> Comments: In-reply-to Lars Ingebrigtsen message dated "Mon, 29 Nov 2021 15:40:41 +0100." X-Mailer: MH-E 8.6+git; nmh 1.7.1; GNU Emacs 27.2 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <27954.1638201152.1@localhost> Date: Tue, 30 Nov 2021 00:52:33 +0900 Message-ID: <27955.1638201153@localhost> X-Spam-Score: 0.0 (/) 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: -1.0 (-) Hi Lars, >>>>> Lars Ingebrigtsen writes: > Ikumi Keita writes: >> I'd propose to apply the attached patch to accomplish that. > Looks good to me, so I've applied it to Emacs 29. Thanks. > 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? I've already signed copyright assignment with my former email address ikumi@revery.net, but it might be for AUCTeX only (sorry, my memory isn't clear enough with respect to its coverage.) If so, I'm willing to sign for other projects including Emacs for FSF. Regards, Ikumi Keita From unknown Tue Aug 19 05:11:41 2025 X-Loop: help-debbugs@gnu.org Subject: bug#52175: 27.2; stale marker left by `fill-region-as-paragraph' Resent-From: Lars Ingebrigtsen Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Mon, 29 Nov 2021 16:24:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 52175 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Ikumi Keita Cc: 52175@debbugs.gnu.org Received: via spool by 52175-submit@debbugs.gnu.org id=B52175.1638203001465 (code B ref 52175); Mon, 29 Nov 2021 16:24:01 +0000 Received: (at 52175) by debbugs.gnu.org; 29 Nov 2021 16:23:21 +0000 Received: from localhost ([127.0.0.1]:39124 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mrjQz-00007O-RV for submit@debbugs.gnu.org; Mon, 29 Nov 2021 11:23:21 -0500 Received: from quimby.gnus.org ([95.216.78.240]:60090) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mrjQu-000078-Q1 for 52175@debbugs.gnu.org; Mon, 29 Nov 2021 11:23:16 -0500 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=pA7T8hMQokFTyfttuEiWmdC9ZRsmiImirF3CWhOu1E8=; b=Ko7om2Ky4RJco8nQnXKmec1qW/ t5JGM/PnY+7nPUn836yzaktybmAu6P1tpnAiFnGMG3PD8EWllDFXw3KjB29bnEJy245FKkm7DjKCF 0/IiuJ9SZfpG0ZG/7ObkfB7VkGNRxQuQSOwaB72Tvx1noBrRcG0lnKeJWBLjJGySxb9Q=; Received: from [84.212.220.105] (helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1mrjQg-0006BE-WD; Mon, 29 Nov 2021 17:23:03 +0100 From: Lars Ingebrigtsen References: <26598.1638182993@localhost> <87tufvxbx2.fsf@gnus.org> <27955.1638201153@localhost> X-Now-Playing: Caroline Shaw & =?UTF-8?Q?S=C5=8D?= Percussion's _Let The Soil Play Its Simple Part_: "Other Song" Date: Mon, 29 Nov 2021 17:22:57 +0100 In-Reply-To: <27955.1638201153@localhost> (Ikumi Keita's message of "Tue, 30 Nov 2021 00:52:33 +0900") Message-ID: <87czmjszha.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: Ikumi Keita writes: > I've already signed copyright assignment with my former email address > ikumi@revery.net, but it might be for AUCTeX only (sorry, my memory > isn't clear enough with respect to its coverage.) If so, [...] 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-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 (---) Ikumi Keita writes: > I've already signed copyright assignment with my former email address > ikumi@revery.net, but it might be for AUCTeX only (sorry, my memory > isn't clear enough with respect to its coverage.) If so, I'm willing to > sign for other projects including Emacs for FSF. Yup, I see the assignment for AUCTEX, but not for Emacs as a whole. Here's the form to get started with the Emacs assignment process: 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 Tue Aug 19 05:11:41 2025 X-Loop: help-debbugs@gnu.org Subject: bug#52175: 27.2; stale marker left by `fill-region-as-paragraph' Resent-From: Ikumi Keita Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Mon, 29 Nov 2021 16:58:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 52175 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Lars Ingebrigtsen Cc: 52175@debbugs.gnu.org Received: via spool by 52175-submit@debbugs.gnu.org id=B52175.163820504712430 (code B ref 52175); Mon, 29 Nov 2021 16:58:01 +0000 Received: (at 52175) by debbugs.gnu.org; 29 Nov 2021 16:57:27 +0000 Received: from localhost ([127.0.0.1]:39149 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mrjy3-0003EQ-5d for submit@debbugs.gnu.org; Mon, 29 Nov 2021 11:57:27 -0500 Received: from smtp1a.inetd.co.jp ([210.129.88.11]:45896) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mrjy1-0003EH-OG for 52175@debbugs.gnu.org; Mon, 29 Nov 2021 11:57:26 -0500 Received: from localhost (110-133-201-220.rev.home.ne.jp [110.133.201.220]) by smtp1a.inetd.co.jp (Postfix) with ESMTPA id D410B61; Tue, 30 Nov 2021 01:57:23 +0900 (JST) From: Ikumi Keita In-reply-to: <87czmjszha.fsf@gnus.org> References: <26598.1638182993@localhost> <87tufvxbx2.fsf@gnus.org> <27955.1638201153@localhost> <87czmjszha.fsf@gnus.org> Comments: In-reply-to Lars Ingebrigtsen message dated "Mon, 29 Nov 2021 17:22:57 +0100." X-Mailer: MH-E 8.6+git; nmh 1.7.1; GNU Emacs 27.2 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <28221.1638205039.1@localhost> Date: Tue, 30 Nov 2021 01:57:19 +0900 Message-ID: <28222.1638205039@localhost> X-Spam-Score: 0.0 (/) 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: -1.0 (-) >>>>> Lars Ingebrigtsen writes: > Yup, I see the assignment for AUCTEX, but not for Emacs as a whole. I see, thanks. > Here's the form to get started with the Emacs assignment process: > Please email the following information to assign@gnu.org, and we > will send you the assignment form for your past and future changes. Done. :-) Regards, Ikumi Keita