branch: elpa/org-contrib
commit 65821e47bfc5865a80be5d8a442dce5ff369a6ea
Author: Francesc Rocher <francesc.roc...@gmail.com>
Commit: Bastien Guerry <b...@gnu.org>

    Support numeric argument values in src definition lines
---
 lisp/org-eldoc.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/org-eldoc.el b/lisp/org-eldoc.el
index e662b50..eb949f9 100644
--- a/lisp/org-eldoc.el
+++ b/lisp/org-eldoc.el
@@ -85,7 +85,7 @@
                 (concat
                  (propertize (symbol-name (car elem)) 'face 'org-list-dt)
                  " "
-                 (propertize (cdr elem) 'face 'org-verbatim)
+                 (propertize (format "%s" (cdr elem)) 'face 'org-verbatim)
                  " ")))
             hdr-args " ")))))))
 

Reply via email to