* bug#18016: 24.4.50; buffer menu
@ 2014-07-14 15:45 emmettgrogan
2014-07-16 21:22 ` Glenn Morris
[not found] ` <handler.18016.D18016.140664433610266.notifdone@debbugs.gnu.org>
0 siblings, 2 replies; 4+ messages in thread
From: emmettgrogan @ 2014-07-14 15:45 UTC (permalink / raw)
To: 18016
'command-execute: Wrong type argument: commandp, ((nil) lambda nil (interactive) (funcall menu-bar-select-buffer-function #<buffer *Messages*>))'
In GNU Emacs 24.4.50.2 (i686-pc-linux-gnu, GTK+ Version 3.10.8)
of 2014-07-14 on INDRA
Windowing system distributor `The X.Org Foundation', version 11.0.11501000
System Description: Linux Mint 17 Qiana
Configured using:
`configure --prefix=/usr/local/lib/emacs/.new --sysconfdir=/etc
--enable-locallisppath=/usr/local/share/emacs/site-lisp
--libexecdir=/usr/local/lib/ --localstatedir=/var --enable-largefile
--with-x-toolkit=gtk3 --with-sound=yes 'CFLAGS=-march=native -O3''
Configured features:
XPM JPEG TIFF GIF PNG SOUND DBUS GSETTINGS NOTIFY GNUTLS LIBXML2
FREETYPE XFT ZLIB
Important settings:
value of $LC_MONETARY: de_DE.UTF-8
value of $LC_NUMERIC: de_DE.UTF-8
value of $LC_TIME: de_DE.UTF-8
value of $LANG: en_US.UTF-8
locale-coding-system: utf-8-unix
Major mode: Lisp Interaction
Minor modes in effect:
tooltip-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
Recent input:
<help-echo> <help-echo> <help-echo> <help-echo> <help-echo>
<help-echo> <help-echo> <menu-bar> <help-menu> <se
nd-emacs-bug-report>
Recent messages:
For information about GNU Emacs and the GNU system, type C-h C-a.
Load-path shadows:
None found.
Features:
(shadow sort gnus-util mail-extr emacsbug message dired format-spec
rfc822 mml easymenu mml-sec mm-decode mm-bodies mm-encode mail-parse
rfc2231 mailabbrev gmm-utils mailheader sendmail rfc2047 rfc2045
ietf-drums mm-util help-fns mail-prsvr mail-utils time-date tooltip
electric uniquify ediff-hook vc-hooks lisp-float-type mwheel x-win x-dnd
tool-bar dnd fontset image regexp-opt fringe tabulated-list newcomment
lisp-mode prog-mode register page menu-bar rfn-eshadow timer select
scroll-bar mouse jit-lock font-lock syntax facemenu font-core frame cham
georgian utf-8-lang misc-lang vietnamese tibetan thai tai-viet lao
korean japanese hebrew greek romanian slovak czech european ethiopic
indian cyrillic chinese case-table epa-hook jka-cmpr-hook help simple
abbrev minibuffer nadvice loaddefs button faces cus-face macroexp files
text-properties overlay sha1 md5 base64 format env code-pages mule
custom widget hashtable-print-readable backquote make-network-process
dbusbind gfilenotify dynamic-setting system-font-setting
font-render-setting move-toolbar gtk x-toolkit x multi-tty emacs)
Memory information:
((conses 8 77396 3417)
(symbols 24 18798 0)
(miscs 20 44 104)
(strings 16 12330 3483)
(string-bytes 1 302445)
(vectors 8 9350)
(vector-slots 4 393993 2394)
(floats 8 68 170)
(intervals 28 197 13)
(buffers 512 11)
(heap 1024 14407 754))
^ permalink raw reply [flat|nested] 4+ messages in thread
* bug#18016: 24.4.50; buffer menu
2014-07-14 15:45 bug#18016: 24.4.50; buffer menu emmettgrogan
@ 2014-07-16 21:22 ` Glenn Morris
2014-07-29 14:31 ` Rüdiger Sonderfeld
[not found] ` <handler.18016.D18016.140664433610266.notifdone@debbugs.gnu.org>
1 sibling, 1 reply; 4+ messages in thread
From: Glenn Morris @ 2014-07-16 21:22 UTC (permalink / raw)
To: 18016, Stefan Monnier; +Cc: emmettgrogan
emmettgrogan@freenet.de wrote:
[when selecting a buffer from the Buffers menu:]
> 'command-execute: Wrong type argument: commandp, ((nil) lambda nil
> (interactive) (funcall menu-bar-select-buffer-function #<buffer *Messages*>))'
Bisected to:
revno: 117463
committer: Stefan Monnier
timestamp: Tue 2014-07-01 21:49:31 -0400
message:
* doc/lispref/keymaps.texi (Key Lookup): Remove mention of indirect entries.
(Scanning Keymaps): Reword the `noindirect' argument.
* src/keymap.c (get_keyelt): Simplify.
(copy_keymap_item): Remove left-over code for when we had
key-shortcut caches.
Pretty misleading first-line summary on that log message...
^ permalink raw reply [flat|nested] 4+ messages in thread
* bug#18016: 24.4.50; buffer menu
2014-07-16 21:22 ` Glenn Morris
@ 2014-07-29 14:31 ` Rüdiger Sonderfeld
0 siblings, 0 replies; 4+ messages in thread
From: Rüdiger Sonderfeld @ 2014-07-29 14:31 UTC (permalink / raw)
To: 18016; +Cc: 18016-done, emmettgrogan
Fixed in r117607 in trunk.
I'm not sure if the change caused issues elsewhere. I simply updated the code
to no longer add the additional nil in front of the lambda. This is no longer
supported due to the change to `get_keyelt'.
Regards,
Rüdiger
On Wednesday 16 July 2014 17:22:44 Glenn Morris wrote:
> emmettgrogan@freenet.de wrote:
>
> [when selecting a buffer from the Buffers menu:]
>
> > 'command-execute: Wrong type argument: commandp, ((nil) lambda nil
> > (interactive) (funcall menu-bar-select-buffer-function #<buffer
> > *Messages*>))'
> Bisected to:
>
> revno: 117463
> committer: Stefan Monnier
> timestamp: Tue 2014-07-01 21:49:31 -0400
> message:
> * doc/lispref/keymaps.texi (Key Lookup): Remove mention of indirect
> entries. (Scanning Keymaps): Reword the `noindirect' argument.
> * src/keymap.c (get_keyelt): Simplify.
> (copy_keymap_item): Remove left-over code for when we had
> key-shortcut caches.
>
> Pretty misleading first-line summary on that log message...
^ permalink raw reply [flat|nested] 4+ messages in thread
[parent not found: <handler.18016.D18016.140664433610266.notifdone@debbugs.gnu.org>]
end of thread, other threads:[~2014-07-29 18:20 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-14 15:45 bug#18016: 24.4.50; buffer menu emmettgrogan
2014-07-16 21:22 ` Glenn Morris
2014-07-29 14:31 ` Rüdiger Sonderfeld
[not found] ` <handler.18016.D18016.140664433610266.notifdone@debbugs.gnu.org>
2014-07-29 18:20 ` bug#18016: closed (Re: bug#18016: 24.4.50; buffer menu) Emmett Grogan
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).