From: Lars Ingebrigtsen Date: Thu, 12 May 2022 02:44:47 +0000 (+0200) Subject: Fix cperl-file-style defcustom type X-Git-Tag: emacs-29.0.90~1910^2~771 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e2bb618ea7599548d8f6e0f9e23db5a15a90d8ac;p=emacs.git Fix cperl-file-style defcustom type * lisp/progmodes/cperl-mode.el (cperl-file-style): Fix the type. --- diff --git a/lisp/progmodes/cperl-mode.el b/lisp/progmodes/cperl-mode.el index 5ed4832481c..4804b13ded6 100644 --- a/lisp/progmodes/cperl-mode.el +++ b/lisp/progmodes/cperl-mode.el @@ -567,7 +567,8 @@ This way enabling/disabling of menu items is more correct." (const "C++") (const "K&R") (const "BSD") - (const "Whitesmith")) + (const "Whitesmith") + (const :tag "Default" nil)) :version "29.1") ;;;###autoload(put 'cperl-file-style 'safe-local-variable 'stringp)