From: Barry Warsaw Date: Thu, 12 Oct 1995 21:15:49 +0000 (+0000) Subject: (py-indent-offset): this should be buffer local. X-Git-Tag: v1.4b1~522 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=52bc17cd9e895a13b03b2e96e0684fb77173dfef;p=thirdparty%2FPython%2Fcpython.git (py-indent-offset): this should be buffer local. --- diff --git a/Misc/python-mode.el b/Misc/python-mode.el index 91b1a9fa95a3..e98f355beb73 100644 --- a/Misc/python-mode.el +++ b/Misc/python-mode.el @@ -243,6 +243,8 @@ the Emacs bell is also rung as a warning.") ;; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ;; NO USER DEFINABLE VARIABLES BEYOND THIS POINT +(make-variable-buffer-local 'py-indent-offset) + ;; Differentiate between Emacs 18, Lucid Emacs, and Emacs 19. This ;; seems to be the standard way of checking this. ;; BAW - This is *not* the right solution. When at all possible,