0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-08-25 09:02:52 +00:00

Revert "org-table-make-reference: Disable compiler warning"

This reverts commit bdc60fb936.

Apparently, the branch of if used sometimes and that sometimes is
covered by tests.  Strange.  Leave it be for now.
This commit is contained in:
Ihor Radchenko 2024-01-11 15:45:09 +01:00
parent bdc60fb936
commit fad90df535
No known key found for this signature in database
GPG key ID: 6470762A7DA11D8B

View file

@ -2864,14 +2864,13 @@ list, `literal' is for the format specifier L."
(if lispp
(if (eq lispp 'literal)
elements
(if nil
;; (and (eq elements "") (not keep-empty))
(if (and (eq elements "") (not keep-empty))
;; FIXME: This branch of `if' is never used because
;; strings are never `eq' here. But changing to
;; `equal' breaks tests.
;; See
;; https://list.orgmode.org/orgmode/20230827214320.46754-1-salutis@me.com/
""
""
(prin1-to-string
(if numbers (string-to-number elements) elements))))
(if (string-match "\\S-" elements)