From d35c255e44e64db7323ef278dd3c5da35808785f Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Fri, 25 Sep 1998 00:08:38 +0000 Subject: [PATCH] (py-guess-indent-offset): Only print message about py-indent-offset when in an interactive session (suggested by B. Wiener). --- Misc/python-mode.el | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Misc/python-mode.el b/Misc/python-mode.el index 61ae46518b5..96da5de7e8f 100644 --- a/Misc/python-mode.el +++ b/Misc/python-mode.el @@ -1802,9 +1802,10 @@ it's tried again going backward." (funcall (if global 'kill-local-variable 'make-local-variable) 'py-indent-offset) (setq py-indent-offset new-value) - (message "%s value of py-indent-offset set to %d" - (if global "Global" "Local") - py-indent-offset)) + (or noninteractive + (message "%s value of py-indent-offset set to %d" + (if global "Global" "Local") + py-indent-offset))) )) (defun py-comment-indent-function ()