all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#69927: [PATCH] Fix function vtable--recompute-numerical
@ 2024-03-21  7:20 Adam Porter
  2024-03-21  7:56 ` Eli Zaretskii
  0 siblings, 1 reply; 2+ messages in thread
From: Adam Porter @ 2024-03-21  7:20 UTC (permalink / raw)
  To: 69927

[-- Attachment #1: Type: text/plain, Size: 105 bytes --]

Hi,

Please see the attached patch which fixes the function 
`vtable--recompute-numerical'.

Thanks,
Adam

[-- Attachment #2: 0001-Fix-vtable-recompute-numerical.patch --]
[-- Type: text/x-patch, Size: 1188 bytes --]

From 65fc7d8d17b8ead32de3d1986d5adccebc4ff7b2 Mon Sep 17 00:00:00 2001
From: Adam Porter <adam@alphapapa.net>
Date: Thu, 21 Mar 2024 02:13:28 -0500
Subject: [PATCH] Fix 'vtable--recompute-numerical'

* lisp/emacs-lisp/vtable.el (vtable--recompute-numerical): Fix function.

Each element of LINE being tested is a list, the first element of which
is the value actually being represented in the table.  Previously, the
NUMBERP test would always fail, because it was being compared with the
list rather than the intended value in it; that could cause the whole
table to be recomputed, sometimes unnecessarily.
---
 lisp/emacs-lisp/vtable.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/emacs-lisp/vtable.el b/lisp/emacs-lisp/vtable.el
index 15a430f5c26..5f7d3ae5210 100644
--- a/lisp/emacs-lisp/vtable.el
+++ b/lisp/emacs-lisp/vtable.el
@@ -743,7 +743,7 @@ vtable--recompute-numerical
     (seq-do-indexed
      (lambda (elem index)
        (when (and (vtable-column--numerical (elt columns index))
-                  (not (numberp elem)))
+                  (not (numberp (car elem))))
          (setq recompute t)))
      line)
     (when recompute
-- 
2.30.2


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

end of thread, other threads:[~2024-03-21  7:56 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-21  7:20 bug#69927: [PATCH] Fix function vtable--recompute-numerical Adam Porter
2024-03-21  7:56 ` Eli Zaretskii

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.