emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/emacs-24 r108652: Fix python.el obsolescenc


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-24 r108652: Fix python.el obsolescence versions
Date: Fri, 02 Nov 2012 02:25:03 -0000
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 108652
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Mon 2012-06-18 14:23:59 -0400
message:
  Fix python.el obsolescence versions
  
  * lisp/progmodes/python.el (python-proc, python-buffer)
  (python-send-receive, python-send-string): Fix obsolete versions.
modified:
  lisp/ChangeLog
  lisp/progmodes/python.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-06-18 06:22:22 +0000
+++ b/lisp/ChangeLog    2012-06-18 18:23:59 +0000
@@ -1,3 +1,8 @@
+2012-06-18  Glenn Morris  <address@hidden>
+
+       * progmodes/python.el (python-proc, python-buffer)
+       (python-send-receive, python-send-string): Fix obsolete versions.
+
 2012-06-18  Martin Rudalics  <address@hidden>
 
        * window.el (special-display-p): Completely remove stringp

=== modified file 'lisp/progmodes/python.el'
--- a/lisp/progmodes/python.el  2012-06-18 18:04:21 +0000
+++ b/lisp/progmodes/python.el  2012-06-18 18:23:59 +0000
@@ -1569,10 +1569,10 @@
     (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 @@
    (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."


reply via email to

[Prev in Thread] Current Thread [Next in Thread]