aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/python.el
diff options
context:
space:
mode:
authorKaroly Lorentey2004-05-11 09:12:09 +0000
committerKaroly Lorentey2004-05-11 09:12:09 +0000
commitd9858e4f1889a61b216ae1f99053846362067ccc (patch)
treed0f18015bf1ebe06f489de11b74b4e4b5e98fdc3 /lisp/progmodes/python.el
parentab4b17bed77ba635b5654accdfde3fbdf125f3e6 (diff)
parenta57e8159253e6ddd74b0453de7c526a9895b9576 (diff)
downloademacs-d9858e4f1889a61b216ae1f99053846362067ccc.tar.gz
emacs-d9858e4f1889a61b216ae1f99053846362067ccc.zip
Merged in changes from CVS trunk.
Patches applied: * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-291 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-292 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-293 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-294 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-295 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-296 Allow restarting an existing debugger session that's exited * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-297 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-298 Update from CVS git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-162
Diffstat (limited to 'lisp/progmodes/python.el')
-rw-r--r--lisp/progmodes/python.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index 0fdaf652e50..214b6f0e24c 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -1343,7 +1343,7 @@ don't support `help'."
1343 (toggle-read-only 1) 1343 (toggle-read-only 1)
1344 (setq view-return-to-alist 1344 (setq view-return-to-alist
1345 (list (cons (selected-window) help-return-method)))))) 1345 (list (cons (selected-window) help-return-method))))))
1346 (help-setup-xref (list 'python-describe-symbol symbol)) 1346 (help-setup-xref (list 'python-describe-symbol symbol) (interactive-p))
1347 (with-output-to-temp-buffer (help-buffer) 1347 (with-output-to-temp-buffer (help-buffer)
1348 (with-current-buffer standard-output 1348 (with-current-buffer standard-output
1349 (set (make-local-variable 'comint-redirect-subvert-readonly) t) 1349 (set (make-local-variable 'comint-redirect-subvert-readonly) t)
@@ -1387,7 +1387,7 @@ Used with `eval-after-load'."
1387 (string-match "^Python \\([0-9]+\\.[0-9]+\\>\\)" s) 1387 (string-match "^Python \\([0-9]+\\.[0-9]+\\>\\)" s)
1388 (match-string 1 s))) 1388 (match-string 1 s)))
1389 ;; Whether info files have a Python version suffix, e.g. in Debian. 1389 ;; Whether info files have a Python version suffix, e.g. in Debian.
1390 (versioned 1390 (versioned
1391 (with-temp-buffer 1391 (with-temp-buffer
1392 (with-no-warnings (Info-mode)) 1392 (with-no-warnings (Info-mode))
1393 (condition-case () 1393 (condition-case ()