]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix a defcustom :type
authorMauro Aranda <maurooaranda@gmail.com>
Thu, 12 Oct 2023 13:17:57 +0000 (10:17 -0300)
committerDmitry Gutov <dmitry@gutov.dev>
Thu, 12 Oct 2023 16:10:58 +0000 (19:10 +0300)
* lisp/progmodes/ruby-mode.el (ruby-insert-encoding-magic-comment):
Allow always-utf8.  (Bug#66498)

lisp/progmodes/ruby-mode.el

index 9d80bbd72dd984447c44d8c2d47c9a78353f9ee0..5c34ddc562bcdbe0057e0b8394233a691d74ef4d 100644 (file)
@@ -516,7 +516,9 @@ is customizable via `ruby-encoding-magic-comment-style'.
 
 When set to `always-utf8' an utf-8 comment will always be added,
 even if it's not required."
-  :type 'boolean :group 'ruby)
+  :type '(choice (const :tag "Don't insert" nil)
+                 (const :tag "Insert utf-8 comment always" always-utf8)
+                 (const :tag "Insert only when required" t)))
 
 (defcustom ruby-encoding-magic-comment-style 'ruby
   "The style of the magic encoding comment to use."