summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorFabián Ezequiel Gallina <fgallina@gnu.org>2015-02-07 14:25:47 -0300
committerFabián Ezequiel Gallina <fgallina@gnu.org>2015-02-07 14:25:47 -0300
commit86c50b9af1e68ca87bfc9e6d0cdb28ae2e53cc32 (patch)
tree4f8317e1230eaebeb602bf60aa3278f0307e0004 /lisp
parentd1655783194f7b84ccac7114a2c341f10bc438b0 (diff)
downloademacs-86c50b9af1e68ca87bfc9e6d0cdb28ae2e53cc32.tar.gz
* lisp/progmodes/python.el (python-check-custom-command): Do not use
defvar-local for compat with Emacs<24.3.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/progmodes/python.el4
2 files changed, 8 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index a3abb1a4f1f..a02f9642e55 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2015-02-07 Fabián Ezequiel Gallina <fgallina@gnu.org>
+
+ * progmodes/python.el (python-check-custom-command): Do not use
+ defvar-local for compat with Emacs<24.3.
+
2015-02-07 Martin Rudalics <rudalics@gmx.at>
* frame.el (frame-notice-user-settings): Update
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."
:type 'string
:group 'python)
-(defvar-local python-check-custom-command nil
+(defvar python-check-custom-command nil
"Internal use.")
+;; XXX: Avoid `defvar-local' for compat with Emacs<24.3
+(make-variable-buffer-local 'python-check-custom-command)
(defun python-check (command)
"Check a Python file (default current buffer's file).