aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/python.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/progmodes/python.el')
-rw-r--r--lisp/progmodes/python.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index 65515362b4e..de251181c14 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -3849,8 +3849,10 @@ The skeleton will be bound to python-skeleton-NAME."
3849 :type 'string 3849 :type 'string
3850 :group 'python) 3850 :group 'python)
3851 3851
3852(defvar-local python-check-custom-command nil 3852(defvar python-check-custom-command nil
3853 "Internal use.") 3853 "Internal use.")
3854;; XXX: Avoid `defvar-local' for compat with Emacs<24.3
3855(make-variable-buffer-local 'python-check-custom-command)
3854 3856
3855(defun python-check (command) 3857(defun python-check (command)
3856 "Check a Python file (default current buffer's file). 3858 "Check a Python file (default current buffer's file).