From 0ab6ab00c177b7ce1111c881f9dc2e9b4c98a202 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Wed, 1 Nov 2023 10:14:30 +0100 Subject: [PATCH] Revert "lisp/org-table.el: fix warning about `eq' usage" This reverts commit ee0961ba3170f7bc89c2f6fabda4b6ea2e7a2c88. --- lisp/org-table.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org-table.el b/lisp/org-table.el index 860d7720d..f5a433c7d 100644 --- a/lisp/org-table.el +++ b/lisp/org-table.el @@ -2864,7 +2864,7 @@ list, `literal' is for the format specifier L." (if lispp (if (eq lispp 'literal) elements - (if (and (equal elements "") (not keep-empty)) + (if (and (eq elements "") (not keep-empty)) "" (prin1-to-string (if numbers (string-to-number elements) elements))))