commit ee0961ba3170f7bc89c2f6fabda4b6ea2e7a2c88 Author: Karl Fogel AuthorDate: Mon Oct 30 10:33:29 2023 -0500 Commit: Bastien Guerry CommitDate: Tue Oct 31 21:38:23 2023 +0100 lisp/org-table.el: fix warning about `eq' usage * lisp/org-table.el (org-table-make-reference): Use `equal' instead of `eq' to compare strings. This change makes the following warning go away: Warning (comp): org-table.el:2867:23: \ Warning: `eq' called with literal string that may never match (arg 2) This change does not affect the behavior of `org-table-make-reference' because `eq' treats all instances of the empty string as the same object anyway, e.g., `(eq (string-trim "aaabbb" "a+" "b+") "")' ==> t. The only effect of this change is to eliminate the warning. M lisp/org-table.el