From b6ccee763fe0fa0ca31028e75221a42421d6898f Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Wed, 8 Apr 2015 13:23:35 +0200 Subject: [PATCH] ox-html: Silence byte-compiler * lisp/ox-html.el (org-html--build-meta-info): Use `org-remove-if-not' instead of `remove-if-not'. --- lisp/ox-html.el | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lisp/ox-html.el b/lisp/ox-html.el index 5b9d1194d..572e5a096 100644 --- a/lisp/ox-html.el +++ b/lisp/ox-html.el @@ -1697,9 +1697,9 @@ INFO is a plist used as a communication channel." (format "%s\n" title) (when (plist-get info :time-stamp-file) (format-time-string - (concat "\n"))) + (concat "\n"))) (format (if (org-html-html5-p info) (org-html-close-tag "meta" " charset=\"%s\"" info) @@ -1731,8 +1731,8 @@ INFO is a plist used as a communication channel." info) "\n")) (let ((viewport-options - (remove-if-not (lambda (cell) (org-string-nw-p (cadr cell))) - (plist-get info :html-viewport)))) + (org-remove-if-not (lambda (cell) (org-string-nw-p (cadr cell))) + (plist-get info :html-viewport)))) (and viewport-options (concat (org-html-close-tag -- 2.11.4.GIT