* progmodes/ruby-mode.el (ruby-custom-encoding-magic-comment-template),
authorBozhidar Batsov <bozhidar@batsov.com>
Fri, 22 Nov 2013 12:36:38 +0000 (14:36 +0200)
committerBozhidar Batsov <bozhidar@batsov.com>
Fri, 22 Nov 2013 12:36:38 +0000 (14:36 +0200)
(ruby-encoding-magic-comment-style): Add :version.

lisp/ChangeLog
lisp/progmodes/ruby-mode.el

index a2348cc..87a7050 100644 (file)
@@ -2,6 +2,8 @@
 
        * progmodes/ruby-mode.el (ruby-custom-encoding-magic-comment-template):
        Improve docstring.
+       Add :version.
+       (ruby-encoding-magic-comment-style): Add :version.
 
 2013-11-22  Leo Liu  <sdl.web@gmail.com>
 
index f3cf84d..4258303 100644 (file)
@@ -270,13 +270,15 @@ even if it's not required."
           (const :tag "Emacs Style" emacs)
           (const :tag "Ruby Style" ruby)
           (const :tag "Custom Style" custom))
-  :group 'ruby)
+  :group 'ruby
+  :version "24.4")
 
 (defcustom ruby-custom-encoding-magic-comment-template "# encoding: %s"
   "A custom encoding comment template.
 It is used when `ruby-encoding-magic-comment-style' is set to `custom'."
   :type 'string
-  :group 'ruby)
+  :group 'ruby
+  :version "24.4")
 
 (defcustom ruby-use-encoding-map t
   "Use `ruby-encoding-map' to set encoding magic comment if this is non-nil."