aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2014-10-29 13:40:26 -0400
committerGlenn Morris2014-10-29 13:40:26 -0400
commitcc99f920f507d28bb1422f8a3d52723ddc734c8a (patch)
tree0f5028e7f6bad4d29edcaa598069bf81cd01f09f
parentfcc50328eefd1a8766c49c8eb921707a86d9dde9 (diff)
downloademacs-cc99f920f507d28bb1422f8a3d52723ddc734c8a.tar.gz
emacs-cc99f920f507d28bb1422f8a3d52723ddc734c8a.zip
* lisp/net/rcirc.el (rcirc-fill-column): Unbump :version.
A change in the possible :type with no change in the default does not merit a :version bump. Mark :risky.
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/net/rcirc.el2
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index c0e0c4c1919..1def6877f2c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
12014-10-29 Glenn Morris <rgm@gnu.org> 12014-10-29 Glenn Morris <rgm@gnu.org>
2 2
3 * net/rcirc.el (rcirc-fill-column): Unbump :version. Mark :risky.
4
3 * version.el (emacs-bzr-version, emacs-bzr-get-version): 5 * version.el (emacs-bzr-version, emacs-bzr-get-version):
4 Revert 2014-10-26 change. 6 Revert 2014-10-26 change.
5 7
diff --git a/lisp/net/rcirc.el b/lisp/net/rcirc.el
index 858fad4c060..411932142e9 100644
--- a/lisp/net/rcirc.el
+++ b/lisp/net/rcirc.el
@@ -148,7 +148,7 @@ for connections using SSL/TLS."
148If nil, use value of `fill-column'. 148If nil, use value of `fill-column'.
149If a function (e.g., `frame-text-width' or `window-text-width'), 149If a function (e.g., `frame-text-width' or `window-text-width'),
150call it to compute the number of columns." 150call it to compute the number of columns."
151 :version "25.1" 151 :risky t ; can get funcalled
152 :type '(choice (const :tag "Value of `fill-column'" nil) 152 :type '(choice (const :tag "Value of `fill-column'" nil)
153 (integer :tag "Number of columns") 153 (integer :tag "Number of columns")
154 (function :tag "Function returning the number of columns")) 154 (function :tag "Function returning the number of columns"))