Remove :version and :package-version in contributed packages

This commit is contained in:
Bastien Guerry 2013-03-05 17:46:41 +01:00
parent 1259dd8ff7
commit 8c4c277870
3 changed files with 5 additions and 25 deletions

View File

@ -71,15 +71,11 @@
If `org-mew-inbox-folder' is non-nil, `org-mew-open' locates the message
in this inbox folder as well as the folder specified by the link."
:group 'org-mew
:version "24.4"
:package-version '(Org . "8.0")
:type 'string)
(defcustom org-mew-use-id-db t
"Use ID database to locate the message if id.db is created."
:group 'org-mew
:version "24.4"
:package-version '(Org . "8.0")
:type 'boolean)
(defcustom org-mew-subject-alist
@ -90,8 +86,6 @@ in this inbox folder as well as the folder specified by the link."
1))
"Alist of subject regular expression and matched group number for search."
:group 'org-mew
:version "24.4"
:package-version '(Org . "8.0")
:type '(repeat (cons (regexp) (integer))))
(defcustom org-mew-capture-inbox-folders nil
@ -101,8 +95,6 @@ message if the message's folder is any of these folders and the
message is not marked. Nil means `org-mew-capture' never ask you
destination folders before capture."
:group 'org-mew
:version "24.4"
:package-version '(Org . "8.0")
:type '(repeat string))
(defcustom org-mew-capture-guess-alist nil
@ -117,8 +109,6 @@ the capture template associated with \"o\" key, and any other
messages will be captured with the capture template associated
with \"t\" key."
:group 'org-mew
:version "24.4"
:package-version '(Org . "8.0")
:type '(repeat (cons regexp string)))
;; Declare external functions and variables

View File

@ -46,13 +46,11 @@
(defcustom org-wl-link-remove-filter nil
"Remove filter condition if message is filter folder."
:group 'org-wl
:version "24.1"
:type 'boolean)
(defcustom org-wl-shimbun-prefer-web-links nil
"If non-nil create web links for shimbun messages."
:group 'org-wl
:version "24.1"
:type 'boolean)
(defcustom org-wl-nntp-prefer-web-links nil
@ -60,19 +58,16 @@
When folder name contains string \"gmane\" link to gmane,
googlegroups otherwise."
:type 'boolean
:version "24.1"
:group 'org-wl)
(defcustom org-wl-disable-folder-check t
"Disable check for new messages when open a link."
:type 'boolean
:version "24.1"
:group 'org-wl)
(defcustom org-wl-namazu-default-index nil
"Default namazu search index."
:type 'directory
:version "24.1"
:group 'org-wl)
;; Declare external functions and variables

View File

@ -64,8 +64,7 @@
(defgroup org-export-freemind nil
"Options for exporting Org mode files to Freemind Mindmap."
:tag "Org Export Freemind Mindmap"
:group 'org-export
:version "24.4")
:group 'org-export)
(defcustom org-freemind-styles
'((default . "<node>\n</node>")
@ -85,8 +84,7 @@ node style."
(const :tag "Default value" default)
(string :tag "Node style"))
:value-type (string :tag "Style spec"))
:group 'org-export-freemind
:version "24.4")
:group 'org-export-freemind)
(defcustom org-freemind-style-map-function 'org-freemind-style-map--automatic
"Function to map an Org element to it's node style.
@ -102,8 +100,7 @@ function. See `org-freemind-styles' for a list of named styles."
(function-item org-freemind-style-map--automatic)
(function-item org-freemind-style-map--default)
function)
:group 'org-export-freemind
:version "24.4")
:group 'org-export-freemind)
(defcustom org-freemind-section-format 'note
"Specify how outline sections are to be formatted.
@ -118,16 +115,14 @@ stand apart. Otherwise, use `inline'."
(const :tag "Append to outline title" inline)
(const :tag "Attach as a note" note)
(const :tag "Create a separate node" node))
:group 'org-export-freemind
:version "24.4")
:group 'org-export-freemind)
;;;; Debugging
(defcustom org-freemind-pretty-output nil
"Enable this to generate pretty Freemind Mindmap."
:type 'boolean
:group 'org-export-freemind
:version "24.4")
:group 'org-export-freemind)
;;; Internal Functions