Hi all,
So here is what I did (on a quite fresh snapshot amd64):
- comment the "Emacs.selectionTimeout: 10" line in my .Xresources
- build the default gtk3 flavor with this patch
- M-x org-capture => asks for input instantly
- Evaluate the following bug report recipe which returns nil
immediately:
(let ((value 'SECONDARY)
(x-selection-timeout 2000))
;;; from org-get-x-clipboard in lisp/org-compat.el
(gui-get-selection value 'UTF8_STRING)
(gui-get-selection value 'COMPOUND_TEXT)
(gui-get-selection value 'STRING)
(gui-get-selection value 'TEXT))
For quite some time now, I'm also using bleeding edge emacs as is on
openbsd and the following patch also solve this issue here:
diff --git a/configure.ac b/configure.ac
index c924634d5b..740f6d79a1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4884,7 +4884,7 @@ AC_DEFUN
case $opsys in
dnl SIGIO exists, but the feature doesn't work in the way Emacs needs.
- hpux* | nacl | openbsd | solaris | unixware )
+ hpux* | nacl | solaris | unixware )
emacs_broken_SIGIO=yes
;;
So great job Gregoire and Jeremie!
--
Manuel Giraud