From unknown Fri Jun 20 05:37:11 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#55362 <55362@debbugs.gnu.org> To: bug#55362 <55362@debbugs.gnu.org> Subject: Status: 29.0.50; Super key no longer works on Wayland Reply-To: bug#55362 <55362@debbugs.gnu.org> Date: Fri, 20 Jun 2025 12:37:11 +0000 retitle 55362 29.0.50; Super key no longer works on Wayland reassign 55362 emacs submitter 55362 Thomas Jost severity 55362 normal tag 55362 moreinfo thanks From debbugs-submit-bounces@debbugs.gnu.org Wed May 11 06:00:40 2022 Received: (at submit) by debbugs.gnu.org; 11 May 2022 10:00:40 +0000 Received: from localhost ([127.0.0.1]:36119 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1noj8t-0003uq-UG for submit@debbugs.gnu.org; Wed, 11 May 2022 06:00:40 -0400 Received: from lists.gnu.org ([209.51.188.17]:50074) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1noj8r-0003uh-3W for submit@debbugs.gnu.org; Wed, 11 May 2022 06:00:26 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:49486) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1noj8q-0000yX-Pc for bug-gnu-emacs@gnu.org; Wed, 11 May 2022 06:00:24 -0400 Received: from out0.migadu.com ([94.23.1.103]:21857) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1noj8l-0005Y9-Mr for bug-gnu-emacs@gnu.org; Wed, 11 May 2022 06:00:24 -0400 X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=schnouki.net; s=key1; t=1652263213; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type; bh=trpHuMO6dx7YA8HCIgeHCfkNfMic+m+LKq11wEOrZGI=; b=nD7E01SyS+GBtObahyh0odi2iT4lorA0j3bW3KNoUpz2yjhkXY7M6M+ecXLxlCBsKfWjcr gri+DVVWOPWtHIf430igN3DwLUs2bpm5YPY70/HUoSjxDjlF6FMiDV+2pRYOFp1WC8pLfd EXeuNb+jMVMDD/aubYhg9vt01cZY9sK44wDt2WxNV11jBO22sN4nUYekRf0Tct/uAsSk5W J83EXQQ2oZ+9VM2ilnd8f+JpL666ChgbsvSr6dBCDIqv5GQI28uKA8nDGNOcN9p1//rdGx JohwbKC8O+XRcRoxcS895L9FN7Jn7VO21uAKLD5ReYzGRy3HK9/1ZFgpghMaOQ== From: Thomas Jost To: bug-gnu-emacs@gnu.org Subject: 29.0.50; Super key no longer works on Wayland X-Clacks-Overhead: GNU Terry Pratchett Date: Wed, 11 May 2022 12:00:12 +0200 Message-ID: <871qx08k43.fsf@schnouki.net> MIME-Version: 1.0 Content-Type: text/plain X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: schnouki.net Received-SPF: pass client-ip=94.23.1.103; envelope-from=schnouki@schnouki.net; helo=out0.migadu.com X-Spam_score_int: -27 X-Spam_score: -2.8 X-Spam_bar: -- X-Spam_report: (-2.8 / 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, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit 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 (--) Hey folks, When using recent builds of Emacs with PGTK on Wayland (Sway), the Super key is no longer detected. I use it in a lot of shortcuts, but now typing e.g. `s-/' just inputs /. If I run an older build with the exact same config (or even with `emacs -Q'), I don't experience that issue, and shortcuts using Super still work. So, this seems to be an Emacs bug. Using git bisect, I was able to find that this started in commit 1c1ae6ba802cc5813fa6f8f90f21050aae6bb459. Further investigation revealed that when typing a shortcut with Super, the GDK_SUPER_MASK bit isn't set, but GDK_MOD4_MASK is. I'm not sure what the best option is: restoring the former x_find_modifier_meanings() function, or hard-coding that Mod4 is the same as Super (like Mod1 and Meta). For now, I started using this patch: https://paste.sr.ht/~schnouki/e997d536bd3305aa34bb2c72bfe68dcdde18ec80 If it sounds like a good solution, feel free to use it. Happy to help and provide any further information needed! Cheers, Thomas In GNU Emacs 29.0.50 (build 18, x86_64-pc-linux-gnu, GTK+ Version 3.24.33, cairo version 1.17.6) of 2022-05-11 built on loki Repository revision: 1c1ae6ba802cc5813fa6f8f90f21050aae6bb459 Repository branch: HEAD System Description: Arch Linux Configured using: 'configure --with-pgtk' Configured features: ACL CAIRO DBUS FREETYPE GIF GLIB GMP GNUTLS GPM GSETTINGS HARFBUZZ JPEG JSON LCMS2 LIBOTF LIBSYSTEMD LIBXML2 MODULES NOTIFY INOTIFY PDUMPER PGTK PNG RSVG SECCOMP SOUND SQLITE3 THREADS TIFF TOOLKIT_SCROLL_BARS WEBP XIM GTK3 ZLIB Important settings: value of $LANG: fr_FR.UTF-8 locale-coding-system: utf-8-unix Major mode: C/*l Minor modes in effect: bug-reference-prog-mode: t company-mode: t counsel-mode: t ivy-mode: t global-emojify-mode: t emojify-mode: t lsp-treemacs-sync-mode: t yas-global-mode: t yas-minor-mode: t treemacs-filewatch-mode: t treemacs-follow-mode: t treemacs-git-mode: t treemacs-fringe-indicator-mode: t projectile-mode: t global-git-commit-mode: t magit-auto-revert-mode: t windmove-mode: t flycheck-pos-tip-mode: t global-flycheck-mode: t flycheck-mode: t shell-dirtrack-mode: t editorconfig-mode: t volatile-highlights-mode: t global-undo-tree-mode: t undo-tree-mode: t viking-global-mode: t viking-mode: t global-auto-revert-mode: t which-key-mode: t global-so-long-mode: t auto-read-only-mode: t which-function-mode: t tree-sitter-hl-mode: t global-tree-sitter-mode: t tree-sitter-mode: t override-global-mode: t global-subword-mode: t subword-mode: t desktop-save-mode: t save-place-mode: t delete-selection-mode: t global-hl-line-mode: t display-time-mode: t tooltip-mode: t global-eldoc-mode: t show-paren-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 column-number-mode: 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 abbrev-mode: t Load-path shadows: /home/schnouki/.quicklisp/dists/quicklisp/software/slime-v2.26.1/slime hides /home/schnouki/.emacs.d/elpa/slime-20220302.1215/slime /home/schnouki/.quicklisp/dists/quicklisp/software/slime-v2.26.1/slime-autoloads hides /home/schnouki/.emacs.d/elpa/slime-20220302.1215/slime-autoloads /home/schnouki/.quicklisp/dists/quicklisp/software/slime-v2.26.1/slime-tests hides /home/schnouki/.emacs.d/elpa/slime-20220302.1215/slime-tests /home/schnouki/.emacs.d/elpa/transient-20220508.1914/transient hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/transient /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-shell hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-shell /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-sass hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-sass /home/schnouki/.emacs.d/elpa/org-9.5.3/org-attach-git hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org-attach-git /home/schnouki/.emacs.d/elpa/org-9.5.3/org-faces hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org-faces /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-C hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-C /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-scheme hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-scheme /home/schnouki/.emacs.d/elpa/org-9.5.3/ol-bbdb hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ol-bbdb /home/schnouki/.emacs.d/elpa/org-9.5.3/org-timer hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org-timer /home/schnouki/.emacs.d/elpa/org-9.5.3/org-lint hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org-lint /home/schnouki/.emacs.d/elpa/org-9.5.3/org-feed hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org-feed /home/schnouki/.emacs.d/elpa/org-9.5.3/oc-csl hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/oc-csl /home/schnouki/.emacs.d/elpa/org-9.5.3/org-num hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org-num /home/schnouki/.emacs.d/elpa/org-9.5.3/org-habit hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org-habit /home/schnouki/.emacs.d/elpa/org-9.5.3/ol-rmail hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ol-rmail /home/schnouki/.emacs.d/elpa/org-9.5.3/ox-odt hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ox-odt /home/schnouki/.emacs.d/elpa/org-9.5.3/org-datetree hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org-datetree /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-lua hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-lua /home/schnouki/.emacs.d/elpa/org-9.5.3/ox-md hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ox-md /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-clojure hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-clojure /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-latex hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-latex /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-css hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-css /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-sql hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-sql /home/schnouki/.emacs.d/elpa/org-9.5.3/org-loaddefs hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org-loaddefs /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-emacs-lisp hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-emacs-lisp /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-js hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-js /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-core hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-core /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-ruby hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-ruby /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-java hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-java /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-forth hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-forth /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-ocaml hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-ocaml /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-gnuplot hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-gnuplot /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-exp hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-exp /home/schnouki/.emacs.d/elpa/org-9.5.3/ox-org hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ox-org /home/schnouki/.emacs.d/elpa/org-9.5.3/ol-eww hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ol-eww /home/schnouki/.emacs.d/elpa/org-9.5.3/org-goto hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org-goto /home/schnouki/.emacs.d/elpa/org-9.5.3/ox-latex hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ox-latex /home/schnouki/.emacs.d/elpa/org-9.5.3/oc-natbib hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/oc-natbib /home/schnouki/.emacs.d/elpa/org-9.5.3/oc-biblatex hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/oc-biblatex /home/schnouki/.emacs.d/elpa/org-9.5.3/ol-doi hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ol-doi /home/schnouki/.emacs.d/elpa/org-9.5.3/org-agenda hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org-agenda /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-lilypond hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-lilypond /home/schnouki/.emacs.d/elpa/org-9.5.3/org hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-groovy hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-groovy /home/schnouki/.emacs.d/elpa/org-9.5.3/ol-man hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ol-man /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-sed hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-sed /home/schnouki/.emacs.d/elpa/org-9.5.3/org-macs hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org-macs /home/schnouki/.emacs.d/elpa/org-9.5.3/ox-texinfo hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ox-texinfo /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-org hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-org /home/schnouki/.emacs.d/elpa/org-9.5.3/org-table hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org-table /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-dot hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-dot /home/schnouki/.emacs.d/elpa/org-9.5.3/ox-html hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ox-html /home/schnouki/.emacs.d/elpa/org-9.5.3/org-attach hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org-attach /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-comint hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-comint /home/schnouki/.emacs.d/elpa/org-9.5.3/org-capture hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org-capture /home/schnouki/.emacs.d/elpa/org-9.5.3/org-compat hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org-compat /home/schnouki/.emacs.d/elpa/org-9.5.3/ox-icalendar hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ox-icalendar /home/schnouki/.emacs.d/elpa/org-9.5.3/ol-bibtex hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ol-bibtex /home/schnouki/.emacs.d/elpa/org-9.5.3/org-src hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org-src /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-plantuml hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-plantuml /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-julia hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-julia /home/schnouki/.emacs.d/elpa/org-9.5.3/org-element hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org-element /home/schnouki/.emacs.d/elpa/org-9.5.3/oc hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/oc /home/schnouki/.emacs.d/elpa/org-9.5.3/org-crypt hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org-crypt /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-tangle hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-tangle /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-matlab hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-matlab /home/schnouki/.emacs.d/elpa/org-9.5.3/ol-w3m hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ol-w3m /home/schnouki/.emacs.d/elpa/org-9.5.3/ob hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-maxima hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-maxima /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-awk hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-awk /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-haskell hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-haskell /home/schnouki/.emacs.d/elpa/org-9.5.3/ox-ascii hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ox-ascii /home/schnouki/.emacs.d/elpa/org-9.5.3/org-refile hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org-refile /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-python hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-python /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-sqlite hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-sqlite /home/schnouki/.emacs.d/elpa/org-9.5.3/ox-beamer hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ox-beamer /home/schnouki/.emacs.d/elpa/org-9.5.3/org-archive hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org-archive /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-calc hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-calc /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-eshell hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-eshell /home/schnouki/.emacs.d/elpa/org-9.5.3/ol-info hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ol-info /home/schnouki/.emacs.d/elpa/org-9.5.3/org-clock hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org-clock /home/schnouki/.emacs.d/elpa/org-9.5.3/org-list hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org-list /home/schnouki/.emacs.d/elpa/org-9.5.3/ol-eshell hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ol-eshell /home/schnouki/.emacs.d/elpa/org-9.5.3/org-pcomplete hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org-pcomplete /home/schnouki/.emacs.d/elpa/org-9.5.3/oc-basic hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/oc-basic /home/schnouki/.emacs.d/elpa/org-9.5.3/ol-mhe hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ol-mhe /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-octave hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-octave /home/schnouki/.emacs.d/elpa/org-9.5.3/org-duration hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org-duration /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-processing hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-processing /home/schnouki/.emacs.d/elpa/org-9.5.3/org-protocol hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org-protocol /home/schnouki/.emacs.d/elpa/org-9.5.3/ox hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ox /home/schnouki/.emacs.d/elpa/org-9.5.3/org-ctags hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org-ctags /home/schnouki/.emacs.d/elpa/org-9.5.3/ol-irc hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ol-irc /home/schnouki/.emacs.d/elpa/org-9.5.3/ol-gnus hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ol-gnus /home/schnouki/.emacs.d/elpa/org-9.5.3/ol-docview hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ol-docview /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-eval hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-eval /home/schnouki/.emacs.d/elpa/org-9.5.3/ol hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ol /home/schnouki/.emacs.d/elpa/org-9.5.3/org-keys hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org-keys /home/schnouki/.emacs.d/elpa/org-9.5.3/org-colview hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org-colview /home/schnouki/.emacs.d/elpa/org-9.5.3/org-id hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org-id /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-fortran hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-fortran /home/schnouki/.emacs.d/elpa/org-9.5.3/ox-publish hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ox-publish /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-screen hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-screen /home/schnouki/.emacs.d/elpa/org-9.5.3/org-mobile hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org-mobile /home/schnouki/.emacs.d/elpa/org-9.5.3/org-inlinetask hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org-inlinetask /home/schnouki/.emacs.d/elpa/org-9.5.3/ox-man hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ox-man /home/schnouki/.emacs.d/elpa/org-9.5.3/org-tempo hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org-tempo /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-lob hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-lob /home/schnouki/.emacs.d/elpa/org-9.5.3/org-indent hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org-indent /home/schnouki/.emacs.d/elpa/org-9.5.3/ox-koma-letter hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ox-koma-letter /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-table hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-table /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-makefile hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-makefile /home/schnouki/.emacs.d/elpa/org-9.5.3/org-footnote hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org-footnote /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-ref hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-ref /home/schnouki/.emacs.d/elpa/org-9.5.3/org-mouse hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org-mouse /home/schnouki/.emacs.d/elpa/org-9.5.3/org-macro hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org-macro /home/schnouki/.emacs.d/elpa/org-9.5.3/org-version hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org-version /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-ditaa hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-ditaa /home/schnouki/.emacs.d/elpa/org-9.5.3/org-entities hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org-entities /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-R hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-R /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-lisp hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-lisp /home/schnouki/.emacs.d/elpa/org-9.5.3/ob-perl hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/ob-perl /home/schnouki/.emacs.d/elpa/org-9.5.3/org-plot hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/org/org-plot /home/schnouki/.emacs.d/elpa/faceup-20170925.1946/faceup hides /home/schnouki/tmp/emacs-git/src/emacs-git/lisp/emacs-lisp/faceup Features: (shadow sort footnote guess-language flyspell ispell mail-extr emacsbug lsp-zig lsp-steep lsp-svelte lsp-sqls lsp-yaml lsp-xml lsp-vimscript lsp-vhdl lsp-volar lsp-vetur lsp-html lsp-verilog lsp-vala lsp-v lsp-typeprof lsp-ttcn3 lsp-toml lsp-terraform lsp-tex lsp-sorbet lsp-solargraph lsp-rust lsp-rf lsp-remark lsp-r lsp-purescript lsp-pylsp lsp-pyls lsp-pwsh lsp-php lsp-perlnavigator lsp-perl lsp-openscad lsp-ocaml lsp-magik lsp-nix lsp-nim lsp-nginx lsp-markdown lsp-lua lsp-kotlin lsp-json lsp-javascript lsp-idris lsp-haxe lsp-groovy lsp-hack lsp-graphql lsp-go lsp-gdscript lsp-fsharp lsp-fortran lsp-eslint lsp-erlang lsp-emmet lsp-elixir lsp-elm lsp-dockerfile lsp-dhall lsp-d lsp-css lsp-csharp gnutls lsp-crystal lsp-cmake lsp-clojure lsp-semantic-tokens lsp-clangd lsp-beancount lsp-bash lsp-ansible lsp-angular lsp-ada lsp-actionscript dtrt-indent sql toml-mode align dockerfile-mode sh-script executable dired-collapse dired-hacks-utils lsp-diagnostics lsp-modeline lsp-completion lsp-ui lsp-ui-flycheck lsp-ui-doc goto-addr lsp-ui-imenu lsp-ui-peek lsp-ui-sideline lsp-ui-util face-remap vc-git bug-reference macrostep-c cmacexp company-oddmuse company-keywords company-etags company-gtags company-dabbrev-code company-dabbrev company-files company-clang company-cmake company-semantic company-bbdb company-capf company-tabnine unicode-escape company-template company editorconfig-core editorconfig-core-handle editorconfig-fnmatch counsel xdg swiper ivy ivy-faces ivy-overlay colir emojify apropos defproject smart-mode-line-respectful-theme smart-mode-line rich-minority auto-virtualenvwrapper virtualenvwrapper gud python-el-fgallina-expansions python vc vc-dispatcher zenburn-theme lsp-treemacs lsp-pyright lsp-mode lsp-protocol yasnippet tree-widget spinner network-stream nsm ewoc lsp-treemacs-themes f treemacs-projectile treemacs-magit treemacs treemacs-header-line treemacs-compatibility treemacs-mode treemacs-interface treemacs-extensions treemacs-mouse-interface treemacs-tags treemacs-persistence treemacs-filewatch-mode treemacs-follow-mode treemacs-rendering treemacs-annotations treemacs-async treemacs-workspaces treemacs-dom treemacs-visuals treemacs-fringe-indicator treemacs-scope pulse treemacs-faces treemacs-icons treemacs-themes treemacs-core-utils pfuture ht inline treemacs-logging treemacs-customization treemacs-macros ibuffer-projectile ibuf-macs projectile grep ibuf-ext ibuffer ibuffer-loaddefs gitignore-mode conf-mode 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-mode git-commit log-edit message sendmail yank-media rmc puny rfc822 mml mml-sec epa epg rfc6068 epg-config gnus-util mm-decode mm-bodies mm-encode mail-parse rfc2231 rfc2047 rfc2045 mm-util ietf-drums mail-prsvr mailabbrev gmm-utils pcvs-util add-log magit-core magit-autorevert magit-margin magit-transient magit-process with-editor server magit-mode transient magit-git magit-base crm blacken flycheck-mypy faceup flycheck-package package-lint finder lisp-mnt flycheck-grammarly grammarly websocket bindat request mailheader mail-utils dom hydra-examples windmove jq-format reformatter just-mode slime-fancy slime-indentation slime-cl-indent cl-indent slime-trace-dialog slime-fontifying-fu slime-package-fu slime-references slime-compiler-notes-tree slime-scratch slime-presentations bridge slime-macrostep macrostep slime-mdot-fu slime-enclosing-context slime-fuzzy slime-fancy-trace slime-fancy-inspector slime-c-p-c slime-editing-commands slime-autodoc slime-repl slime-parse slime hyperspec nix-mode ffap nix-repl nix-shell nix-store magit-section compat-27 compat-26 compat nix-instantiate nix-shebang nix-format nix scad-mode flycheck-nim flycheck-plantuml plantuml-mode flycheck-pos-tip pos-tip flycheck find-func nim-mode commenter nim-fill nim-smie let-alist nim-helper nim-util nim-syntax nim-rx nim-vars cargo cargo-process markdown-mode color rust-utils rust-mode rust-rustfmt rust-playpen rust-compile rust-cargo d-mode cc-langs cc-mode-expansions cc-mode cc-fonts cc-guess cc-menus cc-cmds cc-styles cc-align cc-engine cc-vars cc-defs loop fennel-mode fennel-eldoc inf-lisp docker-tramp tramp-cache tramp tramp-loaddefs trampver tramp-integration cus-edit cus-load wid-edit files-x tramp-compat shell pcomplete parse-time iso8601 time-date ls-lisp format-spec uuidgen calc-misc calc-ext calc calc-loaddefs warnings rect calc-macs editorconfig etags fileloop generator volatile-highlights undo-tree diff viking-mode autorevert filenotify which-key visual-fill-column so-long auto-read-only restclient-jq jq-mode pcase smie restclient noutline outline expand-region subword-mode-expansions text-mode-expansions er-basic-expansions thingatpt expand-region-core expand-region-custom which-func imenu tree-sitter-langs tree-sitter-langs-build tar-mode arc-mode archive-mode pp tree-sitter-hl tree-sitter tree-sitter-load tree-sitter-cli tsc tsc-dyn tsc-dyn-get compile text-property-search comint ansi-color dired-aux dired dired-loaddefs tsc-obsolete xref project s list-utils dash edmacro kmacro hydra ring lv view alert log4e notifications dbus xml gntp diminish cl-extra help-mode use-package use-package-ensure use-package-delight use-package-diminish use-package-bind-key bind-key easy-mmode use-package-core derived finder-inf cap-words superword subword desktop frameset saveplace ediff ediff-merg ediff-mult ediff-wind ediff-diff ediff-help ediff-init ediff-util delsel hl-line time cl slime-autoloads rx advice info 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 map url-vars seq gv subr-x byte-opt bytecomp byte-compile cconv cl-loaddefs cl-lib iso-transl tooltip eldoc paren electric uniquify ediff-hook vc-hooks lisp-float-type elisp-mode mwheel term/pgtk-win pgtk-win term/common-win 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 simple 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 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 gtk pgtk lcms2 multi-tty make-network-process emacs) Memory information: ((conses 16 1413570 1020216) (symbols 48 85905 8) (strings 32 798077 88864) (string-bytes 1 48179440) (vectors 16 130397) (vector-slots 8 3564556 809363) (floats 8 392 2342) (intervals 56 4645 2030) (buffers 992 85)) -- Thomas From debbugs-submit-bounces@debbugs.gnu.org Wed May 11 08:47:17 2022 Received: (at 55362) by debbugs.gnu.org; 11 May 2022 12:47:17 +0000 Received: from localhost ([127.0.0.1]:36436 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nolkH-0006nT-P1 for submit@debbugs.gnu.org; Wed, 11 May 2022 08:47:17 -0400 Received: from sonic303-21.consmr.mail.ne1.yahoo.com ([66.163.188.147]:45838) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nolkG-0006hL-6r for 55362@debbugs.gnu.org; Wed, 11 May 2022 08:47:12 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s2048; t=1652273225; bh=oNhldLQVpbQhcoazYmFTL3vYqzJduh5yf6At4thOCkg=; h=From:To:Cc:Subject:References:Date:In-Reply-To:From:Subject:Reply-To; b=tjDZSsClnWXdGQlWB0Ib9y55K73EFF0/C/Cs/46GW7EKIh+qfQ36CNpjFtF9ukWOnENd55Les7Sqr4pz7OSZqk8nhypwq02UOGvZYHqYGVJivBl9T9ACFYqaS5gRlRnhHLcmms1IxHy8yljC6u4NGGx5eOQdjbOgRXvFpcUOoYWnj21wWOdASPuEjAyDH4tGVveHjA9HyFU1HC+95n/GFvwXTDANeokWtDyggNVZsieGri5Acj7p+vaFvrZNPXTzqT3r0TzteCztUBsIyUbtdlfRzC+TfQr+zp5qURyPMSdEyTj7yiIpW3lNIsb2llObPLkRd3pQktWT53U0yza4Hw== X-SONIC-DKIM-SIGN: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s2048; t=1652273225; bh=Aw1tgRb4B6mt7JrBmYJPBMagCiHitlA+0whQFMstEmA=; h=X-Sonic-MF:From:To:Subject:Date:From:Subject; b=aOXS44yFvXKibwMTqYt9jDC+tDnn0DOWyzZjIXu5UWmHDoR/Ic5CeBHhvqZHfdBt0faNlcml8kZBcvPUBJ3TLyPqWdCN1k60F+Ge6Ey7oiaxqWen8CbS+wWHJGRUULbAQUI1W3xDrv+biuaxxdNf7jJa6t/qV+N1OtHsBicL6CeWs7T8gq7IuNKALgCrJouZO0ys/xWbn61AMJg1P3Bq/CZPQ1ek5ZcpNen40EMtR/TU2+BoftzaU70DPJRRgreM9B0ghaVzsK1JJASnA2BexI55d7UjPF5AxOYE/procA//q0jBtAqReQrA4Sbezjmj8aclLHc28nzmkc/90WtWQA== X-YMail-OSG: MzbAOgkVM1nT9cTUSuj6M9CHPzMFyeanxJwKjrjfevYh5rtY1EqgZBo9t6mAWuN GkLa2Y3zUP.364xKuNreqQEBlrOrQzgCIsB1ZQbP7uwiWTPO01h0Zlq8ooRUUXm2jp4Q59aW7DzU IggSENDSN16QF.IJRTgqvnpprekukPsJ67Q0cdFjOm_N3opnTLqRQzYNSgPM5w9plie94Hkle3iJ SEL7uEvLO49lcJ0o_W5RLjvzHP4a.j9K9CDOxuS3TZ0SXFI2uvi664mmSa9lGGk7oYngAbMubPat jpe55GfD5uEk6a8Pa6JVBSwFm1OAqLlte8J1WKKV1X5y7QAmEioH3d8lM4jzktsnBCYf4Q5fjKyN .FiGSXrol8juIenR0fd.LnTtd4_DdvWUrBqPJL2rWaWN0K6URLzB.74tbUUBEHIt5isSUQcceNH8 mNG7mMxYMoTIJ9byAP5Oa1tqggMCO0BcXeAJvH4EPSHnAZ244q1GCBjegeUTp1RIViPi1BtGVFDo 1sRSYuVhuUqJ0s5UXhrGCZ0Z_.el6z7Wtm9ITGbb1LO155mimCeAWnw91_9JC.AXKlrpYJqd8G3D cgTq.RZ.eZhGouQDrc0SPKXXmBQSfw0qZDoQFoTJWTJ0tqRXMsLtNA7.OSHEzpYvK8rWZZ.92dNn ahZ_fuzpWhDqc7sdcrfStubghY97851bZ6YQ22OwY.62nJUcrOqgdtDIWGirIRr.B8tWnOprXyIX RkI53XonqrLy5lk5x8ZaxpMsKEQlpinqZaxqDv4l4iwbhl7oBhY5QEQxLlQ0CpRfN6zLXsg09aH6 317uu3F3VtvxbZ6ko9POzXl5kM.KGiQPOIfyfn8MvpmfNJuWRSSG20wRqLvWCwom2jTS54.tKJZF Vem_Ml5qFKyox_vX91LYHvIWMgoiSygSb_5w4QqgA92qqVtXdQ9Xtyc84YrxJ5.xSfBJLx9X8dge UXxF.MMAXF1rvzdkLxWdH6d.VoYyb7u3gnsymtKkkRreBcK4dH7GRpDGldWIc4D.AnuQNImRBHor rEd4_YORiJl31mqu7wxaQZmsDZv5XFJH7fQOoRFVBSi3MZUsgv0BRDecjKd8vSPjxbGsiAdH3gIy wWyWfg.8YN25unrV8HR7hRuOiV9ASGFa1_To9vWtYwiBWV60zP1Y3vVTlXoum8tuygeApKijea7c .hATreQtKLS0_pHdntY3mTp870khgRgFDaD5E5tSZSK90t0JQHxfVj8jgCGFDsHjSiECPToFEk3t Aid3aFxSbgcqQEPP2DjHBlH0HhGqf7LipLhnNBF0BJq9Dzd0SIU6IJziS3kE5xGK19C8ONQ072By nDBfFsq1mFnVngunsInE.4udRPgFacj6LJYQ20aKUWV2dldZW6wHIjEBJncalpsvxIYUPRa5trUK PhAx.uHzj1nYA8V2n5ELWFGEcXNm7rXPjP8egQiLT9yLgDG_qYhsc03e04O.KdsAr0uuGqg5f8iB q3XPPMlqoUzSCIuZ_5xnQ8dy02uOjF_yQvbg6mfsamiGnvxHQ1D1n5ZkIPWB479uZyR8ieVfMKDZ kguwEjVvR_WsmUtlO8ii0RVxG1DJHvdXWmoGuaHO7iJS02Y5mwspnMmbNIqBD9qwlKt1YPXgTlJa gycMOJbHDll5YQek7cGqs0.EnONAKbdnk.tKzY6jZn1bYLnYqzdLiH3S5m.EYaNwe4dGLcNk.Tnf Lw459UEZBKTQQGm0IUJ1hNQ8xaZBssCGEFAPIbbV5daAzUS3qS5ehugUsPwy_USMOtklh1VSlAVg wj3MJoLibTOMqTu.kCM1DvFnnrCDK6.rcB.ZZ8Q4rIM9oGphNqpqCiuwJOZs3q48JKny3Bv6AUiL NNsKjuhjuk.tWTBgERiRTeewjdyg8sjaRJO_Aqf9.4Y8Gu9lXCREg.RHkqrt74bMPISYa5FVZG8V KhaF8yAWreokoq8G5wFvNMC.DE.fPmmjhFtpCWpsqjm8MqLctFb5SxOyjKLxmTkuHQ5NBtnCaH6Y UW7yyzSePJz0lnzaouF5qHWMYnoJs9dvv4uKfgASa3vUVEA5UHrt6gDEOqPDq0H3trNH9VZ8RUmg RTDEdXeE7_ud428l15RYaU_itCwBiF3pCeqO8Rrqxe09HZBF4t1NYbEI27nv43XSC2kwXSoJm1X6 SFZakNbm5GwIH5n3QQEw6HmZRycBIPIvpVDsQljaLRSnPz2l9kvutTp.hUXLg2WmPztutJQJjreK 5_TTc3e3R7mp7TdoBHV6iTy.90MknNx4jdzYCz4RYrpse5cVdxHU8_DxFxndS X-Sonic-MF: Received: from sonic.gate.mail.ne1.yahoo.com by sonic303.consmr.mail.ne1.yahoo.com with HTTP; Wed, 11 May 2022 12:47:05 +0000 Received: by hermes--canary-production-sg3-856bf69955-sx85m (Yahoo Inc. Hermes SMTP Server) with ESMTPA ID a104b62ac00da12249a213d560a00bae; Wed, 11 May 2022 12:47:01 +0000 (UTC) From: Po Lu To: Thomas Jost Subject: Re: bug#55362: 29.0.50; Super key no longer works on Wayland References: <871qx08k43.fsf@schnouki.net> Date: Wed, 11 May 2022 20:46:55 +0800 In-Reply-To: <871qx08k43.fsf@schnouki.net> (Thomas Jost's message of "Wed, 11 May 2022 12:00:12 +0200") Message-ID: <87y1z8z16o.fsf@yahoo.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.91 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Mailer: WebService/1.1.20188 mail.backend.jedi.jws.acl:role.jedi.acl.token.atz.jws.hermes.yahoo Content-Length: 1650 X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 55362 Cc: 55362@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 (-) Thomas Jost writes: > Hey folks, > > When using recent builds of Emacs with PGTK on Wayland (Sway), the Super > key is no longer detected. I use it in a lot of shortcuts, but now > typing e.g. `s-/' just inputs /. > > If I run an older build with the exact same config (or even with `emacs > -Q'), I don't experience that issue, and shortcuts using Super still > work. So, this seems to be an Emacs bug. > > Using git bisect, I was able to find that this started in commit > 1c1ae6ba802cc5813fa6f8f90f21050aae6bb459. Further investigation revealed > that when typing a shortcut with Super, the GDK_SUPER_MASK bit isn't > set, but GDK_MOD4_MASK is. > > I'm not sure what the best option is: restoring the former > x_find_modifier_meanings() function, or hard-coding that Mod4 is the > same as Super (like Mod1 and Meta). The bug is in GTK, not in Emacs. It doesn't set the virtual modifier masks corresponding to the Super key on some Wayland compositors, which it is supposed to. That patch (and the old code) is incorrect, and the code before its removal was another example of the PGTK port haphazardly copying code from xterm.c to do stuff GDK is supposed to do by itself. Mod4 is a real modifier and can correspond to any (number) of virtual modifiers, which might or might not contain Super. Please report the bug to the GTK developers. Something along the lines of "GDK_SUPER_MASK not set on keyboard events on wlroots-based compositors when the Super key is held down". After you do that, I'd appreciate it if you gave us a link to the bug report, so we can at least put it in etc/PROBLEMS. Thanks in advance. From debbugs-submit-bounces@debbugs.gnu.org Wed May 11 09:04:39 2022 Received: (at 55362) by debbugs.gnu.org; 11 May 2022 13:04:39 +0000 Received: from localhost ([127.0.0.1]:36476 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nom18-0001MX-Ti for submit@debbugs.gnu.org; Wed, 11 May 2022 09:04:39 -0400 Received: from quimby.gnus.org ([95.216.78.240]:41074) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nom16-0001MD-9v for 55362@debbugs.gnu.org; Wed, 11 May 2022 09:04:37 -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=NLju3MesL5Dyx0NL+pLEngGr4VRbMNcrTqm3/tNOb6I=; b=M20mz+N4sozgkUgq+tdMaCIMKv RkQQJdtROlqaqSIDy+sDoKhPbrdgoZ7nyqY4Vq83elDz/LwMCckWE+3RlGeQOjWnj7bpwcjCviJMZ +24Q1T2Xq52YgPqdoAwXM13/4RRUmTlF55TuTiBt9n94KtVY5j17urlpfwD6hOE4VnD4=; 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 1nom0y-0008NE-1V; Wed, 11 May 2022 15:04:30 +0200 From: Lars Ingebrigtsen To: Thomas Jost Subject: Re: bug#55362: 29.0.50; Super key no longer works on Wayland References: <871qx08k43.fsf@schnouki.net> <87y1z8z16o.fsf@yahoo.com> Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAABGdBTUEAALGPC/xhBQAAACBj SFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAD1BMVEXXz69WPy6XVDee kGP///9AcP+yAAAAAWJLR0QEj2jZUQAAAAd0SU1FB+YFCw0ACBUrQS8AAAGMSURBVDjLfZThscQg CIS52EDABiI2oNJ/b29RL9HczPNHZuLnLogokQ/R90j0LwgALMr4Z+WkKjdIvA2RG7ycHpA4arPK HKUrdICc3CsDxMorcAVLNnzDBhggiVpVtQ1ot5qBf0CSm+wg3rt+gdx0GNqaFUpiXhfPutRFAWMI xIqZlc87BheaDhtAeQmCQrYCL3gHIfFlDsoNRKOvrhK7woyCWznAomzW2AbAmMDFFhRpbIAdHBnw ATKKSEaaQaLsIFO7gqViuU3QAESzUZWQCh3ta9U8hloJSCBTOLTpDdBUvrfYLipNVwWO/EC92nmc 9gaVJX5KLRmOT3Bki9M4q/GpfsaPAp0iEhkAyd7pMqxQX5DaC7IC9k+KmWNWkTUG5vNxkWfxAoJd k/d1WkDvv+Td+m3Rr8LzjUR9/raqAKjJGaYgrQCtdhJ9eLOq/UZVLqEOoCu4MGH8KLQ1rSNdRF0B RhX2Q9M8r2wv+wS6X+gJPKVh0a/N2Ou4Qu+nRJjGop9XhimhTulnPukfP+Z3pw1paDAAAAAldEVY dGRhdGU6Y3JlYXRlADIwMjItMDUtMTFUMTM6MDA6MDgrMDA6MDAmorvFAAAAJXRFWHRkYXRlOm1v ZGlmeQAyMDIyLTA1LTExVDEzOjAwOjA3KzAwOjAwobdzkAAAAABJRU5ErkJggg== X-Now-Playing: Joni Mitchell's _Taming the Tiger_: "Man From Mars" Date: Wed, 11 May 2022 15:04:25 +0200 In-Reply-To: <87y1z8z16o.fsf@yahoo.com> (Po Lu via's message of "Wed, 11 May 2022 20:46:55 +0800") Message-ID: <87zgjo8bl2.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: Po Lu via "Bug reports for GNU Emacs, the Swiss army knife of text editors" writes: > That patch (and the old code) is incorrect, and the code before its > removal was another example of the PGTK port haphazardly copying code > from xterm.c to do stuff GDK is supposed to do by itself [...] 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: 55362 Cc: Po Lu , 55362@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 (---) Po Lu via "Bug reports for GNU Emacs, the Swiss army knife of text editors" writes: > That patch (and the old code) is incorrect, and the code before its > removal was another example of the PGTK port haphazardly copying code > from xterm.c to do stuff GDK is supposed to do by itself. Mod4 is a > real modifier and can correspond to any (number) of virtual modifiers, > which might or might not contain Super. But this seems to affect many people who had a working Super key before, so I think we should re-fix this on the Emacs side. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Wed May 11 09:22:33 2022 Received: (at 55362) by debbugs.gnu.org; 11 May 2022 13:22:33 +0000 Received: from localhost ([127.0.0.1]:36540 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nomIS-00048b-Qa for submit@debbugs.gnu.org; Wed, 11 May 2022 09:22:33 -0400 Received: from eggs.gnu.org ([209.51.188.92]:33410) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nomIR-00048N-9K for 55362@debbugs.gnu.org; Wed, 11 May 2022 09:22:31 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:39942) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nomIL-0003E7-7o; Wed, 11 May 2022 09:22:25 -0400 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=dDyxfvZiLYffLeJwiZj9u0LZyGdZV7Yh7b1SCkkNjcM=; b=MswM5Sdl2w3q 4kQ8TVPzWxROA1PY8zgV9zPkOKpTkmzv+qDvb475vp4yjuz4VNqFSCX15t7c2Gg3G2887lbCRxM4f 7BCJw8Hn4d888NldzdvTmG7Q4j6YqZ8fZPrYFh7UzvAxXZEr1N08LKEkqaF8IoVI/qbtSZCqvdqKp OOwovMszurpAyLCNyLHrlv/K4Wt23zyHWyIF+Q/M8XZIpUUnntVclDYfG9qZRLA7YQZ1NNeooeZqD sjMbF2dC4au0S7pYsGxH1TfdDKniYbqXNDAw92beGyRa7afQM1z48YudyTPFrAonztMwelXiGMHal heq+y+JtEJUfNwQPk2sBCA==; Received: from [87.69.77.57] (port=4774 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nomIK-0004Hx-Hm; Wed, 11 May 2022 09:22:25 -0400 Date: Wed, 11 May 2022 16:22:26 +0300 Message-Id: <83sfpgqk4t.fsf@gnu.org> From: Eli Zaretskii To: Lars Ingebrigtsen In-Reply-To: <87zgjo8bl2.fsf@gnus.org> (message from Lars Ingebrigtsen on Wed, 11 May 2022 15:04:25 +0200) Subject: Re: bug#55362: 29.0.50; Super key no longer works on Wayland References: <871qx08k43.fsf@schnouki.net> <87y1z8z16o.fsf@yahoo.com> <87zgjo8bl2.fsf@gnus.org> X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 55362 Cc: luangruo@yahoo.com, schnouki@schnouki.net, 55362@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 (---) > Resent-From: Lars Ingebrigtsen > Original-Sender: "Debbugs-submit" > Resent-CC: bug-gnu-emacs@gnu.org > Resent-Sender: help-debbugs@gnu.org > Cc: Po Lu , 55362@debbugs.gnu.org > From: Lars Ingebrigtsen > Date: Wed, 11 May 2022 15:04:25 +0200 > > Po Lu via "Bug reports for GNU Emacs, the Swiss army knife of text > editors" writes: > > > That patch (and the old code) is incorrect, and the code before its > > removal was another example of the PGTK port haphazardly copying code > > from xterm.c to do stuff GDK is supposed to do by itself. Mod4 is a > > real modifier and can correspond to any (number) of virtual modifiers, > > which might or might not contain Super. > > But this seems to affect many people who had a working Super key before, > so I think we should re-fix this on the Emacs side. I agree. At the very least, how about a knob, by default off, to restore the previous behavior; we could then have that in PROBLEMS. From debbugs-submit-bounces@debbugs.gnu.org Wed May 11 09:24:03 2022 Received: (at 55362) by debbugs.gnu.org; 11 May 2022 13:24:03 +0000 Received: from localhost ([127.0.0.1]:36545 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nomJu-0004BY-6z for submit@debbugs.gnu.org; Wed, 11 May 2022 09:24:03 -0400 Received: from sonic317-32.consmr.mail.ne1.yahoo.com ([66.163.184.43]:34699) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nomJe-0004Ak-Ff for 55362@debbugs.gnu.org; Wed, 11 May 2022 09:24:01 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s2048; t=1652275419; bh=bTTgS+eDG0na7s8SEfWaFchY+C7mLAqnw48uS2yLjdk=; h=From:To:Cc:Subject:References:Date:In-Reply-To:From:Subject:Reply-To; b=NahPPWWJO4rvb0kHWpPjIMHovs0o4ZmFaR7nFpYC4DHkHEkeEY0bZbnzzbf1jJ54+LEbXcLZ0twzOWnj9rBsBr8DesZ/2WHwuS/XU/QVUb0J+lk0fVYP6tK1MF11H0SXm5xzpFFzle1JMvcAltqKdmk0S2xl9z15uM2jxHVQtPMpd5iOVF7LDYJAYIycf64JmjuBM8sIxUvxtYgtt4Rm4YSaE7UHV5HVRmehXNyUvmm4Zv1D18X4Bh/k6uEb0/gxbq4SYZG2j5TDx21M4eG+krlLUQti3aRIlY59YcN2s7BsfHbprN4QQJ3RjSsGarSntHtdEA0Oo7UZmZSExFa6rw== X-SONIC-DKIM-SIGN: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s2048; t=1652275419; bh=/k3zu5xW/Xj7yuqy3c4zQbcyvRj1UfsEjTVG2eCbxcw=; h=X-Sonic-MF:From:To:Subject:Date:From:Subject; b=F7qFCM0A9G75yIvPd4HPfDnjrBjXHUNTCZMvRBWgJ/cUg84kjQKEdcQa2pxFIO9oFkrDOyiAwq/VAlw+F9mu34J839fY2FStwvG0hS7DEFbBiujF0kexJt0XA+vcGI+4E1l2j+PxOEvJPsvCMutTi1VwBxUGTYuu7xhUyCvBLk3Sq69msmwRiShqeoJXt7elojXg0XM4L7MWdRxbdExknHck2DA1phHUejCVHYI3vvKdnYoewajAMLfho5EMGcXiRK47sau9J25KBNUuNRVhGLD9XoNzjNAY6YKpyzW6NToxg9jadwGAHErIoVyamXj0O5yNVNH5cS0S9373df0nLg== X-YMail-OSG: Xbt2N2gVM1l4aQqiysqD7HISEmd_f.a5pajaxw5TH6mlvSMsvM1.UGD_9V8rmbl pegkHNmET3pl6p8yFHqDcUPGiqR2xA4hU5RjufvMLdb8wrsa4CDUQ_qCD0Wfy0K8WWLs12kn9Qru wKrOO5XkEzVU7hXNctugQnaVmAyA7BGr6DRjUMTFwSaFq9y7AZz5P23rrMd5LPanNXECn6gp9ojz A_OI9_0ofC_GduTSw7QmlGAQPRqgQRpkhiUHsOYMICvZxoUXeymcjwDumPgnFkxruw5DDSd8HkjF 1pRnOWfh3BimEFk5y__LoLr2qcp0B2na17AxuPrvhnU4S4zGgboiUJOFV9MMkuR7w0.xuOVWF3JQ mYisF1rP89LXhpEhwXBtQMeMi27XhaaceTlezgr3aqlcaW5caysM8OiC5Y3bPJnT2YAGISoLlGCn 9frLt5dl4FWmHj.7KZ6mtAOccWFFYrXJlnsJF8r0jYjAW8kNVzswk0N5NlF3y5KwPVgKzK0f9Jbv N7CpBRTwfyZTTUei1UJ1qdrJhLVvW3ctyBjzd0mZ46ZZbH2kL51ZXapexSCAT0lF5B.BIEz0tQfD Z5tCSjQ.dASF9_RKERlIuG2LnXQDTA_K4CwJySwpA.NwXzVGyafvNh9opLmlKz_Egy.bvxCrdCQz Z1ETC3ok7xOI9K26mGkXrYIo372YheMc8yvE_NuArL4rUHe4hVJG.2Qux7tuwkF7k4DDbEHemhg1 85X3Ia1agD45bM0mun2TKCwPdjGwut9f_VWRQg9pxxzqM5dRys2JOYD4j7xO8Lb6z3PgOogNVAh0 5Nqe2hot6yome5j957PQv8W7Buczi.aFcdFmiEIonSpoH7A91A7R8rIlVouOKSG.9etQIqcTCsoO byTgf99z.NmT2vTbEOWPUAdYz1gPs6lGRoO_pWmz_8IPwExxRKhVqY9bRmZNxR4uNmT64KVwoLAo h8M.jhX3DRETMkM4RPlUQw.cGSaX_mx2H9jnDqJixUwK0cIx0lTHcgPiG5ZK3Cp74MEYh.8mSsKE i.b9nf99oOlzAKyt6JrfMnL8XBEwVHMkNsbWOUJSObLGVWE46pdwNXhqeXTUh.zaKkIindu69D5V 5gi1cxiTSGPttZGZJxSnMoybeta4s6p9JlQIDLPjIOBKACQ9UXaftUu97QjOKDVvAwQTtYn._9Lo JomPS7T90BRuWM2uD.AT8J.Qngc22PeVkdv6g7Rt1v7FS_eL4CdJVeHZ_SdD1VXO_JHG6Ar_LuzZ OSZuUOQV5iNSMK6MnZcUoV9hpb_ZfBkTVBUZhFeHV.SZWyrTFAKxveB0RzKfv4CxmqcbBSqtZTGN xd01qWMLFvDBQPb9dn6SFyeMdf0pLFenWS5333O22nP.kFn0MMu3WdNnphBjoozscqeXMBHgq.0b _._jSdRGHtra3KLeW3Y9W8M2QgIFaKcm3hcRiwXiDcM1XxQvJ21qC64iCXJWzQ8h8_GX7miFEs6K axRPRR2A_10N4z3IIAjD_Q0zimCvFwI0X7UGScnF3jlepwdTRZeEsoV4bpAqTZsHXyQ_eud3TGE4 ILnm2OrSvij4O50P61VgZmf3cUzqU3_VRpabq5c2pTmKbkFUqxf35XauwRMsTHhZGoQlNkuj.vVi XMpXS.eq86JEdGS4LM.9G6sMc4k6fSYihFiMREFsgTi9260fSKyISbLFruBNkJuy_gYVwbaZm6Wh Ob5kwPtg.1nNlCxX8YV3tasCmgfPLKloMNy_jlmTHQg8i7Gq0.dLicwAnjNiSk6smdzqrCTqoM_A hoGJX5yFuLWy5pC5MdIUD358_qMG9fRNfV.qjH1hj2lP8h2GW3DUbmugX_urF8OSC1LpmONXoo2b tMYmGkFp4sTsl.zmEMahoY1HdbhF06KzOomnfzJGjiRKwW.efUOIbI2gb1kuOk_DB.L4gIBN5cPZ N4ZjNRvBkehcBCxMnXKfvVJfsVZY3ItetzyDT7THm1QcZMM1577h.BgVwODVm2_8Nkq9sMUe9oAR 3x0GhYeZbptbp036.Hmgy0_MnjcD592KOf0PELFJfElfoNKhGjJ0RVb1DMMVu7G_SgXD3IG7PSLC _2F1KcqwPs3ycGXZfjcg5X7BPFYKi8FSTI4BW0YeQ9lPlse61uDqF7twI.dRbnEfDQFXKtBoobG9 AetLjO3fEqDTuEE.MNgsU8urBM4FzhlAbnyZphWKS5ECkv.MqWYOzXpCbnlCrd7kLYm7cmzM2L7I 5N7LUg6hZ0lgjemh0Ai6CKHdaw1UNGYIdQ_pcGzJi8bc_ElVMoIsDZd0ebQ_S X-Sonic-MF: Received: from sonic.gate.mail.ne1.yahoo.com by sonic317.consmr.mail.ne1.yahoo.com with HTTP; Wed, 11 May 2022 13:23:39 +0000 Received: by hermes--canary-production-sg3-856bf69955-wcgkh (Yahoo Inc. Hermes SMTP Server) with ESMTPA ID eaf445cfd1c4c4e3acdea345382beeb2; Wed, 11 May 2022 13:23:36 +0000 (UTC) From: Po Lu To: Lars Ingebrigtsen Subject: Re: bug#55362: 29.0.50; Super key no longer works on Wayland References: <871qx08k43.fsf@schnouki.net> <87y1z8z16o.fsf@yahoo.com> <87zgjo8bl2.fsf@gnus.org> Date: Wed, 11 May 2022 21:23:31 +0800 In-Reply-To: <87zgjo8bl2.fsf@gnus.org> (Lars Ingebrigtsen's message of "Wed, 11 May 2022 15:04:25 +0200") Message-ID: <87tu9wyzho.fsf@yahoo.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.91 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Mailer: WebService/1.1.20188 mail.backend.jedi.jws.acl:role.jedi.acl.token.atz.jws.hermes.yahoo Content-Length: 558 X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 55362 Cc: Thomas Jost , 55362@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 (-) Lars Ingebrigtsen writes: > But this seems to affect many people who had a working Super key before, > so I think we should re-fix this on the Emacs side. Not before Emacs 29 is released, or otherwise the GTK developers will never fix their thing, and we will be stuck maintaining yet another broken hack to work around one of their bugs until the end of time, which is several degrees of magnitude more confusing because we now have two configurations where sometimes identical, and sometimes different GTK bugs have to be worked around. From debbugs-submit-bounces@debbugs.gnu.org Wed May 11 09:51:33 2022 Received: (at 55362) by debbugs.gnu.org; 11 May 2022 13:51:33 +0000 Received: from localhost ([127.0.0.1]:36604 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nomkX-0000ue-8O for submit@debbugs.gnu.org; Wed, 11 May 2022 09:51:33 -0400 Received: from out2.migadu.com ([188.165.223.204]:33306) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nomkU-0000uS-Ut for 55362@debbugs.gnu.org; Wed, 11 May 2022 09:51:31 -0400 X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=schnouki.net; s=key1; t=1652277089; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=vMo9ByayiOhd2k35/PDFLlKVzsFWlA/giV9qy5G5xnk=; b=POMmoahV4+ybKp1bPU9Bx+ygK4oAaOYUBhvJSq0I/6cGkmE0D6NDXMyi2Jtw6vzyXaWjLo CC8c1QKZajTYBPdjhw6KXznVPXexZJJh5QQnSOBwuJpCnFZiBquY+foQkilPUrRnmpXnoq Wy1qC/AWzktBAPJ1exJinnMytLIQ52Gh7ViitBW2l+HMiW/ifyyNKCM2qRm/kLwuery8WX iyiW6tog+tPgyRsGMwbKOcfDAn+0gxKUASrYeyTBD6253Sgxsm5KSGjhI2rhHPIkrjHpX6 rN7oTYnKNzQR8odJ0sIae2ZfxtUzkW5A+CbeKxRW9JXeNG+n1aRrH6xCbhREvA== From: Thomas Jost To: Po Lu Subject: Re: bug#55362: 29.0.50; Super key no longer works on Wayland In-Reply-To: <87y1z8z16o.fsf@yahoo.com> References: <871qx08k43.fsf@schnouki.net> <87y1z8z16o.fsf@yahoo.com> X-Clacks-Overhead: GNU Terry Pratchett Date: Wed, 11 May 2022 15:51:28 +0200 Message-ID: <878rr86uu7.fsf@schnouki.net> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: schnouki.net X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 55362 Cc: 55362@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 (-) Le 11 mai 2022 =C3=A0 20:46 +08, Po Lu a =C3=A9crit : > Please report the bug to the GTK developers. Something along the lines > of "GDK_SUPER_MASK not set on keyboard events on wlroots-based > compositors when the Super key is held down". After you do that, I'd > appreciate it if you gave us a link to the bug report, so we can at > least put it in etc/PROBLEMS. Reported it to GTK developers here: https://gitlab.gnome.org/GNOME/gtk/-/issues/4913 (which links back to this bug). Thanks! --=20 Thomas From debbugs-submit-bounces@debbugs.gnu.org Wed May 11 09:54:48 2022 Received: (at 55362) by debbugs.gnu.org; 11 May 2022 13:54:48 +0000 Received: from localhost ([127.0.0.1]:36609 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nomnf-0000zg-RQ for submit@debbugs.gnu.org; Wed, 11 May 2022 09:54:48 -0400 Received: from out0.migadu.com ([94.23.1.103]:50735) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nomnd-0000zW-Sc for 55362@debbugs.gnu.org; Wed, 11 May 2022 09:54:46 -0400 X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=schnouki.net; s=key1; t=1652277284; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=HN1ccmOSs9oa44KB9Hbv8DFNzPlVZX6LLNZfNIpffsw=; b=MrxIrzk+THkvq0WMn4pXgpOgqGD9mpn/WFMni0CW5BJXHVVFNxdT1ZNd8IkOwDOROPyMBA Ombo/jovsXTbX3SO7qoFcpiEsbYiAZH3LkHLnTtxHL993raSiQU3iyS2ZB3WZcFWX/Ve8C vi+Zw4e4TlN00hRZDjKRTd7su/BGfVGv5djxwVJYVBGNU8Y0dZuaZREKJqQhEmnJ46xTUy jbo2Yg/bqlQ6cu0KlZ72bXkSDUhWMNEv+WsnJwwDMK38znRzoUkdW4nEn/3xJ8wQJFxB1R T193NTP5fUWxrtXc2m8wzx+ZKOqrk4i1Bm5cYa6MipmL8mcS3sa6jrHkPoKDHQ== From: Thomas Jost To: Eli Zaretskii , Lars Ingebrigtsen Subject: Re: bug#55362: 29.0.50; Super key no longer works on Wayland In-Reply-To: <83sfpgqk4t.fsf@gnu.org> References: <871qx08k43.fsf@schnouki.net> <87y1z8z16o.fsf@yahoo.com> <87zgjo8bl2.fsf@gnus.org> <83sfpgqk4t.fsf@gnu.org> X-Clacks-Overhead: GNU Terry Pratchett Date: Wed, 11 May 2022 15:54:43 +0200 Message-ID: <875ymc6uos.fsf@schnouki.net> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: schnouki.net X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 55362 Cc: luangruo@yahoo.com, 55362@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.7 (-) Le 11 mai 2022 =C3=A0 16:22 +03, Eli Zaretskii a =C3=A9crit : >> Resent-From: Lars Ingebrigtsen >> Original-Sender: "Debbugs-submit" >> Resent-CC: bug-gnu-emacs@gnu.org >> Resent-Sender: help-debbugs@gnu.org >> Cc: Po Lu , 55362@debbugs.gnu.org >> From: Lars Ingebrigtsen >> Date: Wed, 11 May 2022 15:04:25 +0200 >>=20 >> Po Lu via "Bug reports for GNU Emacs, the Swiss army knife of text >> editors" writes: >>=20 >> > That patch (and the old code) is incorrect, and the code before its >> > removal was another example of the PGTK port haphazardly copying code >> > from xterm.c to do stuff GDK is supposed to do by itself. Mod4 is a >> > real modifier and can correspond to any (number) of virtual modifiers, >> > which might or might not contain Super. >>=20 >> But this seems to affect many people who had a working Super key before, >> so I think we should re-fix this on the Emacs side. > > I agree. At the very least, how about a knob, by default off, to > restore the previous behavior; we could then have that in PROBLEMS. >From a user perspective, this seems like a decent trade-off. For me, not being able to use the previous behavior would mean that I'd have to stop testing Git releases until Emacs 29 is released. Not having such a knob would also prevent any user who is for some reason stuck on an older version of Gtk to upgrade Emacs. --=20 Thomas From debbugs-submit-bounces@debbugs.gnu.org Wed May 11 10:08:21 2022 Received: (at 55362) by debbugs.gnu.org; 11 May 2022 14:08:21 +0000 Received: from localhost ([127.0.0.1]:37969 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1non0n-0001iJ-6Q for submit@debbugs.gnu.org; Wed, 11 May 2022 10:08:21 -0400 Received: from sonic309-20.consmr.mail.ne1.yahoo.com ([66.163.184.146]:33627) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1non0l-0001i5-Bk for 55362@debbugs.gnu.org; Wed, 11 May 2022 10:08:19 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s2048; t=1652278093; bh=ibROFfwMYnjH5qabGnF8afKLhk/ZB26+hGf8Tc7DQcg=; h=From:To:Cc:Subject:References:Date:In-Reply-To:From:Subject:Reply-To; b=nbQDauQgzJUwpr2+U3knTjGQVD8By2arO2LzoTYO6qHm61hQH1TxIgPI5Sw3pHVeYrOzL7ulg8Lq1Vz5Sy6e1e5EyVOSOU03fBAj9coHl+g81g6vEAI9Q8DMgsQJ4EjTOrXcsToG+BV3DOrwd0BGCa+S+WePKPE1Jh9CIVXX4HtbdvvPnSEk3hHRBm7mhiEPZDMB4f8I1WIRcd7+DmI7Zqo5uxDAJYt+l8uroufjIstRuEV/McgCskWlOuG7bwIEnTxYYhD9jd2llDPMEJyuzL1dmc/7T0PEPsWiXjwqIpVmE1rmEUDoXcgbjbaFE3Rm0cEt6QTxYTHm/GtPQQvT+g== X-SONIC-DKIM-SIGN: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s2048; t=1652278093; bh=ynwm/V0M92u+OitUS6s9Cni4Qafl+dwReOCPUGikH8I=; h=X-Sonic-MF:From:To:Subject:Date:From:Subject; b=lOdvF58lLBNmnpxDOVSk87GvadGq5vOdNvpnrHxLpcH9ZkcyxPEYBBoNumWvwcFX+OfOl81WTo2upp7X7kKlCuORabIr0A4NmXNQdPECUWCJ4euxoGEwSxsnnSHJNBU5wDM4dK2ylw43YDwDCPadf9Ol2Hk+/+gHFFB8qpkOunHaORvrllIg7QNO9HgbddDzNfrsAZUtZlv0dW2rNhTZFqGV3w6olKNWle66QeCVe+ORisJUE3sM/6/L+5WQDZGrOYkgW7t/oDMwcaQxcMkZQbm3KdBUZHbKicLigRuvNnrpLPKkJOBO94Xj/WeKu77TkskkMSv4ESXrEQEhi/g58A== X-YMail-OSG: 6vUBY5gVM1m3z_RI6vGeXm58qE83qAkRzeXbCGSY6MiMnPPPtTirWDfTw0OONS1 JGW9Utmu_k9aY51Tki53.pUYrErrBVgGqydpR4osapgrmvug0BMEijQkTOcjNKJmlgZFKo8ZCu7c d73u2cnEwZyuksAxFrMBgdCX8H6ZJ8IApY8ojAJNammHnCHKM2DSFRmXuUzxewsGPDc8_tkNV9LG FUjIu1kFRzDsFftmgT5ySuWcj8uaalPXsWeAJSUCzJ4DB8b8jMCg.1uEtuK5jiB.ubJ0q7zSXb7_ s1N2FX_KEdOvNLsB8i4NAhGB9TCsscM0qst9o78pz3.DFBvWGcpWQohM8RAa8gGGeiCfz.IVsb8M vquzRjiJR_7mdFT5bOz7eW.HS36sV1B3NWRU2NwOOlKtyoB8tytn6zrmOvEHd3CtKRwH9QZBWiwC lKsHcp54OWiI9D5a4cbdzSNg5R9bg4UDd0r2uDQIal6nI9LGt2DeTVMDMk1kgdz1bkRZgPYZsmqx O70AIQlai55KCMJqjjMgMjZmfB213jE9yE4B28vK9BSlpYBnCRIL2LIP1ajs5zgOFW31TnYNOgPW TUzUfKtfKJ7FYVO.l.PBrenkuXhv_ckhjpApB.UsXLeGXIFPG6AbrOMT7yFekkU.KaLC9KK4WpC5 4mhqYfVhrCARjZgfkz1om_x0DN3soGzlzxxI38RpIpSSbKM6j7XYpiFi0FKOJbur3n.FDTWi6pDE 5Pcrxa_exDl5CNL9Lx7i8rNSDnXJeOuy27s93w0E1IXJYh7z1ijOEWAENj3W3Fuzojsz4YGAU3Oh whkRDA0xmgQahvSkx9qLFVoiTIxcWaQ4NAdWASUu5CWJMXZjIjAQtGzg.i7QprdUghk.GWa1y0G7 lDTIOO2D0XzsqoEejv7xE5zmUTZiZwB5fvoh9r6xuNRyIIGoeexSowXXG7xTH3gKKPjqfhTCgzq0 jh40wxnRvcPapQwK68akjVVIER_nqVKTi2rlsxb72X5lVI1XxhMitxh7CVWKUdAloQ4.nP3xHeYt nsIDKBYtXTeT53O4Nb2lBvi_U48pSzKz.ihLT8hwjWy3o4QTt0AZ2.ifg4k7UZZD6qJ91Wyl6lsO a.yn_cJPffc3Df5r_6G5zga4LWvK28npNsqB9U_6KhMrQbGKthJiW2UlgT4py1QRL.7gtG82Sevt NqVCeKuyAnjNfqhRe7x4a5w1M01pWcrdBGdC0C9cgwNiwJ.xSzOV7eS_FUgbXsKzmOfCe7N0EqWx vkmr7a_ZhhbPR0W7Di4.silvOrjut9alvB4eCK2mfXn4hDhfZ2g4jGBM4OVr7NqeUvLLPg0X2vmp t30Z4CmsenK28yLlIuNb1luqCIoYyPyehqjqQLSAi9cUCA.ReHl3XlwNuFETg3tsZMMPEqsgOS_X cPTa01CzPrOEHJrx.2bqSPPy9Dub5Wf6br9IbKxRTC0uZoF4RZOARwLTctEvWvmQWVBO62bTckvq .LAwzAiyqNj4gUh1fMjN53.R33cji4AlLPjhGY93A1EcnTnkOlFFmigq9hErkctalHu7W.GSCTZg NAm9BHxPj.Tta_EhzxL8.sf_sWjJXcZS3F9zAzYjwzRqqeSPfIz325bRvhHOHaKl6mG_cnZFqxca db32zHIAIf1mH991IncTnoFWr_ELzE6LQFglfbiuK0815A9RNO7tj2nJJlM4OA8byB6rhNZVXCEH Y4qeqbFIdNygcmAUQJ.W9mrrbm9ZeCcY0ZDZbyvRRSOdhObcOVzf7nEh5ZNNoq1uXWEWBnWvYzoG tPv6pSXsOw4NdePJqEB69ad01ISdkqUC3BtW_lzI7Dg3LrpoonEBWfhmJamZUGynoP0jO4qLd2y2 VPY5aWqbd1Jn.nJTkEOta.BO8pJrjcr4VuVzdFb3mS2HEscmXH2.d95OY_cwdm8dTATBF5_roinc GccOkZ5pcWckqgE5sB5NIYGrZvM1qyKFE8XFwwALhgIL_uj3hhSGDx2vRKp5LVAPCnkrnVJVbEG_ 21WlDS1WvMxf1CsA7sigTy45CWVD4nnXmvj6M51N4yPd.f7AaGAS6_U9bhnC9MOWhUz8DvjGkBM0 ss23XF3zE2XGeTvFnnd6ba6zbVbTv9XVeeKxg_kuKevwdhCv1GJCefRM88UTDSlsj5M8nNVVTg_i FzjDfu9ljL0_mv0I8jXrcY_KbOSMPjikYooBlw5XVN9VXAiNmOYD9Cgv58ckv2UxZUCyhz3xM03z 1g3zcvMWEJjTguCVJrVOFSXgkz9STB7Zy8S5FSaISLFZvsn2CCmC5T5fhTbW.2nps X-Sonic-MF: Received: from sonic.gate.mail.ne1.yahoo.com by sonic309.consmr.mail.ne1.yahoo.com with HTTP; Wed, 11 May 2022 14:08:13 +0000 Received: by hermes--canary-production-sg3-856bf69955-fc9ln (Yahoo Inc. Hermes SMTP Server) with ESMTPA ID eae2204abaa3a912f843d5634697b852; Wed, 11 May 2022 14:08:08 +0000 (UTC) From: Po Lu To: Eli Zaretskii Subject: Re: bug#55362: 29.0.50; Super key no longer works on Wayland References: <871qx08k43.fsf@schnouki.net> <87y1z8z16o.fsf@yahoo.com> <87zgjo8bl2.fsf@gnus.org> <83sfpgqk4t.fsf@gnu.org> Date: Wed, 11 May 2022 22:08:03 +0800 In-Reply-To: <83sfpgqk4t.fsf@gnu.org> (Eli Zaretskii's message of "Wed, 11 May 2022 16:22:26 +0300") Message-ID: <87pmkkyxfg.fsf@yahoo.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.91 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Mailer: WebService/1.1.20188 mail.backend.jedi.jws.acl:role.jedi.acl.token.atz.jws.hermes.yahoo Content-Length: 489 X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 55362 Cc: Lars Ingebrigtsen , schnouki@schnouki.net, 55362@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 (-) Eli Zaretskii writes: > I agree. At the very least, how about a knob, by default off, to > restore the previous behavior; we could then have that in PROBLEMS. If we do that, then in my experience this bug will never be fixed in GTK, and we will be stuck maintaining this awful hack until the end of time. It's okay to add such a knob assuming the GTK bug still isn't fixed approaching the release of Emacs 29, but not now, when that release is still several years away. From debbugs-submit-bounces@debbugs.gnu.org Wed May 11 10:09:34 2022 Received: (at 55362) by debbugs.gnu.org; 11 May 2022 14:09:34 +0000 Received: from localhost ([127.0.0.1]:37979 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1non1x-0001ke-RB for submit@debbugs.gnu.org; Wed, 11 May 2022 10:09:34 -0400 Received: from sonic316-20.consmr.mail.ne1.yahoo.com ([66.163.187.146]:35161) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1non1w-0001kP-5q for 55362@debbugs.gnu.org; Wed, 11 May 2022 10:09:32 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s2048; t=1652278166; bh=4ShTkvXr82/xBBtuXszU6U48b66g/rTZSHiRm1oTpb0=; h=From:To:Cc:Subject:References:Date:In-Reply-To:From:Subject:Reply-To; b=hE5M0rwCf+c6DAgFgBD1ZsCS26hTOR70nLqitybgcmggdNkXHHWBwhXMtPYzhM/g6sELMsEhvgTKBi3JJWWuIbeArgH30NFZ6xP87cFqJOZ20GXQuOWeUsiqmTyPKJQUiPE91b5/nrwp+QnrOCEi6q6I3fuEfWvDyXrsm4SlUtrysuQFmPBvVJ3vsqlk9zrw/QJ5hF9sADzFWSPVmNb1VCoKtVnb+fCnMXRnca/YF+UQc6cNaQrii4uGhgvezd3N4f8VVsM/+jPCF+evzoo0cFfIz1EOEbhAgEt7CHMJWbH+2KDl6v1NF0NaOy0l+byUnhFSJM1SKMom2Q8TbxPemg== X-SONIC-DKIM-SIGN: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s2048; t=1652278166; bh=Ln/4QiktbrQAS+m3tGYMmZyz7ifeEfPpp3tVSdRthBt=; h=X-Sonic-MF:From:To:Subject:Date:From:Subject; b=NsYpZ9+kVr/eyj42yrccpCP3IeWURI9AMInB824bIhPprwuVEwtQmVkcAVvRV2LenYwi7V0fTeL8pC9hPWNyBh4wscYRHDmQ2sKENfeY+hsmL60BDlmVKT9pyLmTJN4QpwZilcuetPMEMqY8g9MRDj6XtrW0zN3CbJoEvNIaXcVwqv/xDlBcCwFyBuqKAsxssfhNhVgjAMxO8Kw0vi/OJ7/dqyGgvl/zD0x+lHIBufRkc0F/b04njpzo9qyUEktCY6br/QnFdj5uGLZCdKUZt7bETDgkOMZ37XyrRmg011dudkcMxhZ2BRUg/stXPeW4GCD63/pswUMBCgdrBM/EuQ== X-YMail-OSG: 04Yu2.0VM1mQZSrHJVfe5z.a1omEvUj87J6WnA1Iur_n2_hy_Sx5Z6yXNMWYrJC 46DRtT8j_m.ALdPLuLmP7OCXfftUenV0MRgkcII_oqlhyDX12jtg8fPRBkauIcfwsxdTIUiRtpPU mYR_9ycRFTYd2QvVmxq2gNoc.he8x56ryDSjHGWjDwEsb3Ip2AW5olzaXwt0gC9Bj2vem6egOIFA RCTpr_q8IlykDo37GWk4zkGT8J_V2GLbfVVcK41YPflGx430n1X.AKWFYXaBxWPxuRy8Y9FG.s8T azaRAm3oWNkTLszUW1hotB5UcQBnd_4e9j.tThNleFNfhSUI4JzpPCwNSpnSrWgB3maYqcBb1wap 5zcGljowwFQPvohcjQ_ATgVjE0saUaTotE2D9VzIVfOQaQX12cCbMAs35q5yMZBwnJyO4s1Ii9Hy fW7wCmO1DMGnphmaC3Hqx2YCCs1NG2v54h5fWNrqWptoN0jgAFCN2p9UYD5CLpawDylU60W1iiAx o8JfPwc_lLCic5.xFRMY55ZEbh3eV_Y8SbHh.0uK3lTQmoKU0I1kB791KhkJlkRxS9ocCCA5rCSt PaQ66aBD.U9v2RnZhuhE30mArmNdCtosl.FitycmnDiCUDF3b0mp90UGLbNaxuJLZPUD890K3rqB 4ULckNHWJ2k1SHNjYSlBufgKGkS2EcDuPvEw2rGHdr.WZkvLQGx_sDuKwBo75r7Hyx2ECxhqJKiB Lzw8WeFkJ6rzHB.C1DI1qCcwugAVwFhJgDDXTPT2LUU17abEd8emJ8I2dW4MIAqbMzksayke4BzD i0IX7vg4H3Ya1aRfH70J1QyZMEoBFpULQ9owJPw0fxBKdIyPFKtaLGHGjh63xpB.33onbwYtoEaG uY8Dvn2RnLcsYbiC1b6MP75iLp2_HdTMAmb1Z.HJv5oqLS6b68n0qo.ygvhSLedjLE6ykHRLubTw Tf70o_f7sao4e9OS3FkeQ_tKttIrXAqaidmwSawsE8PlY4WwrOPdzbqmR.jMVnEtUbwTqxYQixsZ B5B6w2kkmMN32FvCKivJcbzCizuDQInsPLiOsYM0GEvCQPn_jF76UkdV41tFTuQb9w2SmYM.LCUF 6XVNQMoa_kXOpAjnB.8Yqp_szY4yKEW0gf6Iz3.ohjTjuKG0CFKdKzLfLixzrJ9I6.cntZ6VXsol Q06NAeKbi0bVs9jr0G2ZdHKHJ667BVoc_KUO01fvBYKP1qVqrkkpnp3ecOuaI2_C6bWSvABhFck8 KISlPmXH.iEJstUjaqdn_HAClKcrq1i4362fezY4Eb5rIMXueWdFGFOhs9N3lEzEe_EReAe8SODX ZEReCotKG.DJYx2HxLxiXvo_vNcEIzJa3cmk7txNQpficW6Q_6K0PO8KdIkSQ4oRLrKAu1znG18b G.h5ESvmCN9viFe8GzGJwqHLOCy_Vi7PdV5WoNYbUzRDJhFyCl.QFI_HWV2LpLQ3AueZvcYGTG7L O.a3kyFEfOYdCvUpzOIyx0HFeQwIMxljAEuMK7GArRLSdQvnAu5uf_KPyt_UmFqJ7P0tl2Ch50FX l4AKA.tgDHw1Mi_GdSz8d6dS6.QQ5I4e0QSfgHHV1KousFFUfh8Z5EWRedw4edUzv2oKW.PL98Jj n8bvZ5k3fx9qx2m4JhnUzJAOPZweAVz9NbqQUHcwQt0JrozNZusMcuNRL3ODz2B2xfrY9vG99H.i _P81RMGIR3dc2wLEZ_jyxHZt6UaR8abPjrWJRkU_aOYYqCM21oqvF0RFocL9tkKSg9KXNJSiutaU rBYaHgtlLv3NtwZEAGfKD7lLrTryovDG4haEn6QhqDVYepVWHysk5h6.VHAckB7BkDAhmXuRYwEB 6jj0SALB7.xO0ex5XZrY4UMsLM0og3fgSbGRv5oPeCA6Kmf90AG1ZXeQAL1B9RygVGfatP2j81z5 EMzQcBSD9f0um4xOj_bg5T0qivgHbyQSth4CIzXYg5M_YXUJq9aWdOZCsUwHhDgor0np7nx0MJmW zeMttfvURPO3QJYzb3pqndu.nmX46J6tQNv30GupcARROw4bkHnn74ip48at2Wsom16YiZCiNWco .tXhrBjU8TJmIYz.Aj9Zb9LMFOW4tmiH6w7CqNF5N71LLY4D0h6y05XvHHOhGijPQVXOJW69TCXA C0V3QYYZcSeB4BGBAEp5e14STv1nR4DVnpY.bl3yI5LIlnMiyyiwBxNdPx5sYV2eQV.cc3DBPyQO MGgY5nWrzVOSdgjN3.F4bTK4FJsrNb7P9p9YKwuSjfbs9jIRfGESe.LtHO7Tvbb8- X-Sonic-MF: Received: from sonic.gate.mail.ne1.yahoo.com by sonic316.consmr.mail.ne1.yahoo.com with HTTP; Wed, 11 May 2022 14:09:26 +0000 Received: by hermes--canary-production-sg3-856bf69955-wcgkh (Yahoo Inc. Hermes SMTP Server) with ESMTPA ID 2f3d552f955f701be298e942481b663b; Wed, 11 May 2022 14:09:20 +0000 (UTC) From: Po Lu To: Thomas Jost Subject: Re: bug#55362: 29.0.50; Super key no longer works on Wayland References: <871qx08k43.fsf@schnouki.net> <87y1z8z16o.fsf@yahoo.com> <87zgjo8bl2.fsf@gnus.org> <83sfpgqk4t.fsf@gnu.org> <875ymc6uos.fsf@schnouki.net> Date: Wed, 11 May 2022 22:09:09 +0800 In-Reply-To: <875ymc6uos.fsf@schnouki.net> (Thomas Jost's message of "Wed, 11 May 2022 15:54:43 +0200") Message-ID: <87lev8yxdm.fsf@yahoo.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.91 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Mailer: WebService/1.1.20188 mail.backend.jedi.jws.acl:role.jedi.acl.token.atz.jws.hermes.yahoo Content-Length: 325 X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 55362 Cc: Eli Zaretskii , Lars Ingebrigtsen , 55362@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 (-) Thomas Jost writes: > Not having such a knob would also prevent any user who is for some > reason stuck on an older version of Gtk to upgrade Emacs. Emacs 28 does not support PGTK, and we will not turn it on by default for future releases either, so there is no regression from the POV of the user. From debbugs-submit-bounces@debbugs.gnu.org Wed May 11 10:09:56 2022 Received: (at 55362) by debbugs.gnu.org; 11 May 2022 14:09:56 +0000 Received: from localhost ([127.0.0.1]:37983 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1non2K-0001lO-41 for submit@debbugs.gnu.org; Wed, 11 May 2022 10:09:56 -0400 Received: from sonic308-56.consmr.mail.ne1.yahoo.com ([66.163.187.31]:43197) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1non2I-0001l7-TN for 55362@debbugs.gnu.org; Wed, 11 May 2022 10:09:55 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s2048; t=1652278189; bh=9nd8+9ldCcFTmDL1OgHHSsKYmiER2P0xp1p8lXmN5Uw=; h=From:To:Cc:Subject:References:Date:In-Reply-To:From:Subject:Reply-To; b=Gb2PrtFBSvIUaibtiv2x4kxj1fRHLxLCCOlpXQBbjdna9xTmLhpiOEXpneB3cMTtFTje2CdCCOfBsAf4yPHSMoLEk9tUx/ivrAH8CebFIk/WatJu06PRcb1o3mxdTnUpZEvohhjJqMrPe7Ji18LZ1lK48h0vurIjllAvDOM35WSmpcGWOPU5BVMfOm9VedtiHNOy6Ohf/2JXtUACjeP1tymlsU1o6tw1pm+IU/lCtGlXvHXBsEVVh5FRm079E9i8jcJaQUwH3nNzku3TmS2sxh5L6cDFoNLow98pkwG/gYg11T4ZacblnrBXgCUIhGhCTkdllCtJrBMM6ZhcUOLy/Q== X-SONIC-DKIM-SIGN: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s2048; t=1652278189; bh=NY8q7QG2VIzgIiq09/RzphBRR61eZ5K7j9NwpZKD/y2=; h=X-Sonic-MF:From:To:Subject:Date:From:Subject; b=O4KuOEzUIUq7Mj+tbweMaMERhHFk6ixfuiyxR7+qtQLAywcAFfkDGf0XVx0XOJ8tDw3GF6yspBdN8V/3vaNUc4/H0VWWkGpXvhqi0OFd3V+JppM1rX25CXp+4qoq1nB7szbkvOqXEE4yVmcbbvPhrk+caj+LrwFqTlHgzUuSDIXWxVvoOty+Y1ygGh/y/jBkIjBmfjRe8DfFoyagjQqYl+i0q0b9WChNe3lWJgo16NQRlJWzKbwswxqSeHpsypTDLj378vyiSLC3bUu0t16HnHT58mnuUslRu6wsikPbUdnVYV9xmiLoac4EJ+pB5d+72giszsiFD6+MonUQXwcoAQ== X-YMail-OSG: jFsCSEgVM1mHF8.4i0vAALKxMjfJ7Kb8AvBCSz03jq_RGzsXa4OuRr.wwWoa9b4 C4_HtPIjNuafiaAj1Njvnxc90J5idTUaO4dI3ltP5ldwIX4pFaODOyUOfalUgIG8_npxU5tFO8S9 rrRMj5156S2O_qo0vQLssd7EnrG5uSGUAYpKHQ04fKY4Nmfrx6tzwZvsM8zeYZDuyGKOuYO4yyaO qMws3XRwtZokSmYkQCuA7Wc87ncZu5khmyjUEtOouyZ0_PELSf1NIVVa_YlZy8UKaF3b5R_inDP2 5Wo6dFqLHek7yB82DHAqiWF0RmtKtb7THnJ_Q9T.bGtVb_IiEJ68v10Cgs6G1TIKeaMpZ_AdzrIZ Go2J__tmvyjnLklUoz3GLPgBkUOoLlVF4ZjpFK_hV2fXeDp7xcE4tRQJ4OU_MhsRmvIptcdKKzBT ejTxzR5DGK5abDmzPBWa.q.aqHHUNgiMMsDuPL0_lb_KdBmBysfBqYPs4cKrBfowh0Tws0I4HQ1x 8NNwG94ptW018LbuGuoBAB8pMca6Dkke4qTEg8RbIAtTG4y9ll_kCKA1mX66.wVhfLjpMLiUIVwF p4xg5JSvKPFirmO0sDcLS53p2GeAf5KU3pIL1UcdeBTFT.tcqGl3_Pyb7xlfUG5yVkYUu6Ag6Ibx 51WRKl9uZQdHjmtwqy63oVapRR7.y91eoKQRNlq7OivDrU.1jewjGaJWWSxVkAThqnXFaRHuIJlP t_NC2KDxW.B9XywdVRHFDFw5XSE8aBtvzqosFJ53X_c7xcRnIB9NDTakZfv2H.Ay5GdAZJ_0HjYb p3W0QlA69zvdMyvdzru0h25M.hfoI_.r75DPkc21W.26UsiXO6ylttw2snODWRjpTOrzAiaGYNii ETT5ChEoFmI0sKr_mLxC2K.fbKntepQkwZDAUW0y990BOrc57dYJuscR60rOPwVvDA8chsEGzv81 DbP6Bey8AFPKKvv9O65i7l6Rls._3EQ._8eoMUxpPYbx8al5EVJnPFw5lXRKiNXfkrGfdx_ReNXt hSqassZhS_y4j.92fVc9Oaj97H62COvXll68RwD96ruxN_OWP22JFp_7bBFy7DqLkWMRfd8UaAy8 kSTYgbEdSTpd7fakRrSaWaBCkIwG.l_DhoaCqdfmUgzCO6eAqQXTOcnJQYK2a.SdR7op5AATUIsw fU3wdIl8K1piFc08iO4imRGfjeaHceqtEaSpwVeMbPSiTV9I8C4gMwexuXLfOdYcVQ14D81FZaeJ R0wv5.XWvGLro_BgOygsPhsyv_xUDLaluEW7D1cBes38ai1NUOaI_zoEjSZHWyuFt0GDzGZ93UQL yqaW4B5MhuJREWABghyjfmbAwuVWK2QlfoZROo79DEUHhNdn12LzvX.N79Hi7FRpkYboUNKBi5i. cBm7SOzhAYuYLRgdglrdFGWxkZxnz2QP6.kFlAJfSqkbeyRH70Jvg2x37QtW1lF2W3_ApcRppRqE lBjuIkMyKNUPQv.4h1pWHxm2rDdwHuaf_h6KGozo4nlclzY228gvm5TBgxp.Ooslf8tMtKBktOib R9EOCjolWnJhFL7Mv2g6MZFHeljZKqO_zNPZJ6kymgY8R3DOnENzt.lZtyfks21uO5WcIyztiPG6 BL6xn3W5diAluLOyVEyq__wwWEOfKm7i2S4gsvRNOVeb4J49_bNx86LfLRLI9eMex8RN5mNEfyy6 9jlRUG0Qmt3qvMhRvupS978ECuJjc4PBGi.qEdmTgAGwrqycgZgEGqWJBce4LhOPLYfMjLnIJYYU lfe6xmm4UcDgf5myWG_TOFZ3TwBsdISxoB2XQ4GxSC1LhmEc665boofMAQ5tL_0avH3dvxm4fLML OowJTtVKo78.FVbTV61kLhdDYtNeTjUoQLmygl6idBqFcPL3yqks.kRa.RHkZ7cVWN0wSyb60Jlk JacqfJEO.VFNjFwSzeYeA44KDdmbpEUEH9U.b9FMb8k0u1qXs2o.FsL8Rm3sr7e.z3rAYKZvGJPF lADLaLMaY_fuBm39uP0M8C2dIgWjSMkXfVfjzV_JNaPlmTHdakBBopRiSdM34pBlXqM7q7xPhDJ1 WpmjmfnoIfudTKONhqJ3sJ.hZDcu2ecb97pcLBFECyG7WhQf8xtHqEiFqs2d7ouY0l0WPYcGTM7E PwmeVC4N2GlXbKv5QKj5ISM4tDlWCxPD4_NVV1fJ92C5SWbNVdjE2wSYjkqlynPYSr2Iy38a8zsG u90vJ3kvESpb_jxo8umr3oRFvogrqCEgEFFNt5HbV8kMmHIu2GPklfXrEvV3Tvw-- X-Sonic-MF: Received: from sonic.gate.mail.ne1.yahoo.com by sonic308.consmr.mail.ne1.yahoo.com with HTTP; Wed, 11 May 2022 14:09:49 +0000 Received: by hermes--canary-production-sg3-856bf69955-nc7dv (Yahoo Inc. Hermes SMTP Server) with ESMTPA ID bb2eb6cf251974f9330452ca216b19bd; Wed, 11 May 2022 14:09:43 +0000 (UTC) From: Po Lu To: Thomas Jost Subject: Re: bug#55362: 29.0.50; Super key no longer works on Wayland References: <871qx08k43.fsf@schnouki.net> <87y1z8z16o.fsf@yahoo.com> <878rr86uu7.fsf@schnouki.net> Date: Wed, 11 May 2022 22:09:38 +0800 In-Reply-To: <878rr86uu7.fsf@schnouki.net> (Thomas Jost's message of "Wed, 11 May 2022 15:51:28 +0200") Message-ID: <87h75wyxct.fsf@yahoo.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.91 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Mailer: WebService/1.1.20188 mail.backend.jedi.jws.acl:role.jedi.acl.token.atz.jws.hermes.yahoo Content-Length: 196 X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 55362 Cc: 55362@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 (-) Thomas Jost writes: > Reported it to GTK developers here: > https://gitlab.gnome.org/GNOME/gtk/-/issues/4913 (which links back to > this bug). Thanks! Fantastic, thanks! From debbugs-submit-bounces@debbugs.gnu.org Wed May 11 10:14:40 2022 Received: (at 55362) by debbugs.gnu.org; 11 May 2022 14:14:40 +0000 Received: from localhost ([127.0.0.1]:38011 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1non6u-0001vl-Jk for submit@debbugs.gnu.org; Wed, 11 May 2022 10:14:40 -0400 Received: from quimby.gnus.org ([95.216.78.240]:41982) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1non6t-0001vS-60 for 55362@debbugs.gnu.org; Wed, 11 May 2022 10:14:39 -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=CVDnI6M9Md1PrSGA9RA4wxfW0CbiVGedFTq+kHvfFH4=; b=angkGkgszKWgMec9I48+0BbRbN mwmZjvpzBa+THviqM2Q87CrJu1H1Q6aK1OMVPF7gkbWVoQnnfFyx/QUvY6mJ8Y+kn+u5QApnRF4m9 mz8BaDqsZOjxC4T3E4xatuVUjPdicGD1q1Swj38DAmPapwdGCNWr4IX1o+NeK+mIZxgk=; 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 1non6k-0000aG-4C; Wed, 11 May 2022 16:14:32 +0200 From: Lars Ingebrigtsen To: Po Lu Subject: Re: bug#55362: 29.0.50; Super key no longer works on Wayland References: <871qx08k43.fsf@schnouki.net> <87y1z8z16o.fsf@yahoo.com> <87zgjo8bl2.fsf@gnus.org> <83sfpgqk4t.fsf@gnu.org> <87pmkkyxfg.fsf@yahoo.com> Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAABGdBTUEAALGPC/xhBQAAACBj SFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAD1BMVEVGTVIlKCyQiW/L wKv///8ixzLPAAAAAWJLR0QEj2jZUQAAAAd0SU1FB+YFCw4NCzvK0IEAAAGJSURBVDjLdZMNcsQg CIWBvQBuL0DwAqnc/259aDRm2zqTmQyfPH4l2k4pSlzGoSdY9hto/hYqnfDuwQpKysRE/CGVPjPK skj19BmhNiARLe+m2ANEhHuDHaYJRMJe0bxGWF7XBeppXmGOOFcZZcjQKWlHmA/Q6N2BJ7ilYDle F6CnR7QL2CxjgqgugexsNOoCmVBzRyEdbN1NYoD1/Gx7zPMBrE7AmSxNoKe4IQTEjOGSX8mhiCF/ emUGpnpLFREA/gJozrTFEOQJR/gc9byDF+3VAkglWW3su+SGvXm32lSCR8KYmELJyQpmxSj1KBMg Uxcx8KNgI2ZTSI2QE0BPHM42Ng4bqAt01cwLo0cMFwAuA1T3q+2KGkYZBC+fWj1GMvzJqSQbgIRI loOqM5j4BTQBdN/1u3AfwtUSzaAJusa21MmsZ2d6zWH1SvMhrS1fAA3kvHt1aQOShCe42z4CLYtu QIf/MOktNddSf3k8zr+g/AlUeQfrUazyBsj9mbvBewyhNbbs3AA/OsBLxOe6uZoAAAAldEVYdGRh dGU6Y3JlYXRlADIwMjItMDUtMTFUMTQ6MTM6MTErMDA6MDAoWpwTAAAAJXRFWHRkYXRlOm1vZGlm eQAyMDIyLTA1LTExVDE0OjEzOjExKzAwOjAwWQckrwAAAABJRU5ErkJggg== X-Now-Playing: Joni Mitchell's _Both Sides Now_: "Sometimes I'm Happy" Date: Wed, 11 May 2022 16:14:29 +0200 In-Reply-To: <87pmkkyxfg.fsf@yahoo.com> (Po Lu's message of "Wed, 11 May 2022 22:08:03 +0800") Message-ID: <8735hg88ca.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: Po Lu writes: > It's okay to add such a knob assuming the GTK bug still isn't fixed > approaching the release of Emacs 29, but not now, when that release is > still several years away. 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: 55362 Cc: Eli Zaretskii , schnouki@schnouki.net, 55362@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 (---) Po Lu writes: > It's okay to add such a knob assuming the GTK bug still isn't fixed > approaching the release of Emacs 29, but not now, when that release is > still several years away. The release of Emacs 29 isn't several years away, I think. :-) But people are using Emacs 29 now, and are running into this problem, so I think it should be fixed (one way or another) now. (We've had many bug reports about it already.) -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Wed May 11 10:25:32 2022 Received: (at 55362) by debbugs.gnu.org; 11 May 2022 14:25:32 +0000 Received: from localhost ([127.0.0.1]:38045 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nonHQ-0004Pm-9h for submit@debbugs.gnu.org; Wed, 11 May 2022 10:25:32 -0400 Received: from eggs.gnu.org ([209.51.188.92]:50450) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nonHO-0004PY-DZ for 55362@debbugs.gnu.org; Wed, 11 May 2022 10:25:31 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:41882) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nonHI-0006Oh-Mn; Wed, 11 May 2022 10:25:24 -0400 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=4C8HUX2jNBkoQEwtD86WZHXuXS9h5nheFvtTlkxn2FE=; b=aTNZyJpPDMuf ZPIuXETSq6IlkV4WO0qc9cukbSe/43bKG/IoRuQfFu1f2HKiW69Ta78oSoVWWars15m2QC6s6IbDl q2IqiHbruj+mVJhaIUdY9JhJz6RwtR6lpAV33hLNisO4n+4lQAEtdOeQQW4zL5Zyl07aDlH/i+2hC StyDTN0NpMF7fqXODb5D6IBQD3fKidK74eO+FgS16HHvDuT7gQpces0s5bq8PoazFUlNSDmnGQPLS dvZnQrOyQTznsdfYSKRPWayakE/qAFnv9YDbf6YgpGFGfi8JItSptBNYvScPTonaa7bV5IpzvnTNO Ik8fLcdtm7RCASmoeVg1+w==; Received: from [87.69.77.57] (port=4869 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nonH2-0001Zo-L9; Wed, 11 May 2022 10:25:22 -0400 Date: Wed, 11 May 2022 17:25:09 +0300 Message-Id: <83o804qh8a.fsf@gnu.org> From: Eli Zaretskii To: Po Lu In-Reply-To: <87pmkkyxfg.fsf@yahoo.com> (message from Po Lu on Wed, 11 May 2022 22:08:03 +0800) Subject: Re: bug#55362: 29.0.50; Super key no longer works on Wayland References: <871qx08k43.fsf@schnouki.net> <87y1z8z16o.fsf@yahoo.com> <87zgjo8bl2.fsf@gnus.org> <83sfpgqk4t.fsf@gnu.org> <87pmkkyxfg.fsf@yahoo.com> X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 55362 Cc: larsi@gnus.org, schnouki@schnouki.net, 55362@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 (---) > From: Po Lu > Cc: Lars Ingebrigtsen , schnouki@schnouki.net, > 55362@debbugs.gnu.org > Date: Wed, 11 May 2022 22:08:03 +0800 > > Eli Zaretskii writes: > > > I agree. At the very least, how about a knob, by default off, to > > restore the previous behavior; we could then have that in PROBLEMS. > > If we do that, then in my experience this bug will never be fixed in > GTK, and we will be stuck maintaining this awful hack until the end of > time. IMO, we should think about our users first. Besides, there's no guarantee whatsoever that the bug will be fix if we don't work around it. > It's okay to add such a knob assuming the GTK bug still isn't fixed > approaching the release of Emacs 29, but not now, when that release is > still several years away. I think this is a mistake. We cause a disadvantage to our users now because we believe the GTK developers will fix this later. There's no reason for that hope based on our past experience. And if you believe GTK developers pay such attention to what we do or don't do, why not assume that they will read this discussion and say "okay, those Emacs guys can solve this themselves if they want to"? From debbugs-submit-bounces@debbugs.gnu.org Wed May 11 10:26:38 2022 Received: (at 55362) by debbugs.gnu.org; 11 May 2022 14:26:38 +0000 Received: from localhost ([127.0.0.1]:38053 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nonIU-0004S7-LZ for submit@debbugs.gnu.org; Wed, 11 May 2022 10:26:38 -0400 Received: from eggs.gnu.org ([209.51.188.92]:50752) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nonIS-0004Ro-Nl for 55362@debbugs.gnu.org; Wed, 11 May 2022 10:26:37 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:41906) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nonIN-0006aw-Ga; Wed, 11 May 2022 10:26:31 -0400 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=5VGENYF2VV2pemMc28bKxj7GDSFpEpYXdrXT9ELfOg0=; b=bOCqn4/xh2nG 55OXce5U5+1mlB+pq+00H36nOaBB8S0Bj9ZyuNS33VWqnhjjz9YynYZ/J5R5kv3il3aEfPHePhXHM 7KtyPn8SnwqGUiOOs4tfvDHYN896otb4OnxpZXH13Nq8gAypGId3zgakAz07U4PU7+YlgE2CtiZkK 3oca1sWY2kH6ZWdAv3OArgrSaiteERtH3t7WKjTfnlDpmkIZefTLQj2ZsGOtw6xC3T3ha70mvkqDM V/2vFc/lQAHMA3U1R9SYxtUPhJZBv55eAVv7312fLJ9uI/6IYoIFUis4yOIzq/bHbrlqyzwomyEx8 le4WRPJ4c6bFHoWWHE/CFg==; Received: from [87.69.77.57] (port=4953 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nonIN-00020z-0J; Wed, 11 May 2022 10:26:31 -0400 Date: Wed, 11 May 2022 17:26:32 +0300 Message-Id: <83mtfoqh5z.fsf@gnu.org> From: Eli Zaretskii To: Lars Ingebrigtsen In-Reply-To: <8735hg88ca.fsf@gnus.org> (message from Lars Ingebrigtsen on Wed, 11 May 2022 16:14:29 +0200) Subject: Re: bug#55362: 29.0.50; Super key no longer works on Wayland References: <871qx08k43.fsf@schnouki.net> <87y1z8z16o.fsf@yahoo.com> <87zgjo8bl2.fsf@gnus.org> <83sfpgqk4t.fsf@gnu.org> <87pmkkyxfg.fsf@yahoo.com> <8735hg88ca.fsf@gnus.org> X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 55362 Cc: luangruo@yahoo.com, schnouki@schnouki.net, 55362@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 (---) > From: Lars Ingebrigtsen > Cc: Eli Zaretskii , schnouki@schnouki.net, > 55362@debbugs.gnu.org > Date: Wed, 11 May 2022 16:14:29 +0200 > > Po Lu writes: > > > It's okay to add such a knob assuming the GTK bug still isn't fixed > > approaching the release of Emacs 29, but not now, when that release is > > still several years away. > > The release of Emacs 29 isn't several years away, I think. :-) Not just that: when we get closer to a release, we generally don't want significant changes. From debbugs-submit-bounces@debbugs.gnu.org Wed May 11 12:23:04 2022 Received: (at 55362) by debbugs.gnu.org; 11 May 2022 16:23:04 +0000 Received: from localhost ([127.0.0.1]:38256 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nop7A-0008OV-4b for submit@debbugs.gnu.org; Wed, 11 May 2022 12:23:04 -0400 Received: from mail-wr1-f54.google.com ([209.85.221.54]:35435) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nop79-0008Nm-39 for 55362@debbugs.gnu.org; Wed, 11 May 2022 12:23:03 -0400 Received: by mail-wr1-f54.google.com with SMTP id h16so3044430wrb.2 for <55362@debbugs.gnu.org>; Wed, 11 May 2022 09:23:03 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=sender:message-id:date:mime-version:user-agent:subject :content-language:to:cc:references:from:in-reply-to :content-transfer-encoding; bh=RfgSFwuRrmJPwOnPO+NrVrdhCycUI3vEopGVx8EtUBE=; b=QZQgFX5e/1ZelRv6sbLLUQ/V1zw0vd6PzfxV17U/d5EaB5kJXiq6pFu0hbF12fcuTG Cs/P055E0WF/aV0Un7VSYZXFz7AmkJTz8ba+d+JsOdZ0RT7QJPlGmPRZq0hb+oF+5ZVj kNkAhVdIMkPkcZyHyDnu4NV6FHWSA0Vm7cnCCflBlPoVBfFkO1fCTU5JE4cDpNlpYEnb T5i8ATYXoMrkg7yFQLyqBfmJROqGqT+iNHtkyI5sz5l2K5HJz4ychzfCIUuUzSA/wzkI Ufq4JKggiGinoX6o+satyclXYNHwWdlcjp1zOCSLwICdGIx3sXTX1iUREKOkm8/A1lZd nNfA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:sender:message-id:date:mime-version:user-agent :subject:content-language:to:cc:references:from:in-reply-to :content-transfer-encoding; bh=RfgSFwuRrmJPwOnPO+NrVrdhCycUI3vEopGVx8EtUBE=; b=F5FrS1kYN/dxqSLoj3Ch02ZdR2UbELIPHOSMxacahXx+dp9SI1Z2PBvceKLWaXsLK9 yHfnxdsHVvaWt/nrYrVaWUOwwpwAHTEpz4XpyUMPuKSfzxHdEo+eQtA85z+yIvECnfhT JEhqV09vYi8/ZaqbhrohrMbU5rMKD67VlG9Q26xlgXxy8HRECXaIsbRmOvUMPpG4LsfU 2qF0hdXGfWvldJJtoyOlz1z3/463ve3Dg57wauId9wgtYof3WZARj/fy7DpvsgkXCzgd vIafXEs/46o23BIBcYTeZqrgQp841MFvEsMRdtp3XoIPzPranBzdyhoM7zy5ffevZLJU e6kA== X-Gm-Message-State: AOAM533aCs/qw5j3btvAff+fNuY9p/MnSFRZfnUCj6TgB5jhVKbY/XcR WiD0YvZ/7vvCCWGnDlNk3Vw= X-Google-Smtp-Source: ABdhPJxllY59SHgDDFOoHER7FO0daH7evjA8Nk+VRgLrZkCRhK11R+g+kzJMp50gkoLNbgPDdnEvuA== X-Received: by 2002:adf:f2cc:0:b0:20a:cfbb:ac29 with SMTP id d12-20020adff2cc000000b0020acfbbac29mr23370942wrp.263.1652286177217; Wed, 11 May 2022 09:22:57 -0700 (PDT) Received: from [192.168.0.6] ([46.251.119.176]) by smtp.googlemail.com with ESMTPSA id z1-20020a05600c220100b003942a244f53sm157592wml.44.2022.05.11.09.22.55 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Wed, 11 May 2022 09:22:56 -0700 (PDT) Message-ID: Date: Wed, 11 May 2022 19:22:54 +0300 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.7.0 Subject: Re: bug#55362: 29.0.50; Super key no longer works on Wayland Content-Language: en-US To: Po Lu , Eli Zaretskii References: <871qx08k43.fsf@schnouki.net> <87y1z8z16o.fsf@yahoo.com> <87zgjo8bl2.fsf@gnus.org> <83sfpgqk4t.fsf@gnu.org> <87pmkkyxfg.fsf@yahoo.com> From: Dmitry Gutov In-Reply-To: <87pmkkyxfg.fsf@yahoo.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Score: 0.5 (/) X-Debbugs-Envelope-To: 55362 Cc: Lars Ingebrigtsen , schnouki@schnouki.net, 55362@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: -0.5 (/) On 11.05.2022 17:08, Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors wrote: > Eli Zaretskii writes: > >> I agree. At the very least, how about a knob, by default off, to >> restore the previous behavior; we could then have that in PROBLEMS. > If we do that, then in my experience this bug will never be fixed in > GTK, and we will be stuck maintaining this awful hack until the end of > time. Does Emacs's behavior/bugs/etc ever affect GTK devs' choices? Doesn't seem to be the case so far. From debbugs-submit-bounces@debbugs.gnu.org Sun May 22 12:28:41 2022 Received: (at control) by debbugs.gnu.org; 22 May 2022 16:28:41 +0000 Received: from localhost ([127.0.0.1]:46195 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nsoRd-0002pn-Ju for submit@debbugs.gnu.org; Sun, 22 May 2022 12:28:41 -0400 Received: from quimby.gnus.org ([95.216.78.240]:41954) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nsoRc-0002pU-7R for control@debbugs.gnu.org; Sun, 22 May 2022 12:28:40 -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=Le7iqyk5ZqVX1gliRgIE4kLedm0brBqF4zASyqFsuVs=; b=aTXZ/tAxlmaCOqL4+n45t2ICeT 2qAT6kimufameNqQP1GJE97LFo77KmlLjZu7FDWG5TzSD8tvKxDGqlNv0Pvr8HhnRo2d2ZMV/NcPh Jldd4A9N1qdjN67ebXX5UhD2EEi+3Oaqnx6qnJWBkOI7eN+H8Z/0UuhRgDFrbIjLSpiM=; 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 1nsoRU-0008Kh-6q for control@debbugs.gnu.org; Sun, 22 May 2022 18:28:34 +0200 Date: Sun, 22 May 2022 18:28:31 +0200 Message-Id: <87k0adttu8.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #53200 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: forcemerge 53200 55362 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 (---) forcemerge 53200 55362 quit From debbugs-submit-bounces@debbugs.gnu.org Fri May 27 01:54:14 2022 Received: (at control) by debbugs.gnu.org; 27 May 2022 05:54:14 +0000 Received: from localhost ([127.0.0.1]:60663 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nuSvN-0002dC-K3 for submit@debbugs.gnu.org; Fri, 27 May 2022 01:54:13 -0400 Received: from eggs.gnu.org ([209.51.188.92]:37758) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nuSvI-0002cq-T3; Fri, 27 May 2022 01:54:12 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:52348) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nuSvD-0001To-7p; Fri, 27 May 2022 01:54:03 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-version:References:Subject:In-Reply-To:To:From: Date; bh=lRdbcGkMZb0C+/Me1yFueLJL9WyurubEGjJriX0dO1w=; b=sRrVHbP/W8qWxWKUA/u2 wDzejtem0RcTvb1/HHuZ1ZmFGNxNi0tUdDiir2gIGDMqPZeDW2Qq8jfX/rcqxvAHeEv+cbPool17K 45GVFJThNL/APLsYii5+goqUccsdaWu2Di6AG8LexNA+BYhVnoHZ/+QtythERu5zC/9FH+Z8Ox2y5 ZXWajKF0jc8yRJAAfGYVrc0qX0R6UyueE1plqZOMSPXG5m+llZgU6+bNMtPGDgI74EGxkad5+c314 Gx12po9vhJmVr5vA2bTQJT9HKTLiPwkFNsgS03hTmoaHGLGFA9AZP/4Lq/dMDm7GAfVfR7QA4LEu8 S828Y92ikil5Ew==; Received: from [87.69.77.57] (port=3605 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nuSvC-0007Op-G9; Fri, 27 May 2022 01:54:03 -0400 Date: Fri, 27 May 2022 08:53:57 +0300 Message-Id: <83ee0fo70q.fsf@gnu.org> From: Eli Zaretskii To: Po Lu In-Reply-To: <87v8trivlc.fsf@yahoo.com> (bug-gnu-emacs@gnu.org) Subject: Re: bug#55660: 29.0.50; PGTK degrades to terminal-compatible keyboard events References: <87bkvktkva.fsf@priss.frightenedpiglet.com> <87zgj3j07s.fsf@yahoo.com> <87mtf3dbga.fsf@priss.frightenedpiglet.com> <87v8trivlc.fsf@yahoo.com> MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: control Cc: 55660@debbugs.gnu.org, derek_upham@mailfence.com 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 (---) merge 55660 53200 thanks > Cc: 55660@debbugs.gnu.org > Date: Fri, 27 May 2022 09:59:43 +0800 > From: Po Lu via "Bug reports for GNU Emacs, > the Swiss army knife of text editors" > > Derek Upham writes: > > > Calling that function restores normal rich events. > > > > I’m using Ubuntu 20.04. The distro installs ibus-gtk3 as part of the > > normal desktop experience, but I haven’t configured it. “im-config” > > reports that it’s using the default en_US locale. > > Then this is a duplicate of bug#53200 (and many other similar issues). > Would someone please merge the two? Done (and anyone can easily do that). Should this issue be in PROBLEMS? From debbugs-submit-bounces@debbugs.gnu.org Wed Jul 20 07:15:56 2022 Received: (at control) by debbugs.gnu.org; 20 Jul 2022 11:15:56 +0000 Received: from localhost ([127.0.0.1]:55992 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oE7gK-0003b8-4A for submit@debbugs.gnu.org; Wed, 20 Jul 2022 07:15:56 -0400 Received: from sonic312-23.consmr.mail.ne1.yahoo.com ([66.163.191.204]:45598) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oE7gJ-0003at-2P for control@debbugs.gnu.org; Wed, 20 Jul 2022 07:15:55 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s2048; t=1658315748; bh=lMI8h0fPnMUtZESbIMcTws+YxABI/OcG+Efy64sOe08=; h=From:To:Cc:Subject:References:Date:In-Reply-To:From:Subject:Reply-To; b=SnAp/mbQYZILsn98jgeEbuL2mzZbLMO9Q3NedzvrvMURdV6X1oq43AIsUt7XIVZnABrdBX/CUhtdofWB4/iT70mIWZ0qrxzf+7NPvmWAP319Ws3gy7DFa7O0Dtf0RDs4HHm4VLSlsSg0Uh8aPSp8n/Arpxv48gzMEaOZ894oCWBzyjzhxAJPqe0k5tRYr7yWr2gKv+i7i6Zlo2y1uGOf/fFAtB7Cwa9IB1jBvltRdA7t/kc/t5A5WL7QjGCwq3euxxWFMcM7592e4V4/tLzxqRZ3LrmqHDRIuJGODqs28PzTcUU54Ye+LKoQVUMH7mtpgB0ogboQD6Lr4RPTPGMAMg== X-SONIC-DKIM-SIGN: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s2048; t=1658315748; bh=McsKL75VrazBePe7dElYnpqMa9LjxmnqUbAeV9xCcTz=; h=X-Sonic-MF:From:To:Subject:Date:From:Subject; b=QeeOgo7lvGQLRJ6CUqmBv0dmTSoo7WO4IuHdoeC59azibVv0MFlPGR3BAKMLaFMGbs/g4R+motGQvWm+DebvRzB9FmsOTiT4Nt0wRv3Q3KQIcgWwbx9WbcYGP3+IYOkZVeAMF90CxQURBCqtaJrhfODeUrscBQ8Zq5nnM1JIP5doD/s4y/DCCWAQt4Jgch/OXhAcMOpawfu6lKCBXrhr/hTWxAi+KWE9ssMKGmj4LSZyAdUXquaCED+YporrLZN4qgJQKDHOLXYMih8mTFPq0NJOdAmgANET2byMqFw3R5KaXJG7KXadHxwJjMjX+oD2lM7SwLrgY3j8W5Rt9qSVjA== X-YMail-OSG: CA47CyoVM1lxRig6aUhl0nbd.rV3xrSNT0Xq3BiUk6FmhxAlk0zt9SP0Ibt6G4d zgZBX6e_IQVUoNeSHON5D6wYIhF4KnxcOgXumk5i22VzPifdlY.fyUn6S8ywj0npQOfyEJ4ugwfm pEPB6piJElpGL6c7KrCfrdKXUNUDVsbzN3mOntGLEXu.agTkDE00sCfDp5X5eX6T_QdUnWAQUIbv 8h3r1QLCNufVCAGEk6WqciGGBYP8d_CF5oTFVlQvBNXiBOuaFEAZ6WWm9s3.Zpz_lfTtnV9K9SNJ bks9p6DGG9Rx0rGCRkZDJ7drBSXy9grKCdpcv7whzxJ0hLE7guY0x4Yv9uLeyJoeRQrSs..EvB0b DDZgZvBiyKA0Cdxwz6Mlud5DJtZYDj9FW930SOPxBAC86CGpu26eX1Tcoi7zLrig_x35SbBfrkpW M8TDDMSgMo4ViGVH3_7s50AQKV.HUMts0b.WKZHdxlXD1MN2_y715pnA1h8SllntvF91Oxp3QIxC kpytH9esDdrNo__DSqkoOyxnviznk53h8gt.KvSgN9DZeDXJIS4ZCLJSjg5bW5euYNpe.CuYV0rD MiVJp7T8NJE04HqayElOl1M.hh.KiLEPnA2MpOQZeOB6NgKntL9HjSahYyZWTymh3BFw1lY1xMtz xzerO93dho2xgsG2u2yDfqMt295AhCJT3EEkMu.LtR7muy1UXfGqOIdDv2Pk_6rOJ27q7hTDBhbv _T_JT3F4FR9nX6EArCTup2ASdLJ8bVEW7AeltGgWkDWp4Z.V_JD7ijIGyGNzwaIPGjWp3zx1sUpD hayuw33rxDbz26OMoThC16sNyJdDqnVj.ywrYDANTquD.pWFPcOURkn.8l12TOvFfbeafOrcpJwR O5brfyQOkJ9FWUTigMUlpzywnGXf2jdDY266p3v_Cnb73MCLaJQf8rYiTMFnD_KL0l76wewY5j74 r1_QE5Vp99Q.N95IArCBgkh3PXcilhIjEVmP8vyNBQmD24.xTmsyFlwMqzQKU82d25AAsQSW0Saa feioqh7Vq5MKpq2Ah004.Hq3N1N051QMwj5b_btOC2SwpEwBn.f5Qw4gctyhJllYFNeiL2enToem i7BOvWsBMS9zfBHPgjoYlfmd6CmymarIzLpAVmgSI5_C9ht7q.CnWWZjhAZwwnIPb39FPp4lnq2m L5cOeUiv60zde1bh1iLOTZCf5PxKx7PA6cr7tYZKjyXSMb6TFB1sfG_T7jwUgazUqpm6Zl4b_PlE Xz4cHu8Wi76vgcoz_lJFXNC4KhSwO3XJrkbWlenKlMsZk4Y.FcnEqaQQPH1uo0lFNO6BZtl53czG fLPzXMii848jnnAmB1opl31HaFWAQbSxctJ_g7nzJF8NMD2pi6WkOLcQhanb16hoQ3sAsaHOhyOB svmp9MJwepSCvEmDmVajlNioUVXLspFxfte9zj9zOpV7chB8UX7Xrui.6xxm1e.FV9Lje37Y5hwD 5dZ.fVSW9Howi5OzduJJ7lRr.35.z_dPvhUTZt_kxQcJEEmtpSsdI_XI2RYG4qrz4hhxkEx.lPrl ezVI0x77QUfxnwZFjl1NKYQ9.ZqXGFSdgLMcrwdbPp.9LhwBT2P3I7IoOoD4dnx4iGGj8bHTIlBP CNQY2WG7Yaz8uE8yFV.9MoMWewqmZ9zkpqLeIgQWBzSI5al_04kwL7jOKSCYnpIbs8HQWQZkwtkh 9YaR1M43WLpGlDo0shKHiYLoVl.PzNDClojo..4mtDQRwU_DWKPIcDar3juo4ARsUDWx_b6268nZ rF3MCpPm9OlOGncg97cG.MMfLTvFX5FHmCLWLXzHCPW96Mc2eRC4WQI2t_HfPDH33bKiBXZEzUJM lSIcD65_qI3A9Nf8Iecj5LNXwURIWu8r0wHK5ad5FuzO.A6Wi4NHvOUr6yrbazipHT3L.Ney1r1T umuL4DtvgaPJjAKAsUS5L6zDPqyxTXpIn2CW2y9rfHp8pwm4stJdgfBqQ49RjLDam.ANhCs37LPN RHB0JcjHuY8ltWT3Iox5CTTq8kkOTv5ejdjuRtwU6id5H0HkRhqGaMcL4n9TgdwtNH92IYrWq16e cgN0mTnMTVaFPcffn2KMIQFgxcNGQQYaNpE6Dh4UYERFCg_doAWZRqGehPRVoyCfOJzcIMc6KQJZ FuoD5JbVeTjUJuek6dENzvwenh_x17O_sOoiySRyjV8Tn9ejsLk92y7RCBgnpItEuNCzUXvuV.OX UiF.cKi3D5p6.mA.AayNF.Nz85Fv4oL3cbVLiXVc8SL50vaBvlZsxKAxEwAoatA-- X-Sonic-MF: Received: from sonic.gate.mail.ne1.yahoo.com by sonic312.consmr.mail.ne1.yahoo.com with HTTP; Wed, 20 Jul 2022 11:15:48 +0000 Received: by hermes--canary-production-sg3-67975bbd4b-v4p6m (Yahoo Inc. Hermes SMTP Server) with ESMTPA ID e03a4391a4e33aa83ed13f9f81fb4903; Wed, 20 Jul 2022 11:15:41 +0000 (UTC) From: Po Lu To: control@debbugs.gnu.org (GNU bug tracker automated control server) Subject: Re: Processed: Re: bug#56653: 29.0.50; S-SPC is treated as SPC in pgtk References: <87v8rs9gwf.fsf@yahoo.com> Date: Wed, 20 Jul 2022 19:15:35 +0800 In-Reply-To: (GNU bug tracker automated control server's message of "Wed, 20 Jul 2022 07:14:02 -0400") Message-ID: <87r12g9grs.fsf@yahoo.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.91 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Mailer: WebService/1.1.20407 mail.backend.jedi.jws.acl:role.jedi.acl.token.atz.jws.hermes.yahoo Content-Length: 23 X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: control Cc: tracker@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 (-) forcemerge 56653 53200 From debbugs-submit-bounces@debbugs.gnu.org Mon Sep 12 22:31:12 2022 Received: (at control) by debbugs.gnu.org; 13 Sep 2022 02:31:12 +0000 Received: from localhost ([127.0.0.1]:48417 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oXvhf-00032j-Rl for submit@debbugs.gnu.org; Mon, 12 Sep 2022 22:31:12 -0400 Received: from sonic313-10.consmr.mail.ne1.yahoo.com ([66.163.185.33]:42714) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oXvhd-00032T-Qb for control@debbugs.gnu.org; Mon, 12 Sep 2022 22:31:10 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s2048; t=1663036262; bh=CLfgicGKbNiYe4U1LdhA/DMhLwtVE59QxPZDomdU02A=; h=From:To:Cc:Subject:References:Date:In-Reply-To:From:Subject:Reply-To; b=PvCDTB8lfXWwyiCaCmuPnxDjeOEDNm8nhw1yG6GxjSE8vXCQg//3ypdUYGX1YkCqvLqoGQKMbBROQkB/WNOMyl4gJB0BZHFEkEmMyWWkEnt6PSN/8zEv2/Lp+yPqJuQkB9L+aVpHeo1tb/m6Le7rlAy8S3HdXa+l7MCEZPhHaAe9NeL9TapXIpwkkyKr6XBi/MEzaO+jHPAxAt17REmznPmFeqBnNXLBzggwpTSoVRlnXkKxesKEWzze3ArxTDsvGqzx4GxSS/JJLxJbnAyy8OgbeJOC2b4fYZ77Hlj+qEnJUpABnJkJpWWMbwkawNbm3fprh0EHtXbCdVFErwbXEQ== X-SONIC-DKIM-SIGN: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s2048; t=1663036262; bh=bpfljJVNvgEx1vWPiiTyHLTLn3G5uJ2aayiJEvOgbCD=; h=X-Sonic-MF:From:To:Subject:Date:From:Subject; b=CR3UpTRRbRN0kqBZIz+oTmV7AUjL4/bTCcioiaF35b/W0U0jDBC/2Kmy3po3OHfdAwkoyb4tLEfckAQAtO9XIzxpJIL0yCV3zVYw53VoEL5DEd8X9aZulqZExTF4UvW+a0Rd/nYBCoco765V1gkXR6TCB0OMs9V9/G3bR2XVJYHsAxMbVhCg0l1DCJFGuMzvz9Q1kAvewr5ZynC8t/WwfCMtilioZrlhRFNwKae7311bplehmb/mdqcN76U1cXnfQSPejw+aVwoS1/uAiq1tRxTsRssckqYZxxh+bv8QA5bv3gpnk0v81yICTf7Er5p1YqphWwVly1IeebeObJB7wg== X-YMail-OSG: Hxnniy0VM1nMr1YhFkYpg1q8P8Ax04lQuCWhHJpaUU_TIfKECeSR6.n4Ky_4Mst vps2X4kmt5Nx1qlucKEkvvlyQFaN1WqKOeFmxb8jUHQQfJegUiZuWbpVwuSvVj6.nV49sNlWpbas maxQJvoskKBkFZIVRoia_Dyy2oF.Qk5XRJS8KCI.GRMSF9SkDyZ7p1VoUkb_x0AQWdg4A9apqnEt tfn4ajFRK8eFjdtR9so5_H5Ighwjwu9lUW6lrpM02AGkWyUGxavp.p14WosHzHoGodeqlIF3e5I9 HCcAC8Z0OGs5hAEH1i.8wd6VoRQZ56jMHRvKLNqZt6ppm9fLh.VgzDkz4VQ.nYQAorWx.SYKMkEk UNcdnye324Q33voLeI6Nd6XAxyHgISw7sQjrWG.WLN7WVja8KcID.AT8B4m.EC5X9zlqbPw4j2ZP vJPgkLUg.g5ujn_AaehpmeSYkn.RiyRsDqGNWJFXiwNMnrKfeiN8HU4kgbl0r34uCb2DkpGv5TtT K0QGjlpc9cMBl8kGyrRSC24fYIS8jV3NgqTRB7VIvdo4yLdJ1RA8No4LfJ0EEpJiVZfNJpgTaAZs t3IiPLCqOswpunPON0OYB1NzZG7JVz_q.9oPAj.ksfjwV50BN1_rkFfCyssBzAugkQjne_xVX5Pv PegGEv2TpEMcD.Fb.gj0diuK9JMhKFaAALl0liomcpxEexCh_0A6Zm4irzFl5Qa1Gc_MEjPRs_1U DRO.4GB0tvrF0nWTBEMV49vYOC8WKRpu7PO3InbLlCSFEyII9B3C0t_YmgZWbjbbOT2hEtzKA7ye Mcwn3JfYw.pudoPbpf4FP9tv0IDCn9iyZ6keX4fogj3VZo3A8MnZeABmVBKc9gmw2ZkSiHtk2PUk vfTd8OPYCqEEJESQp4hTF0a76Lmp5IUMVLvocijhNjHa35Y5WEd65Pjz0GzLtK4AB.63ytf.HBdj K5FGlmJ7w.bg3tk6SGLNkgOUxgTD_S9LEhV3kKo.dZKjBkirQTAqEEDsIYf4UJ.Wfwtxu4fWrfJj vngBJyBTaQO6itoCzF4PcLFFkkIP93BwruBySsQ3331AlmM5S1yczo54JE76eTrV.eElg3jGnlVL K00neKLUbcd74hyUe03HumTfB2iOBh6W2Dp7R1mLCB84k2AOQIL75iNCC2.7xqqpfImABRvXI3Ht Rl9jLJEvCo_P0l7oGxcZkK0SBBF3Fy8H5mGwU_6zuz37qrTTDSwIPat9olstAP6cVyn9wgnKuUWh 6Moc.cOiAf.QlSjmdX7ATph_oolarNz2JqV7DP9.7g4BLPe8ZyRIgBiQxPmjEv.QvcU2BQHF21cX gnAimfVIfxUFhF0RLpFki1eQfkVGlaSpRLNaumx55Kxv4NJem5TO1DWR5Ua5C_4YjBHAXmRvjFYY 87HoAwLUiZvFYbJ8LGzWbPrUcvUO2ucUuWfeVFz0eGRyJHBkZGtR6FWgZA7CLQIRXrIimR7zLH2t hlTMHJkyd1wshzvaMKuhSXZ.kp_u3Lt6WOOCrF7.8g7oNWEctF0u3JdrswUiIlb_0fZA9NOOdfNb _cwTuYe1QtdbYWiO2wqgSF9I_mTDmUZtTCxPFKa3dwiRu8D8kAA.m4ZXUeE8QuEZsRu2VOErccHY uZg2oUClRbO4DTJnDK.4zZoQpH_Gmy4IQvAFWgeJWoIFOPgnKJoHZKW1P60cbCd3prccGdMiTOCA nQqlXnsCXPCVB7jl49SLy3UrCCDSMzQJ5u4RghHMhrrAjg5TLHZuAGVTeuC36KcoH9JNjKeLZrBp SFG5gtWmKKQGI9NaQTRehzwHYTCRy9UnHhHw.XRrs1CKK_yhjwVWZyACxBGX_pp8S9MLJediddHC AnV8dc45cfqD.BDCXWmSeo4SjUI5mE0nk6T7MfDhpW8CqxHEO3zlesZWkUVbyl9gY6q6oIRnW1ZU U1ysGku_.xseyjv_BBmGAe2tWBITBPv8dAbPbnJlGInN_vBjYSAO2R5adCHwD31XZG6k.QQ6AYhE ale.JJaEuQRX.aKO8fM1nylZS_rNhyCRUUJ1RQwOynYbQs3UxZhs9mTPO0g77_nUYyfA11KW82x9 4tkw9SlM2i2MQ4ItNbhGJjj7lCG2XgZEqhNi1UJ.Al5wEFPc0XYlAfKxuPZiICDU4F1xRF0ei5tS lVjFtGGdf95_zHSjRRY4jTk6F27J3376GdFeKT623Zr9dMVOMzzW2bqGyVJeiDpH_9Bxb2oRwZpI tO3E58i.l.L.GHU2tATgDldy5vpLps0U1rNmbny4_Q2YNmDKsVLDMIHglahlojbKVGop7qaVyXH6 BC9zcLWGZhLA- X-Sonic-MF: Received: from sonic.gate.mail.ne1.yahoo.com by sonic313.consmr.mail.ne1.yahoo.com with HTTP; Tue, 13 Sep 2022 02:31:02 +0000 Received: by hermes--canary-production-sg3-6bb8946c47-nbhdn (Yahoo Inc. Hermes SMTP Server) with ESMTPA ID 53e123123f7b4bc973903ad82a78b16d; Tue, 13 Sep 2022 02:30:58 +0000 (UTC) From: Po Lu To: Tom Hughes Subject: Re: bug#51002: 28.0.50; [feature/pgtk] Some keypad keys handled as normal keys with pgtk References: <87v92d9qbv.fsf@bericote.compton.nu> <87leqoanuw.fsf@gnus.org> Date: Tue, 13 Sep 2022 10:30:50 +0800 In-Reply-To: (Tom Hughes's message of "Mon, 12 Sep 2022 17:28:10 +0100") Message-ID: <87bkrk2eg5.fsf@yahoo.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.91 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Mailer: WebService/1.1.20612 mail.backend.jedi.jws.acl:role.jedi.acl.token.atz.jws.hermes.yahoo Content-Length: 317 X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: control Cc: Lars Ingebrigtsen , control@debbugs.gnu.org, 51002@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 (-) forcemerge 51002 53200 thanks Tom Hughes writes: > This still seems to happen on master, yes. This is yet another GTK input method module problem. You can disable input methods with (pgtk-use-im-context nil) for the time being, and in the long term, complain to the ibus or fcitx developers. From debbugs-submit-bounces@debbugs.gnu.org Sun Oct 09 23:08:53 2022 Received: (at 55362-done) by debbugs.gnu.org; 10 Oct 2022 03:08:53 +0000 Received: from localhost ([127.0.0.1]:45198 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ohj9x-0006b0-AP for submit@debbugs.gnu.org; Sun, 09 Oct 2022 23:08:53 -0400 Received: from sonic314-22.consmr.mail.ne1.yahoo.com ([66.163.189.148]:44304) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ohj9u-0006al-Mv for 55362-done@debbugs.gnu.org; Sun, 09 Oct 2022 23:08:51 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s2048; t=1665371323; bh=Kk9N4Uj06zYrEjcCQcMkry+8XfWX7hGgoTCeU+sPG8k=; h=From:To:Cc:Subject:References:Date:In-Reply-To:From:Subject:Reply-To; b=hjZ4rxQAca5Nj0wcU3h3KKT29Qf/10rKNMRY+4Zik3TFI+AVJqLMqDvbeZiLYMi3WlY2ry3zcr5dZ8JnWf3nnReAxF6RE3oQ2FJU+y3/OlUH8VEHCAdsRjab3NqylAb8nJifgPyNTSBTPdomHuz4uovOcKu/+owaydAGBPtYmDu3yCXwiriNJVa51TC6YPHpUbB3b3c4StUyf7EBfrIas3jdPiHl8COs4Vpu84OikDcdo/cAyY5qCSGi1cmjamfcuLBLnDGgtaZcFsIUaijTV/NrXV8y7PSfxuKbOwPrmPhKGUaX+IGoBKWgxW3+lg02uIn46JunBZFnuGarCuEIMw== X-SONIC-DKIM-SIGN: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s2048; t=1665371323; bh=ZiPuEt6Irugj+/J4L2fSb0GUpnz1K6oDaXw6GgSG//I=; h=X-Sonic-MF:From:To:Subject:Date:From:Subject; b=b6VXNWvxFS3XzadKihiaUWBBP6P3jaINwjgvOrM6XqtQ7VYTMZ7VCbvsEaS1bQh8quToHoYkPFmtFomH8XwKBhW8APWUpQ9NtbLypJbYqBhwr60F6RIgcaTVklGcieHA/r752eBz4jm0t1gn236+q/M2h4P54exL9C6w/vjU8PmP/zIw0Gc9kpgCrW2Fcd5ylVyuK2c79tLbbtRzL2uCgUBF9OMLqPqHvvMwrvDWfJ1AunRw9qv86OJxy9HXmAYXz4/9TrGsCblmJoOzg+VCM3BZ1rw36Zk79AvLwJcwGjAGMlWSQBHVYThabqlG1/DXSAaLgVjbvJxI2JpxszJciw== X-YMail-OSG: DbRulgoVM1nngzfhGhhgfcm_ImyXiWi7SNk6oZasCYhuEmpGlGUFXZiKzxZgbiV kre6_tsRAVI7sjmUlWdkKzQUT2zgQ3p4Sh6w6va_YkCjEZ4JCTHuRPtVbRBvDyL6Nft1dv61j74p m9vVjvNEQTULWf2qvSnx_3vX0EO9foeJECuN2Me1EYgdabCAZ6BHQHCGcJqguWLVmK5ajNAWiYo4 i1MnHcljSdBqv7auV4BZl8G_ZyiukNWmyiTkGDzPUUXuKBkv056P.LUnUFSVHpsVJmS1mpNiJEtr nmziWFNfgg3ylLw9otL6HZdkrWfEYUNHJSOzMPQc5kVFLQf468VxM_6Upx90jTiu89dpZtS7dWqs uxl3CjsLV4hj3J.BAwnncnJjNk6VSsjgu7AJORxzJG0jvGxn3QbD0OGCy2I5K35RXXl5PFwdQrLp sErpyBVMklTRABSfy9SDGs1Njx9N3Hs5FF7tA2g27EMtVLEz2GqpSe9Xq.bjtOrjdRrHP.ngpwtj pkIVKfnXtgIVHLgal3GwHfMpwLbhE135HO6U63bpGIO.wgYb3dot.Ghwum3L2YP8TMwU8FJ4GYJ9 .45aCVFS5cadWtdjqX.uQhqJSMHX9GbirG5sHj6JbdwfVNGQKvsnbSGnSVNz6lR5.Jse97sDsLEb BFAPJTQJFEZxgzTGvZ.muyGgPxFpXGFpJcvnXkrFB4ztNL1Sdf4fPwUHYzEAajUuyz6ecbv1ByO7 ypJlNYxSYKOA2l3vk5Pvhyi.4158NZEzzPI8f3xlWZEIl_eawpI7rooIf9mi8ZNadGi3dd7xkqqj 7hAA_P_1K0K9YP_Ym5w2TYUtsMp0myBzva75myS3bl8hXscTF2c9M6Q9.heTsxVn6_PJWPaOuIhy BtiCWdZKV9IRsBMfkaTXFSZx4ScFLsbhBaK1w.f6H9qXvhuKB6ZYTnkB8UUKptjOf6qCH8zS0vUy ym4a1c.3dnBnsBg3.TfDOhsEgp2M9WeogWDsfmadKE73R06E4lQTvJuqKNCbGsyfXz37DsQSvlFt dZEGeyYDJ6uTDvnftQfbK9j.UB61AQXpYQBDbmYoADLFteNyylqiIfyTKEwO.43kD22_Oj7NFpFU tzilUrwFw7wM4_KW.VCBD_AG_MmFjiG.6rbl7KrIALhRqpbN43judc21MxCKFdKRaniKrumgHc0z h6YL75UV27n1a8yq37dHcyhd1NGnbUL4ITFoAxUVxIDiRxmRIBcV.Q3V2NG75tiHMfyFV2vltmpE Ud5SZzb7Dad1ditsbrFLRbAuk.EOAHEvERvMsxBNNiIZR_ZzAmLcsn3.5dh1vUETpY57PlL3bZPr wg9cA7FpYvr1mI.nMecg_hmBy57blrpm2VAgsahed50m.mfNRdZCrww0Lj.JLWctbmBbklsEiVgj njRU0fQIRhFwIIfbrvzBy3FViXX8dIMmByIo.mF2TU7GKBNmEm2VHCnWnBSflPZmP3T8mB0xIOAX kFovOcnKGmcbszlQna6e2xwtFR4v0j5EDiRt3XyFzG1SOvd7_bx2i2s0FVGZXgJmal70vk0RQb5p 0sO8QAlXJc00pzR8G8q5YKbu4IuY2sZERmQjgB6CUg2mSF3rBBMqaQ11xvzXGmXBX0RuZOlQlbPj 47D7CJxm61uMkx2NwgNe7Fxmpzac2CQvernwY.ccOnC16DJO7o__5SC7ITNYyTivlQIBnEts7l2X QqKbOj1QcpsbaVnNffIbRtyV43r1VHPRQ8c1cSqA0GAwnf.m_bJpsn4C0tOmhW35oSf9hXNKKDwG fftg_LPA5pWdZeSBXrGSgzGs_kVMIEChZiT9A2p0Y2EixktazFsT7i.cyBZLC0NX1eSP0hBVtcHh OU0o_en19Nw1x6BbrKwzM1aK4ZtUnh5UOWKQu7qgotJIPoDi8GdSKn3aD2oCM6U21QQ6k.6e6AIs 8dWv6OYLHZNKqov37EqLYkqgNZ8ZogyUsCcjWknflIIeiRGILVbn2moVis6lPyshnPHl5Eal0bQk DGizwypCthnVmxTDLVDJyNGeii8cFqfUja7qSmVMpAJhKMVSQupVveyVBvGVrV9ItDVYIsm6Gc1t HdH.DBY7EoQ4Uv4bBQOnURaIHiUrP7VAoBoEfK7mOc7BjePLrmesJ8F3q6btchq7y3f7aFUjeNcP 5HYuc5pX2TlGoKJCmkG1CFle0q_lTj98O0ApyckRVYVlFN8CsOv.XT.xGJZRoLN_10HDh1iGGqf4 h73PglJAF_GvhLp_9a75vvoaScdyTSal1EFJ8omELyhw3Bw7Ydze5EByK.l1wgGMEl5ikuTa.LUi B X-Sonic-MF: Received: from sonic.gate.mail.ne1.yahoo.com by sonic314.consmr.mail.ne1.yahoo.com with HTTP; Mon, 10 Oct 2022 03:08:43 +0000 Received: by hermes--production-sg3-7794f55d99-wthxc (Yahoo Inc. Hermes SMTP Server) with ESMTPA ID 3bcbe85428e3208a22a628df1b008863; Mon, 10 Oct 2022 03:08:40 +0000 (UTC) From: Po Lu To: Lars Ingebrigtsen Subject: Re: bug#55362: 29.0.50; Super key no longer works on Wayland References: <871qx08k43.fsf@schnouki.net> <87y1z8z16o.fsf@yahoo.com> <87zgjo8bl2.fsf@gnus.org> <87tu9wyzho.fsf@yahoo.com> Date: Mon, 10 Oct 2022 11:08:35 +0800 In-Reply-To: <87tu9wyzho.fsf@yahoo.com> (Po Lu's message of "Wed, 11 May 2022 21:23:31 +0800") Message-ID: <87mta4ml3g.fsf@yahoo.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.91 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Mailer: WebService/1.1.20702 mail.backend.jedi.jws.acl:role.jedi.acl.token.atz.jws.hermes.yahoo Content-Length: 562 X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 55362-done Cc: Thomas Jost , 55362-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 (-) Po Lu writes: > Not before Emacs 29 is released, or otherwise the GTK developers will > never fix their thing, and we will be stuck maintaining yet another > broken hack to work around one of their bugs until the end of time, > which is several degrees of magnitude more confusing because we now have > two configurations where sometimes identical, and sometimes different > GTK bugs have to be worked around. And the bug has now been fixed in GTK. The fix should be released and reach most users rather quickly, so I'm closing this bug. From unknown Fri Jun 20 05:37:11 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 07 Nov 2022 12:24:04 +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 From debbugs-submit-bounces@debbugs.gnu.org Thu Nov 24 03:32:35 2022 Received: (at control) by debbugs.gnu.org; 24 Nov 2022 08:32:35 +0000 Received: from localhost ([127.0.0.1]:57148 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oy7et-0007J2-AY for submit@debbugs.gnu.org; Thu, 24 Nov 2022 03:32:35 -0500 Received: from mail-lf1-f48.google.com ([209.85.167.48]:38518) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oy7eo-0007Ij-OU for control@debbugs.gnu.org; Thu, 24 Nov 2022 03:32:34 -0500 Received: by mail-lf1-f48.google.com with SMTP id g7so1483721lfv.5 for ; Thu, 24 Nov 2022 00:32:30 -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=3bIX2e+nz2hIivLa3RkMcfLnc+DWKZjYBR4rctY1VBM=; b=Sdi+2KpZ0SmpBaSIlKC7yTCa6sC5aR6OhLlfKbQ3cqmVuIBue9s1E9g5zcJ8H0lKml oWGfntHVSPm7Br3GHUHGdlFlyBG6K8SFleQ0aazhx/5lQMidc2wmCn6d2pNDYSpEE08E iBb17yd3/V15icgO1jIj/WVmiDNwcyatbuvHeM/8WK/201Hfxo6c0deVBICgiLFAaC7z kr7spT+42wVPoGfbXL+466g7qcjTV7nxtykkMBuHS42zIKg/SXPzb+5zRk30niLLVAHW zQGx5z7dlwZayXOKjPnkBRXt3OzTvFiLCXJS1/ETLs/1XjFbA3ST2z9QYdHmD1+0bT2l poqw== 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=3bIX2e+nz2hIivLa3RkMcfLnc+DWKZjYBR4rctY1VBM=; b=ruwiHmizG3jnQJ+vDgT8krAPkKzMMCxvHjVz5IryooToXVe8dPza79xVg5EEHQEW8i RSGlV1m1eHfVuj9Ir+EoKb8Sav0Klojb/6By9Hgij7GB6hBfL1JhGkuEyQS/E5zg+Bf5 olvSExl76LHBmy8axwfzgYiJYMUJC3IrKGkyV8Gi3YGabZ4XFv3DSCJdrM/rH3LMIPLC OAQfGvjURNGYoLz4W+WUfYFnSh8FyTTBitXygS9j6JbWBCiIfBK603wx6W+r2n7b1ON5 FszPgIHkDWoILOiaXmrAUMJPQI746UqKw3yOVLpTkKhaXIaAahaFMPN8ZBac7d3LYhIB qHTg== X-Gm-Message-State: ANoB5pl0C7SQFPMkRGekWejeU16ny/+hWhV6e6nrzLc2i9K/Gc7MVC6R 3f8fIJld0Xj/MtLPC32oPllKTobKCRppEoD8JcffJTPsnT4J6w== X-Google-Smtp-Source: AA0mqf4KwGWL+VQW9dV3kn6MOjedGXCGMZxHlidsba7pWsgH+NkAr/DXeNU00e48X6qOaG0cXN4jCt4nU72Lr/AuHkQ= X-Received: by 2002:a19:6a14:0:b0:4b4:e24d:c617 with SMTP id u20-20020a196a14000000b004b4e24dc617mr3421022lfu.61.1669278744062; Thu, 24 Nov 2022 00:32:24 -0800 (PST) MIME-Version: 1.0 From: Daan Ro Date: Thu, 24 Nov 2022 15:32:12 +0700 Message-ID: Subject: To: control@debbugs.gnu.org Content-Type: multipart/alternative; boundary="00000000000092307405ee333eb8" 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: unarchive 55362 -- Daanturo. unarchive 55362 Content analysis details: (2.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (daanturo[at]gmail.com) -0.0 SPF_PASS SPF: sender matches SPF record 0.0 HTML_MESSAGE BODY: HTML included in message -0.0 RCVD_IN_MSPIKE_H2 RBL: Average reputation (+2) [209.85.167.48 listed in wl.mailspike.net] -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at https://www.dnswl.org/, no trust [209.85.167.48 listed in list.dnswl.org] 2.0 BLANK_SUBJECT Subject is present but empty 0.0 TVD_SPACE_RATIO No description available. 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: 1.0 (+) --00000000000092307405ee333eb8 Content-Type: text/plain; charset="UTF-8" unarchive 55362 -- Daanturo. --00000000000092307405ee333eb8 Content-Type: text/html; charset="UTF-8"
unarchive 55362

--
Daanturo.
--00000000000092307405ee333eb8-- From debbugs-submit-bounces@debbugs.gnu.org Thu Nov 24 03:34:25 2022 Received: (at 55362) by debbugs.gnu.org; 24 Nov 2022 08:34:25 +0000 Received: from localhost ([127.0.0.1]:57153 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oy7ge-0007M2-Mb for submit@debbugs.gnu.org; Thu, 24 Nov 2022 03:34:24 -0500 Received: from mail-pl1-f180.google.com ([209.85.214.180]:36366) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oy7gc-0007Lo-Bq for 55362@debbugs.gnu.org; Thu, 24 Nov 2022 03:34:23 -0500 Received: by mail-pl1-f180.google.com with SMTP id y10so887395plp.3 for <55362@debbugs.gnu.org>; Thu, 24 Nov 2022 00:34:22 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=content-transfer-encoding:content-language:to:subject:from :user-agent:mime-version:date:message-id:from:to:cc:subject:date :message-id:reply-to; bh=o9ZuHukkOpi4MlgP/CEJsLgHqXQF8mGdpAq2dawsUxc=; b=FWmH0hOgesHKw0h8rfQ1ygjAyPscHAgFo2Fr5jx+vWtXYDgUeyAV/hbfR39mjDNURD ikIVV2qx7OBXqmP7x4uHvgNGXptKpmf600VCipNMgMU/wg2uE29YxT2LdT/WcQNwAxNX ssbk7fjhMSBsy8ysTdQBHTu20IKPKp0WVae8fqZ55sbyLro0t2sDBiZl+GJlv0rbT7UE eIyoMabSCTIxYiSTeCuvgNLw04aWYE731gZ/sPgWH14GjMlEPdohooNAUMNDOQVuR2eb Sz1EPhx7ZvOx5FevZmiKTTVXCKu0jqTKg2spWhPUD8r7YcqNVvH1SaMFaQxzIElMPzJF eiHg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=content-transfer-encoding:content-language:to:subject:from :user-agent:mime-version:date:message-id:x-gm-message-state:from:to :cc:subject:date:message-id:reply-to; bh=o9ZuHukkOpi4MlgP/CEJsLgHqXQF8mGdpAq2dawsUxc=; b=tpEU1Jm5nq+iujwbOYe8FK38xPYWOXNIpDEL0wYhqYNcwbf+M1XFdoCkPVVWpgYZgX c155j5YBhRQ4gqUV0HnTtsgOMYSoIPdNVR2SMXp8Da8RPNtHUQE9zBamjo4bdbe5hc46 48G87yRY6WgjwMAKkIVd8MZTRpKSfdlxVmekipPgFAJ5RbXfenWXMLGfNl4XGhr7iRXH voV/Kht4BX5LN9xK1XNrbyefTyUHK3khRgLP46R+v11rzNWpYWQMuRIigFhdzNUE+B/K BV2izLCQ63PX0fwlSKah948Jrt5GAqAmzXcqiFbTfGB4jEbs4myrjf/clSlApn2K7NwI ookg== X-Gm-Message-State: ANoB5pnOmMiKQH0Z9Xe2XO8JWpKR44XVim015C3M+1P0CZsXNz4SyNv7 x5ag186RXGpN6dBkbIDKsnKQPjeGJTQ= X-Google-Smtp-Source: AA0mqf7y+Hovc+GsZwSdNfUJsY+QaDAYOUJfQZhM/8CDVkk+rK8cUdkW5CH6HEKR1xwAri31erMpfw== X-Received: by 2002:a17:902:ce90:b0:186:6d34:b7b5 with SMTP id f16-20020a170902ce9000b001866d34b7b5mr15844111plg.37.1669278856383; Thu, 24 Nov 2022 00:34:16 -0800 (PST) Received: from ?IPV6:2001:ee0:4fcc:ec00:eb70:935f:81a:2432? ([2001:ee0:4fcc:ec00:eb70:935f:81a:2432]) by smtp.gmail.com with ESMTPSA id x25-20020aa79ad9000000b0056befcd7958sm612793pfp.84.2022.11.24.00.34.15 for <55362@debbugs.gnu.org> (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Thu, 24 Nov 2022 00:34:15 -0800 (PST) Message-ID: <5c473464-f0fc-235b-ec17-5afd000b839a@gmail.com> Date: Thu, 24 Nov 2022 15:34:13 +0700 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.5.0 From: daanturo Subject: Re: bug#55362: 29.0.50; Super key no longer works on Wayland To: 55362@debbugs.gnu.org Content-Language: en-US Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 55362 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 (-) The latest GTK3 version - 3.24.35 - released yesterday didn't include the fix by https://gitlab.gnome.org/GNOME/gtk/-/merge_requests/5088/diffs : https://gitlab.gnome.org/GNOME/gtk/-/tags/3.24.35 https://gitlab.gnome.org/GNOME/gtk/-/blob/14cf55f98ddd71ad3f91487eda1c7f14d67de119/gdk/wayland/gdkkeys-wayland.c I have just updated it on Arch and built Emacs on master but the super key still isn't recognized. If I understand correctly Emacs PGTK depends on GTK3 but not GTK4, then we should request GTK devs to backport the fix to GTK3? -- Daanturo. From debbugs-submit-bounces@debbugs.gnu.org Thu Nov 24 19:37:33 2022 Received: (at 55362) by debbugs.gnu.org; 25 Nov 2022 00:37:33 +0000 Received: from localhost ([127.0.0.1]:60607 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oyMij-0002wy-Gz for submit@debbugs.gnu.org; Thu, 24 Nov 2022 19:37:33 -0500 Received: from sonic310-25.consmr.mail.ne1.yahoo.com ([66.163.186.206]:46175) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oyMig-0002wi-Al for 55362@debbugs.gnu.org; Thu, 24 Nov 2022 19:37:32 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s2048; t=1669336643; bh=xmruJKKwPgMEOeHmRyw3LJGyvMmLmpyViFlK6l84eXU=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From:Subject:Reply-To; b=Okn2NUoqAkG2iN0KXvpbo7U1+bud73FXIcHZ68uAfTJt8ct0mINgzVZlNau1ktZ4PMED4pbg6U9GrMapLeZshOJvUECMnIb3lkgNFeRZuTnkDQuR1tmolnswt1+HltH6kuTMfB/Y6fN2HXnj0HlPp8x4ghQ0fxcUOHc8ePwOV1nU40AG8IeDAdE/Ncq/NC8tcCXsDXrkniXyMghRyxXYx7Fyf/fqme2WaC3SC2EjphJW8hGuiU53pzc5L5q4stAHZyjix0BloXQDAxkh75Tcg+BTuVxEh8n86ieXbtnaMNTFUtD8ffwO/EvmNL071mTtccBLw87ZHyhxz0qWM+ri6g== X-SONIC-DKIM-SIGN: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s2048; t=1669336643; bh=4n/dQqD5QNFYZouvLy/Pbf0J5WcIafTRTnrGxdZo8hc=; h=X-Sonic-MF:From:To:Subject:Date:From:Subject; b=WUxP2/pbTxFLN06vMSSeAkqbHKsqdeptgPq/jRVAhxiW0OTQYlLJS96uDuph5cdZ6FXbA/mBveQh621PLVu/8Erc3blHv+Qhjqns8B6gONLExeDofFR8Sq+r+H1Zx4btKoY74XaOAv9gMRZGXkpInfZc9dELu5VfVFqivBXwOQBRzZHczNdk0oQip2rWBzFxgwJ7WhsWXm3jz+obFURPpizyncPmj60t2JDEsfLIkKjEA0h6PrHTEpvWo6G20191+9AwJb4yJR2SOQIOzWDaHZ7tRgZ+kKOew8WuKgUocf8cfPi1q7+bSOo+i0Al6zguwLhmLxWVxizWlK5gLbhgGg== X-YMail-OSG: rnL3pO4VM1n1e0qmITqxHTYCsuN4JDGbEaS_pbn2PVIvMi_h75NAj8F7.2RzKeh Lk_VWIrWmVqocyc2dv2Za28tVwZwzkM.e2hXZI9KiF1KDBGhh2yMKgZp6XKliHTy6dFLxec_SXtK .IAtmoVi1L3Y2ih1Nz5PCnXVbnBCBRhTErceIgNg1CrbO4gOUsUonnEA.kBv_u3QV8WaHDzp3wBV 6GQFHwjIL.Up8YCQOrPkudyCEx85aCViValn8DiUxDBGahNRCaPiSEwFQ4CXQFcBe3boR7_GYbyU mMpCVJlCq_kFMtLpdhuJUKWaXpPSRgjzNRXNbaOpOKV9IWGYtFRkvI24yvSnqv4lJYPrI7ufFli9 uZ0vO3_SZnF_UX7uFPcRU.FGxy.gg.QhfCYE1D8CB3.Uui3ZglQzSSycs4AC4JrOmltXDTbVx1Gs wPhMvxRyCWWQ0cdaEAXFqP8FbN27RX.oqBL57vZyviMo1plhCgdQnghaIXoXxDV3LMizNj8x1n3V lSNm8comdKUegrn2_TBrSFKF1EKj._n8xRdfLvfChZHIg3HiEPCgRP7.omVJWSz5LpjhLfXhhs_8 gl_iX3tJ94wrrjCtrcKCCWaEgaT5KV6T9xiO.LR66Rfxgx80oefiYOb2CfOsqOJ1o_wlrYArGSMb H.j_H4ViQ3V98giJTY3NMEfDXEBFT6040tnqdNrpTRMW0kem0sXRyadX9b4ZoxjVCBX6EDtkSdCw NnP1GVPc0ceDOVKd0X.W._H6phT.OjLoBPmsIaQl4l9oo4DiJfcoFS1K2F2UbEO9pMCssZgYAWHs jfH3YY3CpfXwGHjhzCDjhqmasY8TobFhm0Ztj5uV5gGcuNNvC7k.ztLVknKAhjVlqw5GpCvSCDgG 9VRSwvCMy9HM8j5C0HmIM2NwNyNp25X.8FaHjSertBCWDoKfNIR_3WfP308Rsk04NMsJJmbMhvvm eE._p0HwrzKctV6.4JzKwiyQFqmB6nAoF0BIZwXptYmzYtmorQYGjya3rLv1Oo950Mw3hC_aqH_0 E3j3c9b.z9Mzi.vcuKdsC5V86CEN5O8e_N3PHZetSUNGaLFNLsNHH9dZZIRqRp4awNpz4cwj3ybu rEjMV5ABhhrNbCRgPdVb0IpQE8XVC22IwGgLfhUhDkIV2JjcfZhBMMTJ3kKGGzaJPI_4obVU2sxV ZooXpWgvv8_GrmHwSMCxGu5TiBWcNawO9SxMqMwnJqEO00xmYJr0afsqjrbf2eV5DWhOmSlTMTgT FFkWKfY7XrfYCX.eOcUHeSbVN3GtIUlOG6ArwrnY6vogYMmXXd5o1hJzUZVOuCro_zy9FiUqqd6a WJkm_QgtK4hCvU8x.H7hU7voN5mGrYINediKPc3a0KlkoUhSqijSO9e1bxT5bpBceN2BtJDu1fun TcmLq7hiz5ivP9R_a5RDR3Rf67XVP3UBmtzKgvU5crNuV.DasgiXrqKOFCZxGHgj9w6jlh9te5DR BkBJaP1sSZuN_4OkLGTgylBTVaOmNBUSferLyWRQvF19GbaH_U1BNliF7Ew9qY3BEvf8L1kJFPGT 6uBThl.EU9c8S4UHsK0zacD4Xs697kvZOKk6lfGPzceKTxSBDDQy96rj8uPs7bsPTc0EzeO4m92N H.b0kSK1uRoUbORe1W4oHMrLCBT25wf64rBirVx06RhTho8VfG__MbcMo5vgo77JUoEmXqlc4V_4 cwGKjQFdKPE2W5AfDrGWAQRuIoPioa_zweJjoNOAi2VN3VNu0VSic8rv4E79Xh6fP45.xl__ZLNm urYPQqEiUnFaijPHPOLjzLBDdg7kLLQzrsMsztHdWwkWdXUzfqJ8TiFRQX2FIgdN.Bc4po4IE9_V gHurHPNLIpin9mMVu87UnJztZpgLXMfWaOqyoa4Qb3W.i9OYtPFvW5uw_u80F_TuzP4ZM17Lndjv y1iPDeoGG7R1J0h84TrIrejCih15BRHerS980QZqR3AZAuiOhsyqjnL.jC2wgDcQqDHEIKAotuBt gN0UFM5K.WzCd4_MK22RPY8RwMvZMEuBoYFrCmq_u6TZPlDskOwb4wUgHGN._Bx92MM8d9n5qwJr S.NRrbN1Qdnk3IlvKsml7MsoXvOnWsv5vj_hgK0NFevU4TQebkVaHJwMuPQMnIUbo4xUC3dyQZoX A9x0FIakoXHZLlkkpGARU.7z8SOjt.he4wMtcXR1jB.o67XAwWEHTACJJ0alBDsdUwEz7x0KRy56 9H_YfIEuMaHav9_8PVyzgQtl6NM5C20gIct99nHxq9gJ_bL8MYedqSATW6h.tWtVcQ4avzw-- X-Sonic-MF: Received: from sonic.gate.mail.ne1.yahoo.com by sonic310.consmr.mail.ne1.yahoo.com with HTTP; Fri, 25 Nov 2022 00:37:22 +0000 Received: by hermes--production-sg3-6c8895b545-xbfp8 (Yahoo Inc. Hermes SMTP Server) with ESMTPA ID 65ec624a0f2cb331769b2fe03ec932b6; Fri, 25 Nov 2022 00:37:19 +0000 (UTC) From: Po Lu To: daanturo Subject: Re: bug#55362: 29.0.50; Super key no longer works on Wayland In-Reply-To: <5c473464-f0fc-235b-ec17-5afd000b839a@gmail.com> (daanturo@gmail.com's message of "Thu, 24 Nov 2022 15:34:13 +0700") References: <871qx08k43.fsf@schnouki.net> <5c473464-f0fc-235b-ec17-5afd000b839a@gmail.com> Date: Fri, 25 Nov 2022 08:37:12 +0800 Message-ID: <87edtrzx6v.fsf@yahoo.com> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain X-Mailer: WebService/1.1.20863 mail.backend.jedi.jws.acl:role.jedi.acl.token.atz.jws.hermes.yahoo Content-Length: 725 X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 55362 Cc: 55362@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 (-) daanturo writes: > The latest GTK3 version - 3.24.35 - released yesterday didn't include > the fix by > https://gitlab.gnome.org/GNOME/gtk/-/merge_requests/5088/diffs : > > https://gitlab.gnome.org/GNOME/gtk/-/tags/3.24.35 > https://gitlab.gnome.org/GNOME/gtk/-/blob/14cf55f98ddd71ad3f91487eda1c7f14d67de119/gdk/wayland/gdkkeys-wayland.c > > > I have just updated it on Arch and built Emacs on master but the super > key still isn't recognized. If I understand correctly Emacs PGTK depends > on GTK3 but not GTK4, then we should request GTK devs to backport > the fix to GTK3? I thought it was installed in the GTK 3 branch (and not the GTK 4 one). So please go ahead and ask them to do that. Thanks. From unknown Fri Jun 20 05:37:11 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 23 Dec 2022 12:24:04 +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 From debbugs-submit-bounces@debbugs.gnu.org Sun Dec 25 03:58:25 2022 Received: (at control) by debbugs.gnu.org; 25 Dec 2022 08:58:25 +0000 Received: from localhost ([127.0.0.1]:47521 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1p9Mpt-0008KD-Il for submit@debbugs.gnu.org; Sun, 25 Dec 2022 03:58:25 -0500 Received: from mail-lf1-f45.google.com ([209.85.167.45]:40466) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1p9Mpr-0008Jy-0s for control@debbugs.gnu.org; Sun, 25 Dec 2022 03:58:24 -0500 Received: by mail-lf1-f45.google.com with SMTP id g13so12566294lfv.7 for ; Sun, 25 Dec 2022 00:58:22 -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=CcCzoDwniGKrrefWUPi7Bwg4mt3O6WbzOLEnCJrAmOw=; b=mr9jYwfWR59OF8DZQCb2ytiB5TLtDlu1zOXFIvNSpqSDNONFOJCGA59VTy1DO1Y9Pj 911OLqPnNvvXtjiEEi3etw9ZK2OOtWc6uCAMZ8/Yrrwr93l4og1VubB0lAarFcZAlLPj KsSxGo9jaaKmV2lsrnBOoVpTrHOxMhNWwhXtjhyVxg1y2khKtCcKOFTp8d6osrxNwe+c dKKltOe8rDL8pRXYROUwe8l9KReV0kVWoOWpRb8R06Q8PogBEFw1munonz1tYjnfddxB jDKu2x/ma4AhPiX3SQ1M/K3J1fKTB1vbY8Bp+J3Zdkn+p89NLQlKslOOM9OGrtAo9F/u hWcg== 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=CcCzoDwniGKrrefWUPi7Bwg4mt3O6WbzOLEnCJrAmOw=; b=TfVJK4y9rmKEKxNjXi02aQg2eA1l6Ol9N19jyjrlIkLzQ7fkJhoNN5Az/D69pXnLvC G6mCYw3yzeY/oCPTv5Iewdm8WeHLAdwA5rgGl7u98R26JestuvaR8mXX7Un9Zz9U9DeB AW+qQG6PKXINtSCiMmMwIHv20JAXb/KZMh3/6lL8+3UxUNJHIJ+9wk77xlNkRjEmTFrN dPjjHHqY/oX7gmSsoGMotvc3cv0daz8O7qgnIZjYl18ojR6+c96VfUokuFfUV25ojCGw 0VbbteZdCu3HEJaSylIrpR6/Whv9POD5DRe6Pc3I8pQgo9ZTr/GARAJAO12Tj7WelMUj HO2w== X-Gm-Message-State: AFqh2kqEwVBFmPnVOLq5ESyRFKoy3Ax2Qud0U4Qy7PSbdpWQPx+uxOP1 4lKpDs2q3ojvDz0Gg9l9jgGRAi7IiTseFpfU1DOXKKxDpmk= X-Google-Smtp-Source: AMrXdXv4Qk5VUZLoqmDREtLwyw61bI1NaJpAAX30bES3cIRJmajS2y1ZXV9p5KDPzmYvH1StQ/Hp+EaF1KWE5NfskvQ= X-Received: by 2002:a05:6512:39cc:b0:4b5:88da:17e0 with SMTP id k12-20020a05651239cc00b004b588da17e0mr1017637lfu.71.1671958696322; Sun, 25 Dec 2022 00:58:16 -0800 (PST) MIME-Version: 1.0 From: Daan Ro Date: Sun, 25 Dec 2022 15:58:04 +0700 Message-ID: Subject: To: control@debbugs.gnu.org Content-Type: multipart/alternative; boundary="0000000000002c6b3905f0a33811" 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: unarchive 55362 -- Daanturo. unarchive 55362 Content analysis details: (2.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (daanturo[at]gmail.com) 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 SPF_PASS SPF: sender matches SPF record 0.0 HTML_MESSAGE BODY: HTML included in message -0.0 RCVD_IN_MSPIKE_H2 RBL: Average reputation (+2) [209.85.167.45 listed in wl.mailspike.net] -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at https://www.dnswl.org/, no trust [209.85.167.45 listed in list.dnswl.org] 0.0 TVD_SPACE_RATIO No description available. 2.0 BLANK_SUBJECT Subject is present but empty 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: 1.0 (+) --0000000000002c6b3905f0a33811 Content-Type: text/plain; charset="UTF-8" unarchive 55362 -- Daanturo. --0000000000002c6b3905f0a33811 Content-Type: text/html; charset="UTF-8"
unarchive 55362

--
Daanturo.
--0000000000002c6b3905f0a33811-- From unknown Fri Jun 20 05:37:11 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sun, 22 Jan 2023 12:24:04 +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