From 1ef9e144aa897a9e71fac4c20799603da16b3e78 Mon Sep 17 00:00:00 2001 From: Ihor Radchenko Date: Wed, 1 Nov 2023 11:23:58 +0200 Subject: [PATCH] * lisp/org-table.el (org-table-make-reference): Add a FIXME comment --- lisp/org-table.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lisp/org-table.el b/lisp/org-table.el index f5a433c7d..bac44f7a8 100644 --- a/lisp/org-table.el +++ b/lisp/org-table.el @@ -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))))