From debbugs-submit-bounces@debbugs.gnu.org Thu Sep 02 10:58:24 2021 Received: (at submit) by debbugs.gnu.org; 2 Sep 2021 14:58:24 +0000 Received: from localhost ([127.0.0.1]:41732 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mLoAZ-0004za-Gp for submit@debbugs.gnu.org; Thu, 02 Sep 2021 10:58:24 -0400 Received: from lists.gnu.org ([209.51.188.17]:40748) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mLmrO-0002Ul-B2 for submit@debbugs.gnu.org; Thu, 02 Sep 2021 09:34:32 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:48490) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mLmrN-0002jv-7Z for bug-gnu-emacs@gnu.org; Thu, 02 Sep 2021 09:34:30 -0400 Received: from dsemy.com ([46.23.89.208]:9460) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mLmrK-0005g8-Pp for bug-gnu-emacs@gnu.org; Thu, 02 Sep 2021 09:34:28 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; s=dkim; bh=4kWMoX89Z6XcJ dZ68pMqRaaYbpCRybeY7pD7XBRkl6A=; h=date:subject:to:from; d=dsemy.com; b=N8cTR+ukaWGQlt3fEkrl5lbp56mTSqL7ipQN/DZKyYAre3/VyidPP7faXJWG/zsKLXMn g1ykhuaSKhoyHBFFWhvhAc5L6JSWzQk3UlTvVrwNESw177JLUfcSm7J7NPh09gYeRGUy48 FHQzcL0XzFV5YIVSbPt1eZegCW9kg0FgEoZrfYOmTlSePwpd9XfX3KBFRU5FXwfQxXb0ZJ Cm7ZpyzDZrUSz66/tpsjvKid+tLipLmYZDwmw0DgRhOkrq6BoRow7uSC2s+takmbD/l1OO 9TShoMuYygTBZTjD1/3EnxyYYpyO0se7rFmlKzAPmHfCBkB7VgMAMRdeoMIayQaQ== Received: from coldharbour ( [10.51.82.2]) by dsemy.com (OpenSMTPD) with ESMTPSA id 42ea1287 (TLSv1.3:AEAD-AES256-GCM-SHA384:256:NO) for ; Thu, 2 Sep 2021 16:34:21 +0300 (IDT) From: Daniel Semyonov To: bug-gnu-emacs@gnu.org Subject: 28.0.50; (while-no-input (redisplay) forms...) block behaves differently when window-system is pgtk Date: Thu, 02 Sep 2021 16:34:19 +0300 Message-ID: <87tuj3p0dg.fsf@dsemy.com> MIME-Version: 1.0 Content-Type: text/plain Received-SPF: pass client-ip=46.23.89.208; envelope-from=daniel@dsemy.com; helo=dsemy.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, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Thu, 02 Sep 2021 10:58:22 -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: -2.4 (--) This was tested on both a build configured with "--without-x --with-pgtk" and a build configured with "--with-x --with-x-toolkit=no" (my previous configuration before switching to the pgtk branch). Both were built from the pgtk branch. In the following steps I load a package I'm developing called Vcomplete[1] which uses the following function to update the '*Completions*' buffer when providing input to the minibuffer (the '*Completions*' buffer also opens automatically when starting minibuffer completion): (defun vcomplete--update-in-minibuffer (&rest _args) "Update the completion list when completing in a minibuffer." (while-no-input (redisplay) (unless (memq this-command vcomplete-no-update-commands) (minibuffer-completion-help)))) For more details look at the package, specifically the section called 'Visual completion mode' (it's not very complex and I don't want to make this report too long, I can provide more details if necessary). Also, the effect is much more apparent when 'completions-detailed' is set to t (presumably because it takes longer to display the completions). The following steps are performed on both builds: 1. emacs -Q 2. M-x load-file RET ~/src/vcomplete/vcomplete.el RET 3. M-x vcomplete-mode RET 4. C-h f bac (combination of letters which correspond to completions) On the X build, as soon as I start typing letters in step 4 the '*Completions*' buffer immediately updates; on the pgtk build there is a noticable (maybe half a second) delay during which I also can't see the letters I'm typing into the minibuffer, in addition to the first few letters being entered into the minibuffer twice (the amount of letters duplicated changes). The behavior on the X build lines up with the documentation strings of 'redisplay' and 'while-no-input', so I'm assuming this is a bug in pgtk redisplay code (although my only knowledge of redisplay comes from reading documentation, so I might be off). Hope I did everything right, this is the first bug report I'm submitting, thanks! Daniel [1] https://git.sr.ht/~dsemy/vcomplete In GNU Emacs 28.0.50 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.24.29, cairo version 1.16.0) of 2021-08-31 built on coldharbour Repository revision: aa437f6a59337d980795370d55edebb029ecf10b Repository branch: master Windowing system distributor 'System Description: void Configured using: 'configure --without-dbus --without-gsettings --without-x --with-pgtk --prefix=/opt/Emacs' Configured features: CAIRO FREETYPE GIF GLIB GMP GNUTLS HARFBUZZ JPEG JSON LCMS2 LIBSYSTEMD LIBXML2 MODULES NOTIFY INOTIFY PDUMPER PGTK PNG RSVG SECCOMP SOUND THREADS TIFF TOOLKIT_SCROLL_BARS XIM GTK3 ZLIB Important settings: value of $LC_COLLATE: C value of $LANG: en_US.UTF-8 locale-coding-system: utf-8-unix Major mode: Help Minor modes in effect: global-git-commit-mode: t magit-auto-revert-mode: t shell-dirtrack-mode: t emms-mode-line-mode: t emms-playing-time-display-mode: t emms-playing-time-mode: t pdf-occur-global-minor-mode: t show-paren-mode: t electric-pair-mode: t repeat-mode: t swsw-mode: t global-auto-revert-mode: t delete-selection-mode: t vcomplete-mode: t display-time-mode: t minibuffer-line-mode: t minibuffer-electric-default-mode: t tooltip-mode: t global-eldoc-mode: t electric-indent-mode: t mouse-wheel-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 column-number-mode: t line-number-mode: t transient-mark-mode: t Load-path shadows: /home/daniel/etc/emacs/elpa/transient-0.3.6/transient hides /opt/Emacs/share/emacs/28.0.50/lisp/transient Features: (shadow emacsbug two-column project dired-aux term ehelp shortdoc view misearch multi-isearch mule-util vc-mtn vc-hg vc-bzr vc-src vc-sccs vc-svn vc-cvs vc-rcs vc bug-reference face-remap magit-bookmark 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 which-func magit-diff git-commit rx log-edit pcvs-util add-log magit-core magit-autorevert magit-margin magit-transient magit-process with-editor shell pcomplete magit-mode transient magit-git magit-section magit-utils crm dash deuglify gnus-cus gnus-demon gnus-diary nndiary gnus-draft gnus-dup gnus-fun gnus-html url-queue gnus-kill gnus-logic gnus-mh mh-comp mh-scan mh-gnus mh-e mh-compat mh-buffers mh-loaddefs gnus-registry registry eieio-base gnus-salt gnus-uu yenc gnus-vm sendmail nnselect gnus-search eieio-opt speedbar ezimage dframe help-fns radix-tree cl-print debug backtrace noutline outline vc-git vc-dispatcher emms-playlist-mode emms-source-playlist emms-source-file locate url-http url-gw url-cache url-auth nnrss mm-url qp smerge-mode diff diff-mode easy-mmode mm-archive sort smiley gnus-cite mail-extr gnus-async gnus-bcklg gnus-ml disp-table gnus-topic nndraft nnmh nnfolder utf-7 epa-file cl-extra gnutls network-stream nsm gnus-agent gnus-srvr gnus-score score-mode nnvirtual gnus-msg gnus-art mm-uu mml2015 mm-view mml-smime smime dig nntp gnus-cache gnus-sum shr kinsoku svg dom gnus-group gnus-undo init-gnus gnus-start gnus-dbus gnus-cloud nnimap nnmail mail-source utf7 netrc nnoo parse-time iso8601 gnus-spec gnus-int gnus-range message rmc puny rfc822 mml mml-sec epa derived epg rfc6068 epg-config mm-decode mm-bodies mm-encode mailabbrev gmm-utils mailheader gnus-win gnus nnheader gnus-util rmail rmail-loaddefs mail-utils cus-start webjump time-date checkdoc lisp-mnt mail-parse rfc2231 rfc2047 rfc2045 mm-util ietf-drums mail-prsvr help-mode flymake-proc flymake warnings thingatpt cal-julian solar cal-dst cal-menu calendar cal-loaddefs flyspell ispell edmacro kmacro init-interfaces grep init-emms emms-mode-line emms-playing-time emms-player-mpv emms-player-simple emms-info-opusinfo emms-info emms-later-do emms emms-compat init-web elpher-eww-emulation init-volume init-pass auth-source-pass pinentry init-programs pdf-occur ibuf-ext ibuffer ibuffer-loaddefs tablist tablist-filter semantic/wisent/comp semantic/wisent semantic/wisent/wisent semantic/util-modes semantic/util semantic semantic/tag semantic/lex semantic/fw mode-local find-func cedet pdf-isearch let-alist pdf-misc imenu pdf-tools compile comint ansi-color ring pdf-view bookmark text-property-search jka-compr pdf-cache pdf-info tq pdf-util advice format-spec image-mode exif dired dired-loaddefs init-term init-eshell init-programming paren elec-pair init-ui repeat swsw autorevert filenotify delsel vcomplete battery dbus xml time minibuffer-line minibuf-eldef pcase init-base server finder-inf package browse-url url url-proxy url-privacy url-expand url-methods url-history url-cookie url-domsuf url-util mailcap 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 info cus-edit pp cus-load wid-edit cl-loaddefs cl-lib iso-transl tooltip eldoc electric uniquify ediff-hook vc-hooks lisp-float-type mwheel term/pgtk-win pgtk-win term/common-win 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 easymenu timer select scroll-bar mouse jit-lock font-lock syntax 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 button loaddefs faces cus-face macroexp files window text-properties overlay sha1 md5 base64 format env code-pages mule custom widget hashtable-print-readable backquote threads inotify dynamic-setting font-render-setting cairo move-toolbar gtk x-toolkit pgtk lcms2 multi-tty make-network-process emacs) Memory information: ((conses 16 634923 559779) (symbols 48 37441 3) (strings 32 180878 95332) (string-bytes 1 7865170) (vectors 16 76290) (vector-slots 8 1556469 156147) (floats 8 732 742) (intervals 56 8164 3393) (buffers 992 35)) From debbugs-submit-bounces@debbugs.gnu.org Fri Oct 01 11:02:25 2021 Received: (at 50337) by debbugs.gnu.org; 1 Oct 2021 15:02:25 +0000 Received: from localhost ([127.0.0.1]:57111 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mWK3M-0006o7-V8 for submit@debbugs.gnu.org; Fri, 01 Oct 2021 11:02:25 -0400 Received: from mail-qk1-f178.google.com ([209.85.222.178]:45994) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mWJf5-000650-Q2 for 50337@debbugs.gnu.org; Fri, 01 Oct 2021 10:37:20 -0400 Received: by mail-qk1-f178.google.com with SMTP id q125so9278183qkd.12 for <50337@debbugs.gnu.org>; Fri, 01 Oct 2021 07:37:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=mime-version:from:date:message-id:subject:to; bh=/EwU6tsv8gP5VF6gGjWvFjiIJMQuvY7R2vAbrjrCUxQ=; b=g8zoKJNEYzJg8xSFTqpSX4PDzOYf9GVZYxFUvE3dqfmnvKJlsEu7clugkbK41Axxxd zG2NJzVr/tALy8D5EbMJaNzVH2qGVPg58yAC1fA4WpJ0HWTSmHL0gjM5tohIxUbRaktW bdL68y5V+SFP2VQ2921Uat43hOWl84BH6JyQ5vhp5YR2YoKXIWhGo563BlFjwn6fIIIe 4JLLIn+ku4qgiSQEXcGY1XEEGZmjSNoYp2jImGn1ekV4sTc4uCWt2DkPs/eK+WeGdCtW OHMWjDdqePizdkjj4om9zf2Gd+1rhqkEq3+fB2GZo2cNJvuRJKMsGOdxHJdqkOcQLmo7 ATLw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=/EwU6tsv8gP5VF6gGjWvFjiIJMQuvY7R2vAbrjrCUxQ=; b=BCZvSIbWamZg58HJNZOf7UFDhYmfYyaLkwHyZmD+/yHJiV9r9BAbkkU6gqt+MhJ4zc ugK2h9TWyKHVRpB93u3NqroyLcxI3nYNn6y+qZv1/npuststuBFyAzRuzmp7JH/VDMXp uboNTY1wCWs6xNvXSeqBUcxgzyM/kWwGwCsK0X25uj705ATwMozE+J9X/nlsTjdSjTci ajvwtW7WpqNkxVklkbkj0v1LcVIIBzZokuhzo7WXpbcODE5NSmeAVKNqMRojwmACB3u5 Fe9QegXVS9NKSyHxUzKHr0o6H4cZ1Br9wSM8IZXn5wmYLOB1gt4ECGS3AEk9KOTla1AT /J9w== X-Gm-Message-State: AOAM532Wm5FdSorVx0SeKpNNynzbngR/W1Z4XDHEbtjOVE5k75M1Zj8R mtbR/Ar/TswhfAjf5lyUxzep3qZY32xcIY8iTRq8AXRf X-Google-Smtp-Source: ABdhPJyzZ4Ccz+yooRrK3R8jVxcWxb6AJqDmdnO8zpeD3k9mR9XDqRThxlxwNVajuFN2i9qbeZ169akQcqKZeeqpPbo= X-Received: by 2002:a37:66c7:: with SMTP id a190mr9678877qkc.427.1633099033992; Fri, 01 Oct 2021 07:37:13 -0700 (PDT) MIME-Version: 1.0 From: Fejfighter Date: Sat, 2 Oct 2021 00:37:03 +1000 Message-ID: Subject: To: 50337@debbugs.gnu.org Content-Type: multipart/mixed; boundary="000000000000ce2cc505cd4b7fe7" X-Spam-Score: 2.0 (++) 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: Having looked at this, the variable is respected, it's largely the same code as the x version. if the cursor colour and the foreground face are different it will show up The actual error is that the colour selected to draw was the foreground face rather than the background used. this patch should correct it Content analysis details: (2.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_PASS SPF: sender matches SPF record 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (fejfighter[at]gmail.com) 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 0.0 HTML_MESSAGE BODY: HTML included in message -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at https://www.dnswl.org/, no trust [209.85.222.178 listed in list.dnswl.org] -0.0 RCVD_IN_MSPIKE_H2 RBL: Average reputation (+2) [209.85.222.178 listed in wl.mailspike.net] 2.0 BLANK_SUBJECT Subject is present but empty X-Debbugs-Envelope-To: 50337 X-Mailman-Approved-At: Fri, 01 Oct 2021 11:02:23 -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: 1.0 (+) --000000000000ce2cc505cd4b7fe7 Content-Type: multipart/alternative; boundary="000000000000ce2cc305cd4b7fe5" --000000000000ce2cc305cd4b7fe5 Content-Type: text/plain; charset="UTF-8" Having looked at this, the variable is respected, it's largely the same code as the x version. if the cursor colour and the foreground face are different it will show up The actual error is that the colour selected to draw was the foreground face rather than the background used. this patch should correct it --000000000000ce2cc305cd4b7fe5 Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable
Having looked at this, the variable is respected, it&= #39;s largely the same code as the x version.
if the cursor colou= r and the foreground face are different it will show up

The actual error is that the colour selected to draw was the foregrou= nd face rather than the background used. this patch should correct it
--000000000000ce2cc305cd4b7fe5-- --000000000000ce2cc505cd4b7fe7 Content-Type: text/x-patch; charset="US-ASCII"; name="0001-Set-correct-face-color-for-stretched-glyphs.patch" Content-Disposition: attachment; filename="0001-Set-correct-face-color-for-stretched-glyphs.patch" Content-Transfer-Encoding: base64 Content-ID: X-Attachment-Id: f_ku8gtrbi0 RnJvbSA1ZDlkZjczNDVkN2IzOTYwYzAzMDk5ZDFmNjk4NDM3MDMyZTYzYTY4IE1vbiBTZXAgMTcg MDA6MDA6MDAgMjAwMQpGcm9tOiBKZWZmIFdhbHNoIDxmZWpmaWdodGVyQGdtYWlsLmNvbT4KRGF0 ZTogU2F0LCAyIE9jdCAyMDIxIDAwOjI4OjE5ICsxMDAwClN1YmplY3Q6IFtQQVRDSF0gU2V0IGNv cnJlY3QgZmFjZSBjb2xvciBmb3Igc3RyZXRjaGVkIGdseXBocwoKKiBzcmMvcGd0a3Rlcm0uYyAo eF9kcmF3X3N0cmV0Y2hfZ2x5cGhfc3RyaW5nKTogcy9mb3JlZ3JvdW5kL2JhY2tncm91bmQKLS0t CiBzcmMvcGd0a3Rlcm0uYyB8IDIgKy0KIDEgZmlsZSBjaGFuZ2VkLCAxIGluc2VydGlvbigrKSwg MSBkZWxldGlvbigtKQoKZGlmZiAtLWdpdCBhL3NyYy9wZ3RrdGVybS5jIGIvc3JjL3BndGt0ZXJt LmMKaW5kZXggNTU5ZmM4YjVjNi4uZTQ4YzFjZTdhZCAxMDA2NDQKLS0tIGEvc3JjL3BndGt0ZXJt LmMKKysrIGIvc3JjL3BndGt0ZXJtLmMKQEAgLTIzOTEsNyArMjM5MSw3IEBAIHhfZHJhd19zdHJl dGNoX2dseXBoX3N0cmluZyAoc3RydWN0IGdseXBoX3N0cmluZyAqcykKIAkgICAgICBjb2xvciA9 IHMtPnhnY3YuZm9yZWdyb3VuZDsKIAkgICAgfQogCSAgZWxzZQotCSAgICBjb2xvciA9IHMtPmZh Y2UtPmZvcmVncm91bmQ7CisJICAgIGNvbG9yID0gcy0+ZmFjZS0+YmFja2dyb3VuZDsKIAogCSAg Y2Fpcm9fdCAqY3IgPSBwZ3RrX2JlZ2luX2NyX2NsaXAgKHMtPmYpOwogCi0tIAoyLjMxLjEKCg== --000000000000ce2cc505cd4b7fe7-- From debbugs-submit-bounces@debbugs.gnu.org Fri Oct 01 11:02:25 2021 Received: (at 50337) by debbugs.gnu.org; 1 Oct 2021 15:02:25 +0000 Received: from localhost ([127.0.0.1]:57113 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mWK3N-0006o9-6p for submit@debbugs.gnu.org; Fri, 01 Oct 2021 11:02:25 -0400 Received: from mail-qt1-f170.google.com ([209.85.160.170]:35657) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mWJw2-0006aH-Tl for 50337@debbugs.gnu.org; Fri, 01 Oct 2021 10:54:54 -0400 Received: by mail-qt1-f170.google.com with SMTP id c20so9186552qtb.2 for <50337@debbugs.gnu.org>; Fri, 01 Oct 2021 07:54:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=mime-version:from:date:message-id:subject:to; bh=1QP6zUayixZW8KOpB15NuUVw4ghDvfV3ZREorg2QxYc=; b=YmG8hC5PgQpczMGJ7b7Kpws+FjiyWnJcbpCX9cyrAitfq9SFElcv+5J8/umSKUmZo9 BtmAmvGhE8daHHyKDxCMUXV+KdNFiFJw9oNt+uqi81TdIif0cfOU5taGVy236AxteGoW RJRjrJTOtIpYLGlmWEZ2Slha6elVBwIk+4iztFJCmFkSPztz/ct0Q82PcYsBNd9132FV R5AcYzO79R9fcnJvHqGl+lqYdP2uSXAX3GL4Vjkwg0Wm2hbsCY9mj9nKXo1uOLc1wNBV jaEWXI65B64Lm7Av2dtAj0VCXzCWHcCL+Y2urtxX72tdHs8Pz0ArZi7AUQgZrT7P9sSK RQrg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=1QP6zUayixZW8KOpB15NuUVw4ghDvfV3ZREorg2QxYc=; b=62plVoDEJHNf8ju0+ktcLZrNFHpYuOqhDVkiAzq0brgOqzq/KVmnhXAj98PYx5LJHb GE1V3DcIWnkd2FJRZ+pETm4WALp9wI80rhKsf3cd08UHJ7SlPHnkDD5CgZGaSHNvbFPq b2EGAI9gP48gA6KBskm+3lobOUj5TEwb5+wd7s+p3cfaWOwBtesU/VsAk2t69r6KSehQ Y1YNRA6XpPO1AdbpXEuLZrP+3qPDF5pGU3s9ijLEul9ds+1AnFAoJ+xXG3l1NeY2GW5t LgXr3MRqzGO4rkORiUclVipI9wJ2tkoN7MXLnKCPJq4G5zc2BRw/ysy7kYnlp884Pg2e LQ0Q== X-Gm-Message-State: AOAM530WCGzcBwciSTRWdiFvJK8XakOTaUdXeLmu7EQ9XOERe9drZ1oH Fhy+l9ttFFkbJ/KxxP9kVZm/QWrybh72dAmID08uvBkQ X-Google-Smtp-Source: ABdhPJzHcUE/cEFfz72oFTPGfEBj55nxq0oBbnZw6tmbPR8GsPqVvz60Cs3CHJ2UYJn8ltQeXYoPV1SoVOlDfOFF+bQ= X-Received: by 2002:ac8:7059:: with SMTP id y25mr9783831qtm.404.1633100085115; Fri, 01 Oct 2021 07:54:45 -0700 (PDT) MIME-Version: 1.0 From: Fejfighter Date: Sat, 2 Oct 2021 00:54:34 +1000 Message-ID: Subject: To: 50337@debbugs.gnu.org Content-Type: multipart/mixed; boundary="00000000000075011305cd4bbe33" X-Spam-Score: 2.0 (++) 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: This appears to be left over from earlier days of the port, no longer needed. made described change, bootstrapped and loaded new pgtk emacs, no concerns patch attached Content analysis details: (2.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_PASS SPF: sender matches SPF record 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (fejfighter[at]gmail.com) 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 0.0 HTML_MESSAGE BODY: HTML included in message -0.0 RCVD_IN_MSPIKE_H3 RBL: Good reputation (+3) [209.85.160.170 listed in wl.mailspike.net] -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at https://www.dnswl.org/, no trust [209.85.160.170 listed in list.dnswl.org] 2.0 BLANK_SUBJECT Subject is present but empty -0.0 RCVD_IN_MSPIKE_WL Mailspike good senders X-Debbugs-Envelope-To: 50337 X-Mailman-Approved-At: Fri, 01 Oct 2021 11:02:23 -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: 1.0 (+) --00000000000075011305cd4bbe33 Content-Type: multipart/alternative; boundary="00000000000075011005cd4bbe31" --00000000000075011005cd4bbe31 Content-Type: text/plain; charset="UTF-8" This appears to be left over from earlier days of the port, no longer needed. made described change, bootstrapped and loaded new pgtk emacs, no concerns patch attached --00000000000075011005cd4bbe31 Content-Type: text/html; charset="UTF-8"
This appears to be left over from earlier days of the port, no longer needed.

made described change, bootstrapped and loaded new pgtk emacs, no concerns

patch attached
--00000000000075011005cd4bbe31-- --00000000000075011305cd4bbe33 Content-Type: text/x-patch; charset="US-ASCII"; name="0001-configure.ac-PGTK_LIBS-remove-dl-dependency.patch" Content-Disposition: attachment; filename="0001-configure.ac-PGTK_LIBS-remove-dl-dependency.patch" Content-Transfer-Encoding: base64 Content-ID: X-Attachment-Id: f_ku8hm11o0 RnJvbSAyMWIyYTBkMjFkZGE3NTdkODA2NDQwY2NiNjBiOTU0MDRjNmJiYTU5IE1vbiBTZXAgMTcg MDA6MDA6MDAgMjAwMQpGcm9tOiBKZWZmIFdhbHNoIDxmZWpmaWdodGVyQGdtYWlsLmNvbT4KRGF0 ZTogU2F0LCAyIE9jdCAyMDIxIDAwOjUwOjA4ICsxMDAwClN1YmplY3Q6IFtQQVRDSF0gY29uZmln dXJlLmFjIChQR1RLX0xJQlMpOiByZW1vdmUgZGwgZGVwZW5kZW5jeQoKLS0tCiBjb25maWd1cmUu YWMgfCAyICstCiAxIGZpbGUgY2hhbmdlZCwgMSBpbnNlcnRpb24oKyksIDEgZGVsZXRpb24oLSkK CmRpZmYgLS1naXQgYS9jb25maWd1cmUuYWMgYi9jb25maWd1cmUuYWMKaW5kZXggNmViYjk2Njcw MC4uYzI3Nzg5OWIyZiAxMDA2NDQKLS0tIGEvY29uZmlndXJlLmFjCisrKyBiL2NvbmZpZ3VyZS5h YwpAQCAtMjgyNyw3ICsyODI3LDcgQEAgQUNfREVGVU4KIFBHVEtfTElCUz0KIGlmIHRlc3QgIiR3 aW5kb3dfc3lzdGVtIiA9ICJwZ3RrIjsgdGhlbgogICBQR1RLX09CSj0icGd0a2Zucy5vIHBndGt0 ZXJtLm8gcGd0a3NlbGVjdC5vIHBndGttZW51Lm8gcGd0a2ltLm8geHNldHRpbmdzLm8iCi0gIFBH VEtfTElCUz0iJEdUS19MSUJTIC1sZGwiCisgIFBHVEtfTElCUz0iJEdUS19MSUJTIgogICBIQVZF X1BHVEs9eWVzCiAgIEFDX0RFRklORShbSEFWRV9QR1RLXSwgMSwgW0RlZmluZSB0byAxIGlmIHlv dSBoYXZlIHB1cmUgR3RrKy0zLl0pCiBmaQotLSAKMi4zMS4xCgo= --00000000000075011305cd4bbe33-- From debbugs-submit-bounces@debbugs.gnu.org Mon Dec 06 13:12:41 2021 Received: (at 50337) by debbugs.gnu.org; 6 Dec 2021 18:12:42 +0000 Received: from localhost ([127.0.0.1]:35371 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1muITh-0002NC-Og for submit@debbugs.gnu.org; Mon, 06 Dec 2021 13:12:41 -0500 Received: from dsemy.com ([46.23.89.208]:35805) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1muITg-0002Mz-Sy for 50337@debbugs.gnu.org; Mon, 06 Dec 2021 13:12:41 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; s=dkim; bh=WXm+vkXEVXKis PXEjNcxuppAyBiU5m6KFQygcw59aXg=; h=in-reply-to:date:references: subject:to:from; d=dsemy.com; b=jslZYdDI14Pv1qEifbeffifizXSwyBfBnNd6UO Pt26WRxmmVGoTF1YSA0SaK/5kvNipXboSW40dzBZVUoBBUQQa1aXUFv6KvJ3PuGNW1tuxz fQTAvdOz0vZqcc3T8jjs3fHqFlNfOlvk/L6cGrIiqm+AtF1fuQVNoqUKVg1A1pPTJwen1P vp2VxyQQ29BTH7JHytByNhTgpKQivnQEvk86Vg9GIhkir6dEdixOHfD3yv483e7q+8D/15 SCSlf3QREm5iJIYPT4r22oWeikngBV/dZ8x6zi22CPaKxHDrnhMk0HiqjVes6RUWPFPzAb ghJLldzu0A+Rd7EFx4lAjwPw== Received: from coldharbour (bzq-79-176-56-149.red.bezeqint.net [79.176.56.149]) by dsemy.com (OpenSMTPD) with ESMTPSA id 91760197 (TLSv1.3:AEAD-AES256-GCM-SHA384:256:NO) for <50337@debbugs.gnu.org>; Mon, 6 Dec 2021 19:12:34 +0100 (CET) From: Daniel Semyonov To: 50337@debbugs.gnu.org Subject: Re: bug#50337: 28.0.50; (while-no-input (redisplay) forms...) block behaves differently when window-system is pgtk References: <87tuj3p0dg.fsf@dsemy.com> Date: Mon, 06 Dec 2021 20:12:33 +0200 In-Reply-To: <87tuj3p0dg.fsf@dsemy.com> (Daniel Semyonov's message of "Thu, 02 Sep 2021 16:34:19 +0300") Message-ID: <87tufleh66.fsf@dsemy.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 50337 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 (-) This has been fixed at some point (not sure how to close this bug, or if I'm even able to do so as the reporter). Thanks, Daniel From debbugs-submit-bounces@debbugs.gnu.org Mon Dec 06 13:31:48 2021 Received: (at 50337-done) by debbugs.gnu.org; 6 Dec 2021 18:31:48 +0000 Received: from localhost ([127.0.0.1]:35397 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1muImC-0002u3-IR for submit@debbugs.gnu.org; Mon, 06 Dec 2021 13:31:48 -0500 Received: from dsemy.com ([46.23.89.208]:42572) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1muImB-0002tm-HR for 50337-done@debbugs.gnu.org; Mon, 06 Dec 2021 13:31:48 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; s=dkim; bh=6RP+2A4F26m9C V5V6yzIE6CN2E+lPmPnzlqx79r1gmg=; h=date:subject:to:from; d=dsemy.com; b=I+KnIZ8GHEGsX09q09i9bqz9wTrji2Y5CdahDGNR5i9+XBphJm8iGwuribaWf6Bms8Wm RvvxtIMbPjvrJoINOCgHJxZOHOFHmecrzB2mPffyGy5JKegcErQxhga1OTaHOOP2Cq7Rpi 4T2+XIIhxS+QsLgQko38ePjC+glyvzatbW82Gpq3aHKlmodo6Vf4JXLwuz/34TN9SfP5Tb yIXk3d67H5R1CiYYBcdb4RgMxZiDZOnvSBr7XH4UsFUYCIsJ9Zu92dKD+LniawULxcwH6f uGLEuZPxeMlOZiBFMMGvf7QkuPU9xeVGJrzwORxp+301IDuxZvGiHBJbpN+TIUaw== Received: from coldharbour (bzq-79-176-56-149.red.bezeqint.net [79.176.56.149]) by dsemy.com (OpenSMTPD) with ESMTPSA id 4e9cee3c (TLSv1.3:AEAD-AES256-GCM-SHA384:256:NO) for <50337-done@debbugs.gnu.org>; Mon, 6 Dec 2021 19:31:40 +0100 (CET) From: Daniel Semyonov To: 50337-done@debbugs.gnu.org Subject: bug#50337: 28.0.50; (while-no-input (redisplay) forms...) block behaves differently when window-system is pgtk Date: Mon, 06 Dec 2021 20:31:39 +0200 Message-ID: <87mtldegac.fsf@dsemy.com> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 50337-done 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 (-) My testing (on two different computers which were affected by this issue) indicates that this bug has been fixed. From debbugs-submit-bounces@debbugs.gnu.org Mon Dec 06 21:20:28 2021 Received: (at 50337-done) by debbugs.gnu.org; 7 Dec 2021 02:20:29 +0000 Received: from localhost ([127.0.0.1]:35783 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1muQ5k-0006fh-OR for submit@debbugs.gnu.org; Mon, 06 Dec 2021 21:20:28 -0500 Received: from sonic314-22.consmr.mail.ne1.yahoo.com ([66.163.189.148]:39185) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1muQ5i-0006fT-OI for 50337-done@debbugs.gnu.org; Mon, 06 Dec 2021 21:20:27 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s2048; t=1638843620; bh=jRV3/qTkpQnQkC+xN4zeQf8rYl62TfXcX1sltSUN70M=; h=From:To:Cc:Subject:References:Date:In-Reply-To:From:Subject:Reply-To; b=qcBSUzVsSHNJqI7trvCnUqPcUCIsoTq61K5HOyvL3COljG9UB5c+8Qm+Is9+V5KTXKXX3oHEmCCY0F49EPhdtZwix0UmS6I31DPtYIi3T4oSTcQ/bRlK0qxsJfu0qcRF6fUUg4qpIkRjPVU5h+FmR6VDo9qED6pXTmikMkBxh0zYSUUyCKT8RJHOnSij2tbi8vqNadqBjO4/wLsPAb3wv8Vuk+H7ZCdyc7v4Gmqc7GMuQa8ivan+O70/w2oDCEhioh276ED5XQEC8XXE07i/ioTEY3b7vurBCjEcBj/rytYLnI5iOAWIdRkP+cpJNpH3YV05OpKh0ccQeDOnHVMGeQ== X-SONIC-DKIM-SIGN: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s2048; t=1638843620; bh=GcvawNuBB/wUmokeIEjNLJDFGe96IZyCb+DU3gVP6HG=; h=X-Sonic-MF:From:To:Subject:Date:From:Subject; b=tLHdU9/uwPdxStKg27hu8I4JegG7HExsxtu3qnINVfjwipyRdWWMTk/l/+oAH6eJQJZ8KR+K3ULYbrirewepLnKx98J83UiOiDDY5WeXlXCa4ddxboZaxXzCd1ST9OYD0xOicYvMUWZwZwaOrc+CckrRAAy80I59/O66+bw8JAxLDbC8Aop7shRiqhMpr6ZpJLalebJvetsUOxXmXLbs0XQErvTSnjVU2MPEAu3I+dgeWVbSrefmgYphurSNqjrkC+xva+fgq4RNF47XSUxl6o+N3pwNU3t02Vlu62XwhvrhonxUtvSCd697D77obep6CWb7wm2N3Roc+IcYGkfSJA== X-YMail-OSG: xCHJwHAVM1nHV6DVgDNDS7N3dsluXMWt_e3gWnmhBEMmasTp40q2lQvGUnqpiD5 abEK_w2uGYzatgLGGcVDO04iB4AqmjSr1OpeJALV.HlynhoMcdIE3b9mlE8aTZvAz18thaVZf.Pm wk2XUXMPfRQMOQghwrRLB7ov_g8wNrf8m39Q9vkiTMt7TqgHAtXibdL_Vinv6ZBiBafEG_crU0e7 Uo6dBZxbHUytibfSRuCbHWVTNFGLy06QCZC9b6oKAVcs2VFzzaDsgNsPnOpZVJVLKD3.lMmH4RYw XQo6jSjJz7.PxprN1asinBm9YdV0aFMCRB8HuJaLgiULjaiDC_GE9K_La0GyaSkQ3M6xzwqA3pBK aMqw.NgxnSMeC_mlMdQsNfMzePrbENLFwRimXmBi4bSkCMW8QvB2b4NGYQEnoSTOgKiYt_qqNDEH .ZqaPyaOhnfCGWWH2B4MR2zyPN6KzsqlQ2c1XaVsWltKi1yF8.3touR9SJyIgV8y00Wrim72P0Up JlQN0J3Dh1EzfXyKXxWGhOFy7tDQO1MtWr.y3LZgJk4bHqMedobZzH6vFqMYVo_4FFuw2P4SxTh0 icMbHGljql7f_Okp8L1Umw.9A9SP2vfZvfAGRJGs59dyUmizndyvAyTaLl_42Dvg.MOtcQ_TBl0n Y257g6r6RAOvjmytIIfnmPtgMUuAW_CgYNUEC50t6dgUwKKCxPzFCAE10eHnFr_aWSqRcvtZSe1A 8MAGKAYy8zddXFwLOUMaDYbXf3fKwhtXDh6yDYfFHjS7nH.XJYt1KCgy9GrZy6FbNO5w3mkUb6pW LeVeVbc2EXi4Po30LTmW1zXj4Q93unWDKombBhxD7P.LHaJwc_Zup00bbClqnb.AOoupIrsGzqmB qz0IemN3b_ycrnc2hxExxHCOcq1IK_lVO4MmfpbW2R5j5PxZQGQhX4jaXG.AvadmQX_aN_.3Jr2s DX.ApqRDU9mM8WPFxx5.EKGhMmrthN9OvXiDUwAqlogQefFq0XJL_xySi_IGVeRfnnI.Ba65PyOq N7ypxsCNw4.xxeseDbEU3EmaWNClfTG_F8kSFwRsmbE.o6O1Du.rqEar5QLfjojtfPkhbw7xOr2b eUrFLN62qsphWTLidSWFKknHwMbZ6VOHaCwzkman_yybsP68JgV6wLV9kwcqU1Gf1MvhfW0vuwrI AceIr64kdssf.cHQqNhJOGeytqlID.lbiKsFbaaivKdMYkJrh1aVOjdzb4wtK8NSVa8cf1sThArF YAShNe16rdMUb1NRqag3CskzE8QF.gSpHuMUDt9Khm82Cjz4TZKWx1CDlFq1XeW8zSNGiBvuctXc Kh2w2ZGtlFpWbWteJ8jdJM517W4lwwFhNv1CT0hr5shFWaCy4avJYVatJK.GvmOtdxHOZvz7M3a8 Wo8fBbYIvXBJhsScfs4y0Kh2Il04AKpBuZUFOKiRrdAVJcVmKlSxC4Hu3T.wSFwR6kIC2IvOtezk Rtms.eQdjkxyWVBUpkQaLoL7q.OunbKT.iWj0X3PEMPqgGfGlLlDPPZI0KNKF7gxjfnfjPS7eHkb wDUoKrcaGGxZtjWZ6zWSAgnVR2jdwXoIX9h0MS9SqsJMnLxcpsFMfa.AZv7AcjKQAzV_pPEvuDoz aq0Ft4aNdbR__.aC3IMGHJIrAVv4Q2srxHZ9mEiUiTI.NoKYHv1H4uI3MnSS7fQGw8wDTD1iVhNk zHCP4rZn.RVxGluOOxTmRoUHy7zXmbtY6z6fe46bdUHKZgRAztslhA8bCLXeqZ.ZthoGYfFKgfWm 1UypgolTQ_xw3X9c5Nyf7xtuRhJ25AY4OBrspeSxgreefWtjoOQzzABZThh.XQvhLEAKDEoOIbCM sIDPpuKXEE160_USKpiHZF3qZ4SKji1DNcJihxt4z8tqa1NVpuOXByaysqo8wSB3lOZF2iDx_5N6 34pHqV2oE_Vzcx.FcYqC2vXrTNr0kGl3y9SDGzRpJ5p5w7.hhKAWLXP.sTZmaT3p7ITR_BQr5frx ndQkYjwofe_2og4LzAjrwdAX7VKB7MD3RdeTWw.bgA4pFyEfY_WIRraqSf4b6sZ1C6V3mAXLbOAv 5NsBP2SajuWXNdiVcJm7qr1zjqTWrU_2Zqd1Rr7V37tnrXmrXtHuNsDfLTM0Me5WIWk41aOmDaFa lJJma4JZD86b4eceQJgvU2Ui1IwXZC5bdm1PMDEIN_QlL.TYf9bimE2IxPJ6PF1n0Xnns2D3Ouvm j4ucb8VNHPQefaTxtkMvgPXQ3OeYCeTt9M2_T34MIRom2Io3X3PC300WQg5YH X-Sonic-MF: Received: from sonic.gate.mail.ne1.yahoo.com by sonic314.consmr.mail.ne1.yahoo.com with HTTP; Tue, 7 Dec 2021 02:20:20 +0000 Received: by kubenode509.mail-prod1.omega.sg3.yahoo.com (VZM Hermes SMTP Server) with ESMTPA ID a2f4642647eed3ee795a51fdbe27e1b7; Tue, 07 Dec 2021 02:20:14 +0000 (UTC) From: Po Lu To: Daniel Semyonov Subject: Re: bug#50337: 28.0.50; (while-no-input (redisplay) forms...) block behaves differently when window-system is pgtk References: <87tuj3p0dg.fsf@dsemy.com> <87tufleh66.fsf@dsemy.com> Date: Tue, 07 Dec 2021 10:20:10 +0800 In-Reply-To: <87tufleh66.fsf@dsemy.com> (Daniel Semyonov's message of "Mon, 06 Dec 2021 20:12:33 +0200") Message-ID: <87h7bljgv9.fsf@yahoo.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.60 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Mailer: WebService/1.1.19415 mail.backend.jedi.jws.acl:role.jedi.acl.token.atz.jws.hermes.yahoo Content-Length: 305 X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 50337-done Cc: 50337-done@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: -1.0 (-) Daniel Semyonov writes: > This has been fixed at some point (not sure how to close this bug, or if > I'm even able to do so as the reporter). > > Thanks, > Daniel Great! I think I fixed that a few days ago making interrupt-based input work on the PGTK port, so I'm closing this bug. From unknown Mon Aug 18 02:36:44 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, 04 Jan 2022 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