0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-29 18:36:26 +00:00

org-colview: Silence byte-compiler

* lisp/org-colview.el (org-columns--displayed-value): Silence
  byte-compiler.
This commit is contained in:
Nicolas Goaziou 2017-05-25 20:54:39 +02:00
parent 118ec40c53
commit 89bd7ad871

View file

@ -239,7 +239,7 @@ display, as a string."
(`(,_ ,_ ,_ ,_ nil) value)
;; If PRINTF is set, assume we are displaying a number and
;; obey to the format string.
(`(,_ ,name ,_ ,_ ,printf) (format printf (string-to-number value)))
(`(,_ ,_ ,_ ,_ ,printf) (format printf (string-to-number value)))
(_ (error "Invalid column specification format: %S" spec)))))
(defun org-columns--collect-values (&optional compiled-fmt)