Procházet zdrojové kódy

Fix :package-version values

* lisp/ol.el (org-link-email-description-format):
* lisp/org-src.el (org-src-tab-acts-natively):
* lisp/org-table.el (org-table-header-line-p):
* lisp/org.el (org-loop-over-headlines-in-active-region):
(org-fontify-done-headline): Use correct (PACKAGE . VERSION-STRING)
value.  Remove :version keyword since :package-version overrides it.
Nicolas Goaziou před 4 roky
rodič
revize
7d35d46494
4 změnil soubory, kde provedl 5 přidání a 8 odebrání
  1. 1 1
      lisp/ol.el
  2. 1 2
      lisp/org-src.el
  3. 1 1
      lisp/org-table.el
  4. 2 4
      lisp/org.el

+ 1 - 1
lisp/ol.el

@@ -460,7 +460,7 @@ This is for example useful to limit the length of the subject.
 
 Examples: \"%f on: %.30s\", \"Email from %f\", \"Email %c\""
   :group 'org-link-store
-  :package-version '(Org . 9.3)
+  :package-version '(Org . "9.3")
   :type 'string
   :safe #'stringp)
 

+ 1 - 2
lisp/org-src.el

@@ -241,8 +241,7 @@ green, respectability.
   "If non-nil, the effect of TAB in a code block is as if it were
 issued in the language major mode buffer."
   :type 'boolean
-  :version "27.1"
-  :package-version "9.4"
+  :package-version '(Org . "9.4")
   :group 'org-babel)
 
 

+ 1 - 1
lisp/org-table.el

@@ -169,7 +169,7 @@ table, obtained by prompting the user."
 (defcustom org-table-header-line-p nil
   "Activate `org-table-header-line-mode' by default?"
   :type 'boolean
-  :package-version "9.4"
+  :package-version '(Org . "9.4")
   :group 'org-table)
 
 (defcustom org-table-default-size "5x2"

+ 2 - 4
lisp/org.el

@@ -919,8 +919,7 @@ equivalent option for agenda views."
 		 (const :tag "All headlines in active region" t)
 		 (const :tag "In active region, headlines at the same level than the first one" start-level)
 		 (string :tag "Tags/Property/Todo matcher"))
-  :version "27.1"
-  :package-version "9.4"
+  :package-version '(Org . "9.4")
   :group 'org-todo
   :group 'org-archive)
 
@@ -3592,8 +3591,7 @@ Normally, only the TODO/DONE keyword indicates the state of a headline.
 When this is non-nil, the headline after the keyword is set to the
 `org-headline-done' as an additional indication."
   :group 'org-appearance
-  :version "27.1"
-  :package-version "9.4"
+  :package-version '(Org . "9.4")
   :type 'boolean)
 
 (defcustom org-fontify-emphasized-text t