aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2012-02-08 23:59:13 -0800
committerGlenn Morris2012-02-08 23:59:13 -0800
commit354998cdb6a7ff15847ca59e1a5d0e14b972890e (patch)
treea30a9285447760fdbbf1a17fd999926697f2daca
parentf998bbe793e9ae7a8df071fec7de63879e67ef1a (diff)
downloademacs-354998cdb6a7ff15847ca59e1a5d0e14b972890e.tar.gz
emacs-354998cdb6a7ff15847ca59e1a5d0e14b972890e.zip
Add some custom :version tags
* lisp/progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max): Add :version tags.
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/progmodes/cc-guess.el2
2 files changed, 5 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 0af831976f0..254e1226a07 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
12012-02-09 Glenn Morris <rgm@gnu.org> 12012-02-09 Glenn Morris <rgm@gnu.org>
2 2
3 * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
4 Add :version tags.
5
3 * progmodes/compile.el (compilation-first-column) 6 * progmodes/compile.el (compilation-first-column)
4 (compilation-error-screen-columns, compilation-filter-start): Doc fixes. 7 (compilation-error-screen-columns, compilation-filter-start): Doc fixes.
5 8
diff --git a/lisp/progmodes/cc-guess.el b/lisp/progmodes/cc-guess.el
index fcd6a443b67..4dd802ead0b 100644
--- a/lisp/progmodes/cc-guess.el
+++ b/lisp/progmodes/cc-guess.el
@@ -85,6 +85,7 @@ Discard an examined offset if its absolute value is greater than this.
85 85
86The offset of a line included in the indent information returned by 86The offset of a line included in the indent information returned by
87`c-guess-basic-syntax'." 87`c-guess-basic-syntax'."
88 :version "24.1"
88 :type 'integer 89 :type 'integer
89 :group 'c) 90 :group 'c)
90 91
@@ -92,6 +93,7 @@ The offset of a line included in the indent information returned by
92 "The maximum region size for examining indent information with `c-guess'. 93 "The maximum region size for examining indent information with `c-guess'.
93It takes a long time to examine indent information from a large region; 94It takes a long time to examine indent information from a large region;
94this option helps you limit that time. `nil' means no limit." 95this option helps you limit that time. `nil' means no limit."
96 :version "24.1"
95 :type 'integer 97 :type 'integer
96 :group 'c) 98 :group 'c)
97 99