From: Bozhidar Batsov Date: Fri, 22 Nov 2013 12:36:38 +0000 (+0200) Subject: * progmodes/ruby-mode.el (ruby-custom-encoding-magic-comment-template), X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~743 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=15ba21820624cf06441af02c48f9319024dff9d6;p=emacs.git * progmodes/ruby-mode.el (ruby-custom-encoding-magic-comment-template), (ruby-encoding-magic-comment-style): Add :version. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a2348ccf8f8..87a7050eb35 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -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 diff --git a/lisp/progmodes/ruby-mode.el b/lisp/progmodes/ruby-mode.el index f3cf84d4056..4258303cd8c 100644 --- a/lisp/progmodes/ruby-mode.el +++ b/lisp/progmodes/ruby-mode.el @@ -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."