GNU bug report logs -
#45090
28.0.50; tabulated-list-mode: cannot activate button
Previous Next
Reported by: Jean Louis <bugs <at> gnu.support>
Date: Mon, 7 Dec 2020 00:33:01 UTC
Severity: normal
Tags: notabug
Found in version 28.0.50
Done: Lars Ingebrigtsen <larsi <at> gnus.org>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 45090 in the body.
You can then email your comments to 45090 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#45090
; Package
emacs
.
(Mon, 07 Dec 2020 00:33:01 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Jean Louis <bugs <at> gnu.support>
:
New bug report received and forwarded. Copy sent to
bug-gnu-emacs <at> gnu.org
.
(Mon, 07 Dec 2020 00:33:01 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
Here is recipe:
(define-derived-mode my-mode tabulated-list-mode "Choice" "Choice Mode"
(setq tabulated-list-padding 1)
(setq tabulated-list-format [("Title" 60 t) ("Button" 20 t)])
(tabulated-list-init-header))
(defun my-display ()
(let* ((buffer "Choice")
(buffer (get-buffer-create buffer)))
(switch-to-buffer-other-window buffer)
(my-mode)
(setq tabulated-list-entries '((1 ["Something" ("Button" 'action (lambda (b) (message "Hello")) 'font-lock-face 'link 'follow-link t)])))
(tabulated-list-print t)))
(my-display) ;; This will not activate the button.
;; while this works fine
(insert-text-button "Button" 'action (lambda (b) (message "Hello")))
Button
In GNU Emacs 28.0.50 (build 2, x86_64-pc-linux-gnu, X toolkit, cairo version 1.14.8, Xaw3d scroll bars)
of 2020-11-25 built on protected.rcdrun.com
Repository revision: 30c437752df0a3a9410f1249fa0f237110811af2
Repository branch: master
Windowing system distributor 'The X.Org Foundation', version 11.0.11907000
System Description: Hyperbola GNU/Linux-libre
Configured using:
'configure --prefix=/package/text/emacs --with-modules
--with-x-toolkit=lucid'
Configured features:
XAW3D XPM JPEG TIFF GIF PNG RSVG CAIRO SOUND GPM DBUS GSETTINGS GLIB
NOTIFY INOTIFY ACL GNUTLS LIBXML2 FREETYPE HARFBUZZ M17N_FLT LIBOTF ZLIB
TOOLKIT_SCROLL_BARS LUCID X11 XDBE XIM MODULES THREADS JSON PDUMPER
LCMS2
Important settings:
value of $LC_ALL: en_US.UTF-8
value of $LANG: de_DE.UTF-8
value of $XMODIFIERS: @im=exwm-xim
locale-coding-system: utf-8-unix
Major mode: Lisp Interaction
Minor modes in effect:
text-scale-mode: t
show-paren-mode: t
tooltip-mode: t
global-eldoc-mode: t
eldoc-mode: t
electric-indent-mode: t
mouse-wheel-mode: t
tool-bar-mode: t
menu-bar-mode: t
file-name-shadow-mode: t
global-font-lock-mode: t
font-lock-mode: t
blink-cursor-mode: t
auto-composition-mode: t
auto-encryption-mode: t
auto-compression-mode: t
line-number-mode: t
transient-mark-mode: t
Load-path shadows:
None found.
Features:
(shadow sort hashcash mail-extr emacsbug message rmc puny dired
dired-loaddefs rfc822 mml easymenu mml-sec epa epg epg-config gnus-util
rmail rmail-loaddefs auth-source cl-seq eieio eieio-core cl-macs
eieio-loaddefs password-cache json map text-property-search seq byte-opt
gv bytecomp byte-compile cconv mm-decode mm-bodies mm-encode mail-parse
rfc2231 mailabbrev gmm-utils mailheader sendmail rfc2047 rfc2045
ietf-drums mm-util mail-prsvr mail-utils face-remap cus-start cus-load
paren time-date subr-x cl-loaddefs cl-lib derived tooltip eldoc electric
uniquify ediff-hook vc-hooks lisp-float-type mwheel term/x-win x-win
term/common-win x-dnd tool-bar dnd fontset image regexp-opt fringe
tabulated-list replace newcomment text-mode elisp-mode lisp-mode
prog-mode register page tab-bar menu-bar rfn-eshadow isearch timer
select scroll-bar mouse jit-lock font-lock syntax facemenu font-core
term/tty-colors frame minibuffer cl-generic cham georgian utf-8-lang
misc-lang vietnamese tibetan thai tai-viet lao korean japanese eucjp-ms
cp51932 hebrew greek romanian slovak czech european ethiopic indian
cyrillic chinese composite charscript charprop case-table epa-hook
jka-cmpr-hook help simple abbrev obarray cl-preloaded nadvice button
loaddefs faces cus-face macroexp files window text-properties overlay
sha1 md5 base64 format env code-pages mule custom widget
hashtable-print-readable backquote threads dbusbind inotify lcms2
dynamic-setting system-font-setting font-render-setting cairo x-toolkit
x multi-tty make-network-process emacs)
Memory information:
((conses 16 64053 8801)
(symbols 48 8272 1)
(strings 32 22000 2211)
(string-bytes 1 675019)
(vectors 16 11695)
(vector-slots 8 166978 10956)
(floats 8 34 65)
(intervals 56 499 41)
(buffers 984 14))
--
Thanks,
Jean Louis
⎔ λ 🄯 𝍄 𝌡 𝌚
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#45090
; Package
emacs
.
(Mon, 07 Dec 2020 02:24:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 45090 <at> debbugs.gnu.org (full text, mbox):
This is what Michael H was trying to get across in
help-gnu-emacs <at> gnu.org: Don't quote the things
inside the list.
(setq tabulated-list-entries
'((1 ["Something"
("Button"
action (lambda (b) (message "Hello"))
font-lock-face link
follow-link t)])))
The doc string tells you that a DESC has a label:
in your case "Something" and properties and their
values. Nothing is evaluating any of those things,
since they are in your quoted list ((1...)).
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#45090
; Package
emacs
.
(Mon, 07 Dec 2020 06:59:01 GMT)
Full text and
rfc822 format available.
Message #11 received at 45090 <at> debbugs.gnu.org (full text, mbox):
I found on gnu-emacs-help mailing list that I am using it wrongly and
should not quote properties. It is not a bug, and closing it.
Added tag(s) notabug.
Request was from
Lars Ingebrigtsen <larsi <at> gnus.org>
to
control <at> debbugs.gnu.org
.
(Mon, 07 Dec 2020 16:00:01 GMT)
Full text and
rfc822 format available.
bug closed, send any further explanations to
45090 <at> debbugs.gnu.org and Jean Louis <bugs <at> gnu.support>
Request was from
Lars Ingebrigtsen <larsi <at> gnus.org>
to
control <at> debbugs.gnu.org
.
(Mon, 07 Dec 2020 16:00:02 GMT)
Full text and
rfc822 format available.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Tue, 05 Jan 2021 12:24:09 GMT)
Full text and
rfc822 format available.
This bug report was last modified 4 years and 217 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.