From 96ae324ed1b9c4859e0a0a77a642e8fe735a2051 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 13 Mar 2018 09:28:24 +0100 Subject: [PATCH] org-compat: Silence byte-compiler * lisp/org-compat.el (fboundp): Silence byte-compiler. --- lisp/org-compat.el | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/lisp/org-compat.el b/lisp/org-compat.el index a22b5f1a6..e7ea4153e 100644 --- a/lisp/org-compat.el +++ b/lisp/org-compat.el @@ -91,12 +91,9 @@ (if (fboundp 'string-collate-lessp) (defalias 'org-string-collate-lessp 'string-collate-lessp) - (defun org-string-collate-lessp (s1 s2 &optional locale ignore-case) + (defun org-string-collate-lessp (s1 s2 &rest _) "Return non-nil if STRING1 is less than STRING2 in lexicographic order. - -Case is significant. - -LOCALE and IGNORE-CASE are ignored." +Case is significant." (string< s1 s2)))