diff options
| author | Glenn Morris | 2012-06-18 14:23:59 -0400 |
|---|---|---|
| committer | Glenn Morris | 2012-06-18 14:23:59 -0400 |
| commit | 35647f79fdd4c5b0050ddb1249659d2a2edb532e (patch) | |
| tree | 82ebca37a0a596e10dd63aa2587c5acd9cd28d7a /lisp/progmodes/python.el | |
| parent | a633e6a2b408d34482a9fb689585c6a8a2aea2aa (diff) | |
| download | emacs-35647f79fdd4c5b0050ddb1249659d2a2edb532e.tar.gz emacs-35647f79fdd4c5b0050ddb1249659d2a2edb532e.zip | |
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/progmodes/python.el')
| -rw-r--r-- | lisp/progmodes/python.el | 8 |
1 files changed, 4 insertions, 4 deletions
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.") | |||
| 1569 | (get-buffer-process proc-buffer-name))) | 1569 | (get-buffer-process proc-buffer-name))) |
| 1570 | 1570 | ||
| 1571 | (define-obsolete-function-alias | 1571 | (define-obsolete-function-alias |
| 1572 | 'python-proc 'python-shell-internal-get-or-create-process "23.3") | 1572 | 'python-proc 'python-shell-internal-get-or-create-process "24.2") |
| 1573 | 1573 | ||
| 1574 | (define-obsolete-variable-alias | 1574 | (define-obsolete-variable-alias |
| 1575 | 'python-buffer 'python-shell-internal-buffer "23.3") | 1575 | 'python-buffer 'python-shell-internal-buffer "24.2") |
| 1576 | 1576 | ||
| 1577 | (defun python-shell-send-string (string &optional process msg) | 1577 | (defun python-shell-send-string (string &optional process msg) |
| 1578 | "Send STRING to inferior Python PROCESS. | 1578 | "Send STRING to inferior Python PROCESS. |
| @@ -1627,10 +1627,10 @@ Returns the output. See `python-shell-send-string-no-output'." | |||
| 1627 | (python-shell-internal-get-or-create-process) nil)) | 1627 | (python-shell-internal-get-or-create-process) nil)) |
| 1628 | 1628 | ||
| 1629 | (define-obsolete-function-alias | 1629 | (define-obsolete-function-alias |
| 1630 | 'python-send-receive 'python-shell-internal-send-string "23.3") | 1630 | 'python-send-receive 'python-shell-internal-send-string "24.2") |
| 1631 | 1631 | ||
| 1632 | (define-obsolete-function-alias | 1632 | (define-obsolete-function-alias |
| 1633 | 'python-send-string 'python-shell-internal-send-string "23.3") | 1633 | 'python-send-string 'python-shell-internal-send-string "24.2") |
| 1634 | 1634 | ||
| 1635 | (defun python-shell-send-region (start end) | 1635 | (defun python-shell-send-region (start end) |
| 1636 | "Send the region delimited by START and END to inferior Python process." | 1636 | "Send the region delimited by START and END to inferior Python process." |