aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/ChangeLog
diff options
context:
space:
mode:
authorStefan Monnier2006-08-20 17:55:16 +0000
committerStefan Monnier2006-08-20 17:55:16 +0000
commitc7e8d385a28e54d0caeef794c9ab50ff104d9c78 (patch)
treeafb310fc0c0b508687422040d755fb8364ce1110 /lisp/ChangeLog
parent67b595a2904e477aa06913ebf46e7ce7130801f9 (diff)
downloademacs-c7e8d385a28e54d0caeef794c9ab50ff104d9c78.tar.gz
emacs-c7e8d385a28e54d0caeef794c9ab50ff104d9c78.zip
Update to Dave Love's latest version.
(python-font-lock-keywords, python-mode): Don't use font-lock-syntax-table, but match symbol elements explicitly instead. (python-mode-map): Add help, and a few more key bindings. (python-skip-comments/blanks): Move out of comments as well. (python-continuation-line-p): Behave better with unbalanced parens. (python-blank-line-p): New fun. (python-open-block-statement-p): Don't use a heuristic. (python-outdent-p): Better handle blocks-in-the-same-line. (python-calculate-indentation): Misc improvements. (python-comment-indent): Remove. (python-block-pairs): New var. (python-first-word): New fun. (python-indentation-levels): Handle more common cases. (python-indent-line-1): Add `leave' argument. (python-indent-region): New fun. (python-skip-out): New fun. (python-beginning-of-statement, python-end-of-statement): Use it. (python-next-statement): Return correct count even at eob. (python-end-of-block): Fix paren-typo. (python-imenu-create-index): Add module variables. (run-python): Add `new' arg. Check we're at a prompt before returning. (python-send-command): Move to end of buffer. Wait for prompt to return. (python-set-proc): New fun. (python-imports): New var. (python-describe-symbol): Use it. Adjust to new interface of `ehelp'. (python-eldoc-function): Try to move out of arg list. (python-outline-level): Offset by 1. (python-find-imports): New fun. (python-symbol-completions): Use python-imports. (python-module-path, ffap-alist): Add support for ffap. (python-skeletons, python-mode-abbrev-table, def-python-skeleton) (pythin-insert-*, python-default-template, python-expand-template): Add templates/skeletons. (python-setup-brm): Support for Bicycle Repair Man. (python-abbrev-syntax-table): New var. (python-abbrev-pc-hook, python-pea-hook): New funs.
Diffstat (limited to 'lisp/ChangeLog')
-rw-r--r--lisp/ChangeLog42
1 files changed, 42 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 9214570678c..338b598be3f 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,45 @@
12006-08-20 Dave Love <fx@gnu.org>
2
3 * progmodes/python.el: Update to Dave Love's latest version.
4 (python-font-lock-keywords, python-mode): Don't use
5 font-lock-syntax-table, but match symbol elements explicitly instead.
6 (python-mode-map): Add help, and a few more key bindings.
7 (python-skip-comments/blanks): Move out of comments as well.
8 (python-continuation-line-p): Behave better with unbalanced parens.
9 (python-blank-line-p): New fun.
10 (python-open-block-statement-p): Don't use a heuristic.
11 (python-outdent-p): Better handle blocks-in-the-same-line.
12 (python-calculate-indentation): Misc improvements.
13 (python-comment-indent): Remove.
14 (python-block-pairs): New var.
15 (python-first-word): New fun.
16 (python-indentation-levels): Handle more common cases.
17 (python-indent-line-1): Add `leave' argument.
18 (python-indent-region): New fun.
19 (python-skip-out): New fun.
20 (python-beginning-of-statement, python-end-of-statement): Use it.
21 (python-next-statement): Return correct count even at eob.
22 (python-end-of-block): Fix paren-typo.
23 (python-imenu-create-index): Add module variables.
24 (run-python): Add `new' arg.
25 Check we're at a prompt before returning.
26 (python-send-command): Move to end of buffer.
27 Wait for prompt to return.
28 (python-set-proc): New fun.
29 (python-imports): New var.
30 (python-describe-symbol): Use it. Adjust to new interface of `ehelp'.
31 (python-eldoc-function): Try to move out of arg list.
32 (python-outline-level): Offset by 1.
33 (python-find-imports): New fun.
34 (python-symbol-completions): Use python-imports.
35 (python-module-path, ffap-alist): Add support for ffap.
36 (python-skeletons, python-mode-abbrev-table, def-python-skeleton)
37 (pythin-insert-*, python-default-template, python-expand-template):
38 Add templates/skeletons.
39 (python-setup-brm): Support for Bicycle Repair Man.
40 (python-abbrev-syntax-table): New var.
41 (python-abbrev-pc-hook, python-pea-hook): New funs.
42
12006-08-20 Chong Yidong <cyd@stupidchicken.com> 432006-08-20 Chong Yidong <cyd@stupidchicken.com>
2 44
3 * frame.el (blink-cursor-start): Set timer first. 45 * frame.el (blink-cursor-start): Set timer first.