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.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index c828de10304..95fc52d4d54 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -3281,7 +3281,7 @@ The skeleton will be bound to python-skeleton-NAME."
3281(defun python-ffap-module-path (module) 3281(defun python-ffap-module-path (module)
3282 "Function for `ffap-alist' to return path for MODULE." 3282 "Function for `ffap-alist' to return path for MODULE."
3283 (let ((process (or 3283 (let ((process (or
3284 (and (eq major-mode 'inferior-python-mode) 3284 (and (derived-mode-p 'inferior-python-mode)
3285 (get-buffer-process (current-buffer))) 3285 (get-buffer-process (current-buffer)))
3286 (python-shell-get-process)))) 3286 (python-shell-get-process))))
3287 (if (not process) 3287 (if (not process)