Show More
@@ -1,5 +1,8 | |||||
1 | 2006-10-28 Fernando Perez <Fernando.Perez@colorado.edu> |
|
1 | 2006-10-28 Fernando Perez <Fernando.Perez@colorado.edu> | |
2 |
|
2 | |||
|
3 | * ipython.el (py-execute-region): apply Stefan's patch to fix | |||
|
4 | garbled results if the python shell hasn't been previously started. | |||
|
5 | ||||
3 | * IPython/genutils.py (arg_split): moved to genutils, since it's a |
|
6 | * IPython/genutils.py (arg_split): moved to genutils, since it's a | |
4 | pretty generic function and useful for other things. |
|
7 | pretty generic function and useful for other things. | |
5 |
|
8 |
@@ -6,7 +6,7 | |||||
6 | ;; URL: http://ipython.scipy.org |
|
6 | ;; URL: http://ipython.scipy.org | |
7 | ;; Compatibility: Emacs21, XEmacs21 |
|
7 | ;; Compatibility: Emacs21, XEmacs21 | |
8 | ;; FIXME: #$@! INPUT RING |
|
8 | ;; FIXME: #$@! INPUT RING | |
9 |
(defconst ipython-version "$Revision: 18 |
|
9 | (defconst ipython-version "$Revision: 1851 $" | |
10 | "VC version number.") |
|
10 | "VC version number.") | |
11 |
|
11 | |||
12 | ;;; Commentary |
|
12 | ;;; Commentary | |
@@ -250,9 +250,9 buffer already exists." | |||||
250 | (defadvice py-execute-region (around py-execute-buffer-ensure-process) |
|
250 | (defadvice py-execute-region (around py-execute-buffer-ensure-process) | |
251 | "HACK: if `py-shell' is not active or ASYNC is explicitly desired, fall back |
|
251 | "HACK: if `py-shell' is not active or ASYNC is explicitly desired, fall back | |
252 | to python instead of ipython." |
|
252 | to python instead of ipython." | |
253 |
(let ((py- |
|
253 | (let ((py-which-shell (if (and (comint-check-proc "*Python*") (not async)) | |
254 | py-python-command |
|
254 | py-python-command | |
255 |
|
|
255 | ipython-backup-of-py-python-command))) | |
256 | ad-do-it)) |
|
256 | ad-do-it)) | |
257 | (ad-activate 'py-execute-region) |
|
257 | (ad-activate 'py-execute-region) | |
258 |
|
258 |
General Comments 0
You need to be logged in to leave comments.
Login now