Revert "lisp/org-table.el: fix warning about `eq' usage"

This reverts commit ee0961ba31.
This commit is contained in:
Bastien Guerry 2023-11-01 10:14:30 +01:00
parent ee0961ba31
commit 0ab6ab00c1
1 changed files with 1 additions and 1 deletions

View File

@ -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))))