From 7d3ed7c11d3a2207232a0bd36f78304dc9477fac Mon Sep 17 00:00:00 2001 From: Morgan Willcock Date: Sun, 28 Dec 2025 14:48:47 +0000 Subject: [PATCH] Fix specification of 'python-indent-guess-indent-offset-verbose' * lisp/progmodes/python.el (python-indent-guess-indent-offset-verbose): Fix typo in configuration of safe value function. (Bug#80085) --- lisp/progmodes/python.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index c4cf7ec46cf..81896b7ab64 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el @@ -1463,7 +1463,7 @@ For NODE, OVERRIDE, START, END, and ARGS, see "Non-nil means to emit a warning when indentation guessing fails." :version "25.1" :type 'boolean - :safe' booleanp) + :safe 'booleanp) (defcustom python-indent-trigger-commands '(indent-for-tab-command yas-expand yas/expand)