all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#20921: 25.0.50; `tabulated-list-print' bad logic
@ 2015-06-28 20:46 Drew Adams
  2015-06-29  0:18 ` Artur Malabarba
  0 siblings, 1 reply; 3+ messages in thread
From: Drew Adams @ 2015-06-28 20:46 UTC (permalink / raw)
  To: 20921

This new code seems quite wrong to me:

(and remember-pos
     (when (eq (window-buffer) (current-buffer))
       (setq window-line (count-screen-lines (window-start) (point))))
     (setq entry-id (tabulated-list-get-id))
     (setq saved-col (current-column)))

That's equivalent to this (which is clearer):

(and remember-pos
     (eq (window-buffer) (current-buffer))
     (setq window-line (count-screen-lines (window-start) (point)))
     (setq entry-id (tabulated-list-get-id))
     (setq saved-col (current-column)))

Previously, the code was this:

(and remember-pos
     (setq entry-id (tabulated-list-get-id))
     (setq saved-col (current-column)))

When I use the new code, `window-buffer' is the original buffer from
which I call my command that uses tabulated-list-mode. `current-buffer'
is the buffer that will contain the tabulated list, and it is not yet
displayed.  So that test fails, and none of the variables get assigned
values.  This makes no sense to me.

When code calls `tabulated-list-print', the current buffer must pretty
much always be the buffer that will get the tabulated list.  Why the
comparison with `window-buffer', which could be anything and which in
most cases will *not* be the tabulated-list buffer?

This new code looks like it might be a misguided hack to try to deal
with the new parameter UPDATE.  Not ready for prime time, I think.

In GNU Emacs 25.0.50.1 (i686-pc-mingw32)
 of 2015-05-29 on LEG570
Windowing system distributor `Microsoft Corp.', version 6.1.7601
Configured using:
 `configure --prefix=/mingw32 --host=i686-pc-mingw32
 --enable-checking=yes,glyphs'





^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-06-29  9:12 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-28 20:46 bug#20921: 25.0.50; `tabulated-list-print' bad logic Drew Adams
2015-06-29  0:18 ` Artur Malabarba
2015-06-29  9:12   ` Artur Malabarba

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.