emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master b3f04eb6849: Avoid recomputing the whole table in 'vtable--recomp


From: Eli Zaretskii
Subject: master b3f04eb6849: Avoid recomputing the whole table in 'vtable--recompute-numerical'
Date: Thu, 21 Mar 2024 03:46:44 -0400 (EDT)

branch: master
commit b3f04eb68499f285e05b5b74e9cbd67f3140fb3c
Author: Adam Porter <adam@alphapapa.net>
Commit: Eli Zaretskii <eliz@gnu.org>

    Avoid recomputing the whole table in 'vtable--recompute-numerical'
    
    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 (vtable--recompute-numerical): Test the
    car of ELEM, not ELEM itself, which is a list.  (Bug#69927)
---
 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 @@ If NEXT, do the next column."
     (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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]