aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/ChangeLog
diff options
context:
space:
mode:
authorChong Yidong2010-08-24 16:20:21 -0400
committerChong Yidong2010-08-24 16:20:21 -0400
commitedfd00fa82735b6930c714d32884093718c4a951 (patch)
tree69cb917a306c3b5a837c0e1eb810173cd6637acd /lisp/ChangeLog
parent1c409d0b963ebdb1f48b90ddce85c56d989bee5f (diff)
downloademacs-edfd00fa82735b6930c714d32884093718c4a951.tar.gz
emacs-edfd00fa82735b6930c714d32884093718c4a951.zip
* lisp/progmodes/python.el: Add Ipython support (Bug#5390).
Based on a patch by Fabian Ezequiel Gallina. (python-shell-prompt-alist) (python-shell-continuation-prompt-alist): New options. (python--set-prompt-regexp): New function. (inferior-python-mode, run-python, python-shell): Require ansi-color. Use python--set-prompt-regexp to set the comint prompt based on the Python interpreter. (python--prompt-regexp): New var. (python-check-comint-prompt) (python-comint-output-filter-function): Use it. (run-python): Use a pipe (Bug#5694). (python-send-region): Send a different Python command if Ipython is in use. (python-check-version): Use a Python command to find the version.
Diffstat (limited to 'lisp/ChangeLog')
-rw-r--r--lisp/ChangeLog20
1 files changed, 20 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 79b5f6583a0..b273f017b7d 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,25 @@
12010-08-24 Chong Yidong <cyd@stupidchicken.com> 12010-08-24 Chong Yidong <cyd@stupidchicken.com>
2 2
3 * progmodes/python.el: Add Ipython support (Bug#5390).
4 (python-shell-prompt-alist)
5 (python-shell-continuation-prompt-alist): New options.
6 (python--set-prompt-regexp): New function.
7 (inferior-python-mode, run-python, python-shell): Require
8 ansi-color. Use python--set-prompt-regexp to set the comint
9 prompt based on the Python interpreter.
10 (python--prompt-regexp): New var.
11 (python-check-comint-prompt)
12 (python-comint-output-filter-function): Use it.
13 (run-python): Use a pipe (Bug#5694).
14
152010-08-24 Fabian Ezequiel Gallina <galli.87@gmail.com> (tiny change)
16
17 * progmodes/python.el (python-send-region): Send a different
18 Python command if Ipython is in use.
19 (python-check-version): Use a Python command to find the version.
20
212010-08-24 Chong Yidong <cyd@stupidchicken.com>
22
3 * mouse.el (mouse-yank-primary): Avoid setting primary when 23 * mouse.el (mouse-yank-primary): Avoid setting primary when
4 deactivating the mark (Bug#6872). 24 deactivating the mark (Bug#6872).
5 25