org-feed: Silence byte-compiler

This commit is contained in:
Nicolas Goaziou 2016-01-07 23:38:20 +01:00
parent 910418282a
commit 528a2741a4
1 changed files with 7 additions and 9 deletions

View File

@ -24,11 +24,11 @@
;; ;;
;;; Commentary: ;;; Commentary:
;; ;;
;; This module allows to create and change entries in an Org-mode ;; This module allows to create and change entries in an Org mode
;; file triggered by items in an RSS feed. The basic functionality is ;; file triggered by items in an RSS feed. The basic functionality
;; geared toward simply adding new items found in a feed as outline nodes ;; is geared toward simply adding new items found in a feed as
;; to an Org file. Using hooks, arbitrary actions can be triggered for ;; outline nodes to an Org file. Using hooks, arbitrary actions can
;; new or changed items. ;; be triggered for new or changed items.
;; ;;
;; Selecting feeds and target locations ;; Selecting feeds and target locations
;; ------------------------------------ ;; ------------------------------------
@ -77,10 +77,8 @@
;; org-feed.el needs to keep track of which feed items have been handled ;; org-feed.el needs to keep track of which feed items have been handled
;; before, so that they will not be handled again. For this, org-feed.el ;; before, so that they will not be handled again. For this, org-feed.el
;; stores information in a special drawer, FEEDSTATUS, under the heading ;; stores information in a special drawer, FEEDSTATUS, under the heading
;; that received the input of the feed. You should add FEEDSTATUS ;; that received the input of the feed.
;; to your list of drawers in the files that receive feed input:
;; ;;
;; #+DRAWERS: PROPERTIES CLOCK LOGBOOK RESULTS FEEDSTATUS
;; ;;
;; Acknowledgments ;; Acknowledgments
;; --------------- ;; ---------------
@ -101,8 +99,8 @@
(declare-function xml-substitute-special "xml" (string)) (declare-function xml-substitute-special "xml" (string))
(declare-function org-capture-escaped-% "org-capture" ()) (declare-function org-capture-escaped-% "org-capture" ())
(declare-function org-capture-expand-embedded-elisp "org-capture" (&optional mark))
(declare-function org-capture-inside-embedded-elisp-p "org-capture" ()) (declare-function org-capture-inside-embedded-elisp-p "org-capture" ())
(declare-function org-capture-expand-embedded-elisp "org-capture" ())
(defgroup org-feed nil (defgroup org-feed nil
"Options concerning RSS feeds as inputs for Org files." "Options concerning RSS feeds as inputs for Org files."