summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2012-06-18 14:23:59 -0400
committerGlenn Morris <rgm@gnu.org>2012-06-18 14:23:59 -0400
commit35647f79fdd4c5b0050ddb1249659d2a2edb532e (patch)
tree82ebca37a0a596e10dd63aa2587c5acd9cd28d7a /lisp
parenta633e6a2b408d34482a9fb689585c6a8a2aea2aa (diff)
downloademacs-35647f79fdd4c5b0050ddb1249659d2a2edb532e.tar.gz
Fix python.el obsolescence versions
* lisp/progmodes/python.el (python-proc, python-buffer) (python-send-receive, python-send-string): Fix obsolete versions.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/progmodes/python.el8
2 files changed, 9 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 2bd92de45e7..4810238c86a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2012-06-18 Glenn Morris <rgm@gnu.org>
+
+ * progmodes/python.el (python-proc, python-buffer)
+ (python-send-receive, python-send-string): Fix obsolete versions.
+
2012-06-18 Martin Rudalics <rudalics@gmx.at>
* window.el (special-display-p): Completely remove stringp
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index db21d800e70..3cbd744e3e7 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -1569,10 +1569,10 @@ there for compatibility with CEDET.")
(get-buffer-process proc-buffer-name)))
(define-obsolete-function-alias
- 'python-proc 'python-shell-internal-get-or-create-process "23.3")
+ 'python-proc 'python-shell-internal-get-or-create-process "24.2")
(define-obsolete-variable-alias
- 'python-buffer 'python-shell-internal-buffer "23.3")
+ 'python-buffer 'python-shell-internal-buffer "24.2")
(defun python-shell-send-string (string &optional process msg)
"Send STRING to inferior Python PROCESS.
@@ -1627,10 +1627,10 @@ Returns the output. See `python-shell-send-string-no-output'."
(python-shell-internal-get-or-create-process) nil))
(define-obsolete-function-alias
- 'python-send-receive 'python-shell-internal-send-string "23.3")
+ 'python-send-receive 'python-shell-internal-send-string "24.2")
(define-obsolete-function-alias
- 'python-send-string 'python-shell-internal-send-string "23.3")
+ 'python-send-string 'python-shell-internal-send-string "24.2")
(defun python-shell-send-region (start end)
"Send the region delimited by START and END to inferior Python process."