* lisp/org-table.el (org-table-make-reference): Add a FIXME comment

This commit is contained in:
Ihor Radchenko 2023-11-01 11:23:58 +02:00
parent 0ab6ab00c1
commit 1ef9e144aa
No known key found for this signature in database
GPG Key ID: 6470762A7DA11D8B
1 changed files with 4 additions and 0 deletions

View File

@ -2865,6 +2865,10 @@ list, `literal' is for the format specifier L."
(if (eq lispp 'literal)
elements
(if (and (eq elements "") (not keep-empty))
;; FIXME: This branch of `if' is never used because
;; strings are never `eq' here.
;; See
;; https://list.orgmode.org/orgmode/20230827214320.46754-1-salutis@me.com/
""
(prin1-to-string
(if numbers (string-to-number elements) elements))))