Hello, I was trying to fix the org.el compilation warnings. I could fix just this one: From 4e2de052dd05e66ed71ce070e4413859e2c13238 Mon Sep 17 00:00:00 2001 From: Kaushal Modi Date: Thu, 25 May 2017 18:24:34 -0400 Subject: [PATCH] org: Silence byte-compiler * lisp/org.el (org-agenda-include-inactive-timestamps): Silence byte-compiler. --- lisp/org.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lisp/org.el b/lisp/org.el index 946d8af8c..d1c70ab97 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -175,6 +175,8 @@ Stars are put in group 1 and the trimmed body in group 2.") (declare-function org-export-get-environment "ox" (&optional backend subtreep ext-plist)) (declare-function org-latex-make-preamble "ox-latex" (info &optional template snippet?)) +(defvar org-agenda-include-inactive-timestamps) ;Silence byte-compiler + (defsubst org-uniquify (list) "Non-destructively remove duplicate elements from LIST." (let ((res (copy-sequence list))) (delete-dups res))) -- 2.13.0 There are still these 4 warnings for org.el: In org-goto-map: org.el:7502:9:Warning: function org-goto-map used to take 0+ arguments, now takes 0 In org-todo: org.el:12488:12:Warning: function org-todo used to take 0+ arguments, now takes 0-1 In org-store-log-note: org.el:13725:8:Warning: function org-store-log-note used to take 0+ arguments, now takes 0 In org-self-insert-command: org.el:20000:32:Warning: function org-self-insert-command used to take 0+ arguments, now takes 1 -- Kaushal Modi