소스 검색

org-colview: Silence byte-compiler

* lisp/org-colview.el (org-columns--displayed-value): Silence
  byte-compiler.
Nicolas Goaziou 7 년 전
부모
커밋
89bd7ad871
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lisp/org-colview.el

+ 1 - 1
lisp/org-colview.el

@@ -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)