aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorGlenn Morris2012-10-06 13:30:26 -0700
committerGlenn Morris2012-10-06 13:30:26 -0700
commitd1a1c7e649e0ad44f1426abce72a5ff45a07e8fc (patch)
treeb018d361b60a3bf0583e9dcc1d85d359e151e27a /lisp/textmodes
parentef35abb4ad34ef7038ee99742c8646fc6f9914ed (diff)
downloademacs-d1a1c7e649e0ad44f1426abce72a5ff45a07e8fc.tar.gz
emacs-d1a1c7e649e0ad44f1426abce72a5ff45a07e8fc.zip
Add missing :version tags
* profiler.el (profiler): Add missing group :version tag. * avoid.el (mouse-avoidance-banish-position): * proced.el (proced-renice-command): * calc/calc.el (calc-ensure-consistent-units): * calendar/icalendar.el (icalendar-import-format-uid): * net/tramp.el (tramp-save-ad-hoc-proxies): * progmodes/bug-reference.el (bug-reference-bug-regexp): * progmodes/flymake.el (flymake-error-bitmap) (flymake-warning-bitmap, flymake-fringe-indicator-position): * progmodes/sh-script.el (sh-indent-after-continuation): * progmodes/verilog-mode.el (verilog-auto-template-warn-unused) (verilog-before-save-font-hook, verilog-after-save-font-hook): * progmodes/vhdl-mode.el (vhdl-makefile-default-targets) (vhdl-array-index-record-field-in-sensitivity-list) (vhdl-indent-comment-like-next-code-line): * textmodes/reftex-vars.el (reftex-ref-style-alist) (reftex-ref-macro-prompt, reftex-ref-style-default-list) (reftex-cite-key-separator, reftex-create-bibtex-header) (reftex-create-bibtex-footer): * textmodes/rst.el (rst-new-adornment-down, rst-indent-field) (rst-indent-literal-normal, rst-indent-literal-minimized) (rst-indent-comment): Add missing custom :version tags. * cedet/semantic/complete.el (semantic-displayor-tooltip-mode) (semantic-displayor-tooltip-initial-max-tags) (semantic-displayor-tooltip-max-tags): Add missing custom :version tags. * cedet/ede/linux.el (project-linux): Add missing group :version tag. * cedet/semantic/complete.el (semantic-displayor-tooltip-max-tags): Doc fix. * erc/erc.el (erc-lurker): * erc/erc-desktop-notifications.el (erc-notifications): Add missing group :version tags. * gnus/gnus-notifications.el (gnus-notifications): Add missing group :version tag. * gnus/gnus-msg.el (gnus-gcc-pre-body-encode-hook) (gnus-gcc-post-body-encode-hook): * gnus/gnus-sync.el (gnus-sync-lesync-name) (gnus-sync-lesync-install-topics): Add missing custom :version tags.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/reftex-vars.el6
-rw-r--r--lisp/textmodes/rst.el5
2 files changed, 11 insertions, 0 deletions
diff --git a/lisp/textmodes/reftex-vars.el b/lisp/textmodes/reftex-vars.el
index df3d729adca..264d6e21839 100644
--- a/lisp/textmodes/reftex-vars.el
+++ b/lisp/textmodes/reftex-vars.el
@@ -968,6 +968,7 @@ the macro type is being prompted for. (See also
968`reftex-ref-macro-prompt'.) The keys, represented as characters, 968`reftex-ref-macro-prompt'.) The keys, represented as characters,
969have to be unique." 969have to be unique."
970 :group 'reftex-referencing-labels 970 :group 'reftex-referencing-labels
971 :version "24.3"
971 :type '(alist :key-type (string :tag "Style name") 972 :type '(alist :key-type (string :tag "Style name")
972 :value-type (group (choice :tag "Package" 973 :value-type (group (choice :tag "Package"
973 (const :tag "Any package" t) 974 (const :tag "Any package" t)
@@ -979,6 +980,7 @@ have to be unique."
979(defcustom reftex-ref-macro-prompt t 980(defcustom reftex-ref-macro-prompt t
980 "If non-nil, `reftex-reference' prompts for the reference macro." 981 "If non-nil, `reftex-reference' prompts for the reference macro."
981 :group 'reftex-referencing-labels 982 :group 'reftex-referencing-labels
983 :version "24.3"
982 :type 'boolean) 984 :type 'boolean)
983 985
984(defcustom reftex-vref-is-default nil 986(defcustom reftex-vref-is-default nil
@@ -1014,6 +1016,7 @@ can be cycled in the buffer for selecting a label. The entries
1014in the list have to match the respective reference style names 1016in the list have to match the respective reference style names
1015used in the variable `reftex-ref-style-alist'." 1017used in the variable `reftex-ref-style-alist'."
1016 :group 'reftex-referencing-labels 1018 :group 'reftex-referencing-labels
1019 :version "24.3"
1017 :type `(set ,@(mapcar (lambda (x) (list 'const (car x))) 1020 :type `(set ,@(mapcar (lambda (x) (list 'const (car x)))
1018 reftex-ref-style-alist))) 1021 reftex-ref-style-alist)))
1019 1022
@@ -1257,16 +1260,19 @@ should return the string to insert into the buffer."
1257(defcustom reftex-cite-key-separator "," 1260(defcustom reftex-cite-key-separator ","
1258 "String to be used for separating several keys in a \\cite macro." 1261 "String to be used for separating several keys in a \\cite macro."
1259 :group 'reftex-citation-support 1262 :group 'reftex-citation-support
1263 :version "24.3"
1260 :type 'string) 1264 :type 'string)
1261 1265
1262(defcustom reftex-create-bibtex-header nil 1266(defcustom reftex-create-bibtex-header nil
1263 "Header to insert in BibTeX files generated by RefTeX." 1267 "Header to insert in BibTeX files generated by RefTeX."
1264 :group 'reftex-citation-support 1268 :group 'reftex-citation-support
1269 :version "24.3"
1265 :type 'string) 1270 :type 'string)
1266 1271
1267(defcustom reftex-create-bibtex-footer nil 1272(defcustom reftex-create-bibtex-footer nil
1268 "Footer to insert in BibTeX files generated by RefTeX." 1273 "Footer to insert in BibTeX files generated by RefTeX."
1269 :group 'reftex-citation-support 1274 :group 'reftex-citation-support
1275 :version "24.3"
1270 :type 'string) 1276 :type 'string)
1271 1277
1272;; Index Support Configuration 1278;; Index Support Configuration
diff --git a/lisp/textmodes/rst.el b/lisp/textmodes/rst.el
index 869da63064a..202c36c2e4a 100644
--- a/lisp/textmodes/rst.el
+++ b/lisp/textmodes/rst.el
@@ -1545,6 +1545,7 @@ b. a negative numerical argument, which generally inverts the
1545 :type '(choice 1545 :type '(choice
1546 (const :tag "Same level as previous one" nil) 1546 (const :tag "Same level as previous one" nil)
1547 (const :tag "One level down relative to the previous one" t)) 1547 (const :tag "One level down relative to the previous one" t))
1548 :version "24.3"
1548 :package-version '(rst . "1.1.0")) 1549 :package-version '(rst . "1.1.0"))
1549(rst-testcover-defcustom) 1550(rst-testcover-defcustom)
1550 1551
@@ -2845,24 +2846,28 @@ here."
2845(defcustom rst-indent-field 3 2846(defcustom rst-indent-field 3
2846 "Indentation for first line after a field or 0 to always indent for content." 2847 "Indentation for first line after a field or 0 to always indent for content."
2847 :group 'rst-indent 2848 :group 'rst-indent
2849 :version "24.3"
2848 :type '(integer)) 2850 :type '(integer))
2849(rst-testcover-defcustom) 2851(rst-testcover-defcustom)
2850 2852
2851(defcustom rst-indent-literal-normal 3 2853(defcustom rst-indent-literal-normal 3
2852 "Default indentation for literal block after a markup on an own line." 2854 "Default indentation for literal block after a markup on an own line."
2853 :group 'rst-indent 2855 :group 'rst-indent
2856 :version "24.3"
2854 :type '(integer)) 2857 :type '(integer))
2855(rst-testcover-defcustom) 2858(rst-testcover-defcustom)
2856 2859
2857(defcustom rst-indent-literal-minimized 2 2860(defcustom rst-indent-literal-minimized 2
2858 "Default indentation for literal block after a minimized markup." 2861 "Default indentation for literal block after a minimized markup."
2859 :group 'rst-indent 2862 :group 'rst-indent
2863 :version "24.3"
2860 :type '(integer)) 2864 :type '(integer))
2861(rst-testcover-defcustom) 2865(rst-testcover-defcustom)
2862 2866
2863(defcustom rst-indent-comment 3 2867(defcustom rst-indent-comment 3
2864 "Default indentation for first line of a comment." 2868 "Default indentation for first line of a comment."
2865 :group 'rst-indent 2869 :group 'rst-indent
2870 :version "24.3"
2866 :type '(integer)) 2871 :type '(integer))
2867(rst-testcover-defcustom) 2872(rst-testcover-defcustom)
2868 2873