* lisp/org-table.el (org-table-make-reference): Add a FIXME comment
This commit is contained in:
parent
0ab6ab00c1
commit
1ef9e144aa
|
@ -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))))
|
||||
|
|
Loading…
Reference in New Issue