Received: (at 61735) by debbugs.gnu.org; 23 Feb 2023 17:45:45 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Thu Feb 23 12:45:45 2023 Received: from localhost ([127.0.0.1]:35224 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1pVFf6-0003y2-M6 for submit <at> debbugs.gnu.org; Thu, 23 Feb 2023 12:45:44 -0500 Received: from eggs.gnu.org ([209.51.188.92]:46988) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <eliz@HIDDEN>) id 1pVFf5-0003xq-Bz for 61735 <at> debbugs.gnu.org; Thu, 23 Feb 2023 12:45:43 -0500 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 <eliz@HIDDEN>) id 1pVFew-00065b-Am; Thu, 23 Feb 2023 12:45:37 -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=PzF+9ySyHe5H5mepf6uVDjw+4aQtABIK2HjHmRh1ZhI=; b=hBMv+jDDuoRM In9TDcRFPRfiGYbCgEOaGxgj+mozrWGm3w9Nf0L6+Uiz2R2XiVTTq42nbHxpxQuHu0MpK11N8Agig L1JIVjmJymhlHBLpYg3YVs6kv4eqD2sbbt6zLiiTXJhNRH0QLR+k/ROXXxDUY3fPyYi8bBjngvuJz DW+DjEWlrF7l86ULX07Rrj4KURjrTIpR87s60KfmOmxTYl5dFZL1hH1pDKGF4khWtfTxt5GK43Jci ZrYvrdGgED5OYkkz77TJY8x3oVSR2t5/w9qfxLK+9KaF6IgjYJGt4rNQXpNNC28G7C/SLeXwDCAyA pnSZSRbJU0MqDqq7CdXRJw==; 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 <eliz@HIDDEN>) id 1pVFeu-0006kB-KP; Thu, 23 Feb 2023 12:45:33 -0500 Date: Thu, 23 Feb 2023 19:45:29 +0200 Message-Id: <83h6vcp96u.fsf@HIDDEN> From: Eli Zaretskii <eliz@HIDDEN> To: dalanicolai <dalanicolai@HIDDEN>, Stefan Monnier <monnier@HIDDEN> In-Reply-To: <CACJP=3m0sdYE209oe9qa3q5nLw8w+LSJ6xETGAaM_fhizmmPvQ@HIDDEN> (message from dalanicolai on Thu, 23 Feb 2023 17:32:50 +0100) Subject: Re: bug#61735: 29.0.50; String object in margin not associated correctly with buffer text References: <CACJP=3m0sdYE209oe9qa3q5nLw8w+LSJ6xETGAaM_fhizmmPvQ@HIDDEN> X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 61735 Cc: 61735 <at> debbugs.gnu.org X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -3.3 (---) > From: dalanicolai <dalanicolai@HIDDEN> > Date: Thu, 23 Feb 2023 17:32:50 +0100 > > (defun baleen-render (data) > (pop-to-buffer (get-buffer-create "*baleen*")) > (set-window-margins nil 5) > (dolist (page data) > (dolist (match (cdr page)) > (let ((o (make-overlay (point) > (progn (insert match) > (point))))) > (let ((s " ")) > (put-text-property 0 1 > 'display `((margin left-margin) ,(format " %d" (car page))) > s) > (overlay-put o 'before-string s))) > (insert "\n")))) > > (baleen-render '((1 "test1" "test2") (2 "test3"))) > ``` > > Here, for every 'match' in a 'page' I am creating a new string 's' > to which I add the margin display property to 'associate' it > with some buffer text by using it as the value for its before-string > property. > However, although each 's' should get a different display property value > via (format " %d" (car page)), all margin entries end up showing the > same value of 2 (while the first two lines should show page number 1). > > To reproduce the error, simply evaluate the code above. Using edebug on > 'baleen-render' it can be seen that the code seems correct, i.e. (car > page) correctly returns the correct page number. > > It seems that although I am creating a different string object on each > iteration, somehow the object put in the marging seems to be always the > same. Is it really true that you create a different string object every time? Add a copy-sequence call there, like this: (let ((s (copy-sequence " "))) and the code does what you expect. Stefan, am I missing something here?
bug-gnu-emacs@HIDDEN
:bug#61735
; Package emacs
.
Full text available.Received: (at submit) by debbugs.gnu.org; 23 Feb 2023 16:33:14 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Thu Feb 23 11:33:14 2023 Received: from localhost ([127.0.0.1]:35123 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1pVEWv-0001sW-Hy for submit <at> debbugs.gnu.org; Thu, 23 Feb 2023 11:33:14 -0500 Received: from lists.gnu.org ([209.51.188.17]:44506) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <dalanicolai@HIDDEN>) id 1pVEWs-0001sM-P7 for submit <at> debbugs.gnu.org; Thu, 23 Feb 2023 11:33:12 -0500 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 <dalanicolai@HIDDEN>) id 1pVEWp-0006d1-WA for bug-gnu-emacs@HIDDEN; Thu, 23 Feb 2023 11:33:10 -0500 Received: from mail-wm1-x335.google.com ([2a00:1450:4864:20::335]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from <dalanicolai@HIDDEN>) id 1pVEWm-0007YG-Ru for bug-gnu-emacs@HIDDEN; Thu, 23 Feb 2023 11:33:07 -0500 Received: by mail-wm1-x335.google.com with SMTP id m25-20020a7bcb99000000b003e7842b75f2so6889344wmi.3 for <bug-gnu-emacs@HIDDEN>; Thu, 23 Feb 2023 08:33:04 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=to:subject:message-id:date:from:mime-version:from:to:cc:subject :date:message-id:reply-to; bh=cuTBIA3LCjAYeleO3eBk2x4m+X18AAg6ZRXkP6hJKno=; b=hck+GSwO+iyu3SzJzXcEUTd34/CMFPAZ7jVdluHxUPfReqDZGXl0RoRxkzBDHHEDrH P/gpVf13wFMRLT9/UxqA8qR95lRCGGmRxeifIc9vrIoEnF/Ml2951X/X15iPDci64bvf 9pnOZFruxumgg5lLmQKygb8Q5zMJrQ807cpEOVWesPCHjK3Tz6qQPeqGY6Gy9ilDzac3 r/AURDdxd3gQHQpj0usjr/V6HimjYb7DvKjj7TBE2B2mWgV353b4wmifCsF11kgYXDoz 3n4ZeNx4SFe/MyE3DWhEPQihnD1n7AHG95k3nVo8DErOIIHr2veF9ms0FZB3Yn2kf5b3 ARcw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=to:subject:message-id:date:from:mime-version:x-gm-message-state :from:to:cc:subject:date:message-id:reply-to; bh=cuTBIA3LCjAYeleO3eBk2x4m+X18AAg6ZRXkP6hJKno=; b=VkJ/JMhPzPjnIWhJKUZMv1Q7rZp0EdykQ6VK0I1zEV0LAVFQ0mRyiSS9nvtjjdoesg sa3Ee2FSLjdbUo9zwypozKhvG4kHn7ULxjeJOjg8s9yXkgLcDszAqKxW0GlpKu9wRs2y L1RYiS3jorP2cXMEi3EZgdEgza6zUHb8Y/degP9aT8KyCVjMFXGblRmnFCiELMMoVO+V t0AV99ECHlj3D3K0ZMZpXdGLkgG593Cre9gUqB3WOKPvPQ0RS41loQAuJ0TMGkEeDM5d QPHniW1Gt1KvbSfLZdHnwTGDPynMpbNLsmRvt7oLS5nEIC4KBrSEclnmdNxl08HRla5X ijsw== X-Gm-Message-State: AO0yUKUbenj88RQbSFrXmKGG0LRzobW+cEnD4LrnTEkouo5XcEllZLGp 9un9wplSSy6wYe9QR6bIes1x2d4TGIJY28zHrL4ews4nDWo6Ew== X-Google-Smtp-Source: AK7set913tISyN+mkSKkm+Cedm6O4G5QQFUdlxqEuil7nCq5VSjVobSNXeAZIWHvb4A6Jqy3Hhwlgi8JONIfs9VbbKA= X-Received: by 2002:a05:600c:cc8:b0:3dc:56e6:797a with SMTP id fk8-20020a05600c0cc800b003dc56e6797amr571602wmb.196.1677169982138; Thu, 23 Feb 2023 08:33:02 -0800 (PST) MIME-Version: 1.0 From: dalanicolai <dalanicolai@HIDDEN> Date: Thu, 23 Feb 2023 17:32:50 +0100 Message-ID: <CACJP=3m0sdYE209oe9qa3q5nLw8w+LSJ6xETGAaM_fhizmmPvQ@HIDDEN> Subject: 29.0.50; String object in margin not associated correctly with buffer text To: bug-gnu-emacs@HIDDEN Content-Type: multipart/alternative; boundary="000000000000036ccb05f56091f5" Received-SPF: pass client-ip=2a00:1450:4864:20::335; envelope-from=dalanicolai@HIDDEN; helo=mail-wm1-x335.google.com X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, FREEMAIL_FROM=0.001, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -2.3 (--) --000000000000036ccb05f56091f5 Content-Type: text/plain; charset="UTF-8" The section 'Displaying in the Margins <https://www.gnu.org/software/emacs/manual/html_node/elisp/Display-Margins.html>' of the elisp manual mentions that 'To display something in the margin in association with certain buffer text ... put a before-string property on the text and put the margin display specification on the contents of the before-string'. So this is what I am trying to achieve using the following code ``` (defun baleen-render (data) (pop-to-buffer (get-buffer-create "*baleen*")) (set-window-margins nil 5) (dolist (page data) (dolist (match (cdr page)) (let ((o (make-overlay (point) (progn (insert match) (point))))) (let ((s " ")) (put-text-property 0 1 'display `((margin left-margin) ,(format " %d" (car page))) s) (overlay-put o 'before-string s))) (insert "\n")))) (baleen-render '((1 "test1" "test2") (2 "test3"))) ``` Here, for every 'match' in a 'page' I am creating a new string 's' to which I add the margin display property to 'associate' it with some buffer text by using it as the value for its before-string property. However, although each 's' should get a different display property value via (format " %d" (car page)), all margin entries end up showing the same value of 2 (while the first two lines should show page number 1). To reproduce the error, simply evaluate the code above. Using edebug on 'baleen-render' it can be seen that the code seems correct, i.e. (car page) correctly returns the correct page number. It seems that although I am creating a different string object on each iteration, somehow the object put in the marging seems to be always the same. To me, this looks like a bug. And otherwise, if I am doing something wrong, then of course this report can be seen as a 'help/support request'. Thanks! In GNU Emacs 29.0.50 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.24.34, cairo version 1.17.6) of 2022-09-10 built on fedora Repository revision: 4cf9c92e27d20da9453f9abe89d84bee5d776329 Repository branch: master Windowing system distributor 'The X.Org Foundation', version 11.0.12014000 System Description: Fedora Linux 37 (Workstation Edition) Configured using: 'configure --with-modules --with-cairo --with-native-compilation --with-json' Configured features: ACL CAIRO DBUS FREETYPE GIF GLIB GMP GNUTLS GSETTINGS HARFBUZZ JPEG JSON LIBSELINUX LIBXML2 MODULES NATIVE_COMP NOTIFY INOTIFY PDUMPER PNG RSVG SECCOMP SOUND SQLITE3 THREADS TIFF TOOLKIT_SCROLL_BARS X11 XDBE XIM XINPUT2 XPM GTK3 ZLIB Important settings: value of $LANG: en_US.UTF-8 value of $XMODIFIERS: @im=ibus locale-coding-system: utf-8-unix Major mode: Fundamental Minor modes in effect: tooltip-mode: t global-eldoc-mode: t show-paren-mode: t electric-indent-mode: t mouse-wheel-mode: t tool-bar-mode: t menu-bar-mode: t file-name-shadow-mode: t global-font-lock-mode: t blink-cursor-mode: t buffer-read-only: t line-number-mode: t indent-tabs-mode: t transient-mark-mode: t auto-composition-mode: t auto-encryption-mode: t auto-compression-mode: t Load-path shadows: None found. Features: (shadow sort mail-extr emacsbug message mailcap yank-media puny dired dired-loaddefs rfc822 mml mml-sec password-cache epa derived epg rfc6068 epg-config gnus-util text-property-search time-date mm-decode mm-bodies mm-encode mail-parse rfc2231 mailabbrev gmm-utils mailheader cl-loaddefs comp comp-cstr warnings icons subr-x rx cl-seq cl-macs gv cl-extra help-mode bytecomp byte-compile cconv cl-lib sendmail rfc2047 rfc2045 ietf-drums mm-util mail-prsvr mail-utils rmc iso-transl tooltip eldoc paren electric uniquify ediff-hook vc-hooks lisp-float-type elisp-mode 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 lisp-mode prog-mode register page tab-bar menu-bar rfn-eshadow isearch easymenu timer select scroll-bar mouse jit-lock font-lock syntax font-core term/tty-colors frame minibuffer nadvice seq simple cl-generic indonesian philippine 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 emoji-zwj charscript charprop case-table epa-hook jka-cmpr-hook help abbrev obarray oclosure cl-preloaded button loaddefs faces cus-face macroexp files window text-properties overlay sha1 md5 base64 format env code-pages mule custom widget keymap hashtable-print-readable backquote threads dbusbind inotify dynamic-setting system-font-setting font-render-setting cairo move-toolbar gtk x-toolkit xinput2 x multi-tty make-network-process native-compile emacs) Memory information: ((conses 16 77301 10328) (symbols 48 7112 0) (strings 32 19407 1642) (string-bytes 1 593504) (vectors 16 15411) (vector-slots 8 317149 17892) (floats 8 28 58) (intervals 56 372 3) (buffers 1000 13)) --000000000000036ccb05f56091f5 Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable <div dir=3D"ltr">The section '<a href=3D"https://www.gnu.org/software/e= macs/manual/html_node/elisp/Display-Margins.html">Displaying in the Margins= </a>' of the elisp manual mentions<br>that 'To display something in= the margin in association with certain<br>buffer text ... put a before-str= ing property on the text and put the<br>margin display specification on the= contents of the before-string'.<br><br>So this is what I am trying to = achieve using the following code<br><br>```<br>(defun baleen-render (data)<= br>=C2=A0 (pop-to-buffer (get-buffer-create "*baleen*"))<br>=C2= =A0 (set-window-margins nil 5)<br>=C2=A0 (dolist (page data)<br>=C2=A0 =C2= =A0 (dolist (match (cdr page))<br>=C2=A0 =C2=A0 =C2=A0 (let ((o (make-overl= ay (point)<br>=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2= =A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0(progn (insert match)<br>=C2= =A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 (point)))))<br>=C2=A0 =C2= =A0 =C2=A0 =C2=A0 (let ((s " "))<br>=C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 (put-text-property 0 1<br>=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0'display = `((margin left-margin) ,(format " %d" (car page)))<br>=C2=A0 =C2= =A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 =C2=A0 =C2=A0s)<br>=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 (overlay-put o= 'before-string s)))<br>=C2=A0 =C2=A0 =C2=A0 (insert "\n"))))= <br><br>(baleen-render '((1 "test1" "test2") (2 &qu= ot;test3")))<br>```<br><br>Here, for every 'match' in a 'p= age' I am creating a new string 's'<br>to which I add the margi= n display property to 'associate' it<br>with some buffer text by us= ing it as the value for its before-string<br>property.<br>However, although= each 's' should get a different display property value<br>via (for= mat " %d" (car page)), all margin entries end up showing the<br>s= ame value of 2 (while the first two lines should show page number 1).<br><b= r>To reproduce the error, simply evaluate the code above. Using edebug on<b= r>'baleen-render' it can be seen that the code seems correct, i.e. = (car<br>page) correctly returns the correct page number.<br><br>It seems th= at although I am creating a different string object on each<br>iteration, s= omehow the object put in the marging seems to be always the<br>same.<br><br= >To me, this looks like a bug. And otherwise, if I am doing something<br>wr= ong, then of course this report can be seen as a 'help/support<br><div>= request'. Thanks!</div><div><br></div><div>In GNU Emacs 29.0.50 (build = 1, x86_64-pc-linux-gnu, GTK+ Version<br>=C2=A03.24.34, cairo version 1.17.6= ) of 2022-09-10 built on fedora<br>Repository revision: 4cf9c92e27d20da9453= f9abe89d84bee5d776329<br>Repository branch: master<br>Windowing system dist= ributor 'The X.Org Foundation', version 11.0.12014000<br>System Des= cription: Fedora Linux 37 (Workstation Edition)<br><br>Configured using:<br= >=C2=A0'configure --with-modules --with-cairo --with-native-compilation= <br>=C2=A0--with-json'<br><br>Configured features:<br>ACL CAIRO DBUS FR= EETYPE GIF GLIB GMP GNUTLS GSETTINGS HARFBUZZ JPEG JSON<br>LIBSELINUX LIBXM= L2 MODULES NATIVE_COMP NOTIFY INOTIFY PDUMPER PNG RSVG<br>SECCOMP SOUND SQL= ITE3 THREADS TIFF TOOLKIT_SCROLL_BARS X11 XDBE XIM<br>XINPUT2 XPM GTK3 ZLIB= <br><br>Important settings:<br>=C2=A0 value of $LANG: en_US.UTF-8<br>=C2=A0= value of $XMODIFIERS: @im=3Dibus<br>=C2=A0 locale-coding-system: utf-8-uni= x<br><br>Major mode: Fundamental<br><br>Minor modes in effect:<br>=C2=A0 to= oltip-mode: t<br>=C2=A0 global-eldoc-mode: t<br>=C2=A0 show-paren-mode: t<b= r>=C2=A0 electric-indent-mode: t<br>=C2=A0 mouse-wheel-mode: t<br>=C2=A0 to= ol-bar-mode: t<br>=C2=A0 menu-bar-mode: t<br>=C2=A0 file-name-shadow-mode: = t<br>=C2=A0 global-font-lock-mode: t<br>=C2=A0 blink-cursor-mode: t<br>=C2= =A0 buffer-read-only: t<br>=C2=A0 line-number-mode: t<br>=C2=A0 indent-tabs= -mode: t<br>=C2=A0 transient-mark-mode: t<br>=C2=A0 auto-composition-mode: = t<br>=C2=A0 auto-encryption-mode: t<br>=C2=A0 auto-compression-mode: t<br><= br>Load-path shadows:<br>None found.<br><br>Features:<br>(shadow sort mail-= extr emacsbug message mailcap yank-media puny dired<br>dired-loaddefs rfc82= 2 mml mml-sec password-cache epa derived epg rfc6068<br>epg-config gnus-uti= l text-property-search time-date mm-decode mm-bodies<br>mm-encode mail-pars= e rfc2231 mailabbrev gmm-utils mailheader cl-loaddefs<br>comp comp-cstr war= nings icons subr-x rx cl-seq cl-macs gv cl-extra<br>help-mode bytecomp byte= -compile cconv cl-lib sendmail rfc2047 rfc2045<br>ietf-drums mm-util mail-p= rsvr mail-utils rmc iso-transl tooltip eldoc<br>paren electric uniquify edi= ff-hook vc-hooks lisp-float-type elisp-mode<br>mwheel term/x-win x-win term= /common-win x-dnd tool-bar dnd fontset image<br>regexp-opt fringe tabulated= -list replace newcomment text-mode lisp-mode<br>prog-mode register page tab= -bar menu-bar rfn-eshadow isearch easymenu<br>timer select scroll-bar mouse= jit-lock font-lock syntax font-core<br>term/tty-colors frame minibuffer na= dvice seq simple cl-generic<br>indonesian philippine cham georgian utf-8-la= ng misc-lang vietnamese<br>tibetan thai tai-viet lao korean japanese eucjp-= ms cp51932 hebrew greek<br>romanian slovak czech european ethiopic indian c= yrillic chinese<br>composite emoji-zwj charscript charprop case-table epa-h= ook<br>jka-cmpr-hook help abbrev obarray oclosure cl-preloaded button loadd= efs<br>faces cus-face macroexp files window text-properties overlay sha1 md= 5<br>base64 format env code-pages mule custom widget keymap<br>hashtable-pr= int-readable backquote threads dbusbind inotify<br>dynamic-setting system-f= ont-setting font-render-setting cairo<br>move-toolbar gtk x-toolkit xinput2= x multi-tty make-network-process<br>native-compile emacs)<br><br>Memory in= formation:<br>((conses 16 77301 10328)<br>=C2=A0(symbols 48 7112 0)<br>=C2= =A0(strings 32 19407 1642)<br>=C2=A0(string-bytes 1 593504)<br>=C2=A0(vecto= rs 16 15411)<br>=C2=A0(vector-slots 8 317149 17892)<br>=C2=A0(floats 8 28 5= 8)<br>=C2=A0(intervals 56 372 3)<br>=C2=A0(buffers 1000 13))<br><br><br></d= iv></div> --000000000000036ccb05f56091f5--
dalanicolai <dalanicolai@HIDDEN>
:bug-gnu-emacs@HIDDEN
.
Full text available.bug-gnu-emacs@HIDDEN
:bug#61735
; Package emacs
.
Full text available.
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997 nCipher Corporation Ltd,
1994-97 Ian Jackson.