Mercurial > emacs
comparison lisp/ChangeLog @ 92078:4645ecab0894
*** empty log message ***
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Fri, 22 Feb 2008 02:54:13 +0000 |
parents | 4d84175c75e8 |
children | ee833d8c4520 |
comparison
equal
deleted
inserted
replaced
92077:42910b30c7f2 | 92078:4645ecab0894 |
---|---|
7 (indian-script-language-alist, indian-font-char-index-table) | 7 (indian-script-language-alist, indian-font-char-index-table) |
8 (indian-font-char, indian-font-char-range, indian-script-table) | 8 (indian-font-char, indian-font-char-range, indian-script-table) |
9 (indian-default-script, indian-composable-pattern): Delete them. | 9 (indian-default-script, indian-composable-pattern): Delete them. |
10 ("Devanagari", "Kannada", "Malayalam", "Tamil"): Definitions of | 10 ("Devanagari", "Kannada", "Malayalam", "Tamil"): Definitions of |
11 language environments moved to here. | 11 language environments moved to here. |
12 ("Bengali", "Punjabi", "Gujarati", "Oriya", "Telugu"): New | 12 ("Bengali", "Punjabi", "Gujarati", "Oriya", "Telugu"): |
13 language environments. | 13 New language environments. |
14 | 14 |
15 * language/devanagari.el, language/devan-util.el, | 15 * language/devanagari.el, language/devan-util.el, |
16 language/kannanda.el, language/knd-util.el, language/malayalam.el, | 16 * language/kannanda.el, language/knd-util.el, language/malayalam.el, |
17 language/mlm-util.el, language/tamil.el, language/tml-util.el: | 17 * language/mlm-util.el, language/tamil.el, language/tml-util.el: |
18 Delete them. | 18 Delete them. |
19 | 19 |
20 * language/sinhala.el: New file. | 20 * language/sinhala.el: New file. |
21 | 21 |
22 2008-02-21 Ken Manheimer <ken.manheimer@gmail.com> | 22 2008-02-21 Ken Manheimer <ken.manheimer@gmail.com> |
23 | 23 |
24 * python.el (python-pdbtrack-toggle-stack-tracking): Clarify | 24 * python.el (python-pdbtrack-toggle-stack-tracking): Clarify docstring. |
25 docstring. | |
26 (python-pdbtrack-minor-mode-string): A sign indicating that pdb | 25 (python-pdbtrack-minor-mode-string): A sign indicating that pdb |
27 tracking is happening. | 26 tracking is happening. |
28 (python-pdbtrack-stack-entry-regexp): Better recognize stack | 27 (python-pdbtrack-stack-entry-regexp): Better recognize stack traces. |
29 traces. | |
30 (python-pdbtrack-input-prompt): Better recognize PDB prompts. | 28 (python-pdbtrack-input-prompt): Better recognize PDB prompts. |
31 (add python-pdbtrack-track-stack-file to | 29 (add python-pdbtrack-track-stack-file to |
32 comint-output-filter-functions): Tracking is plugged in to all | 30 comint-output-filter-functions): Tracking is plugged in to all |
33 comint buffers once python.el is loaded. | 31 comint buffers once python.el is loaded. |
34 (python-pdbtrack-overlay-arrow): Toggle activation of | 32 (python-pdbtrack-overlay-arrow): Toggle activation of |
35 `python-pdbtrack-minor-mode-string' in addition to the overlay | 33 `python-pdbtrack-minor-mode-string' in addition to the overlay arrow. |
36 arrow. | |
37 (python-pdbtrack-track-stack-file): Use new | 34 (python-pdbtrack-track-stack-file): Use new |
38 `python-pdbtrack-get-source-buffer' for more flexible access to | 35 `python-pdbtrack-get-source-buffer' for more flexible access to |
39 debugging source files. | 36 debugging source files. |
40 (python-pdbtrack-get-source-buffer): Identify debugging target | 37 (python-pdbtrack-get-source-buffer): Identify debugging target buffer |
41 buffer according to pdb stack trace, optionally using new | 38 according to pdb stack trace, optionally using new |
42 `python-pdbtrack-grub-for-buffer' if file is not locally | 39 `python-pdbtrack-grub-for-buffer' if file is not locally available. |
43 available. | |
44 (python-pdbtrack-grub-for-buffer): Find most recent python-mode | 40 (python-pdbtrack-grub-for-buffer): Find most recent python-mode |
45 named buffer, or having function with indicated name. | 41 named buffer, or having function with indicated name. |
46 (python-shell): Remove comint-output-filter-functions hook | 42 (python-shell): Remove comint-output-filter-functions hook |
47 addition, it's being done elsewhere. Wrap long line. | 43 addition, it's being done elsewhere. Wrap long line. |
48 | 44 |
75 (python-preoutput-continuation, python-version-checked): New vars. | 71 (python-preoutput-continuation, python-version-checked): New vars. |
76 (python-check-version): New function. | 72 (python-check-version): New function. |
77 (run-python): Set default command to python-command instead of | 73 (run-python): Set default command to python-command instead of |
78 python-python-command. | 74 python-python-command. |
79 (run-python): Use python-check-version. Give PYTHONPATH | 75 (run-python): Use python-check-version. Give PYTHONPATH |
80 precedence over data-directory in the process environment. Load | 76 precedence over data-directory in the process environment. |
81 function definitions in python process after. | 77 Load function definitions in python process after. |
82 (python-check-comint-prompt): New function. | 78 (python-check-comint-prompt): New function. |
83 (python-send-command, python-send-receive): Use it. | 79 (python-send-command, python-send-receive): Use it. |
84 (python-complete-symbol, python-try-complete): Functions deleted. | 80 (python-complete-symbol, python-try-complete): Functions deleted. |
85 Use symbol-complete instead of python-complete-symbol throughout. | 81 Use symbol-complete instead of python-complete-symbol throughout. |
86 (python-fill-paragraph): Further refine the fenced-string regexp. | 82 (python-fill-paragraph): Further refine the fenced-string regexp. |
87 (def-python-skeleton): Expand to the original abbrev instead if in | 83 (def-python-skeleton): Expand to the original abbrev instead if in |
88 a comment or string. Tweak skeletons for `if', `while', `for', | 84 a comment or string. Tweak skeletons for `if', `while', `for', |
89 `try/except', `try/finally', `name'. | 85 `try/except', `try/finally', `name'. |
90 (python-pea-hook, python-abbrev-pc-hook): New functions. | 86 (python-pea-hook, python-abbrev-pc-hook): New functions. |
91 (python-abbrev-syntax-table): New var. | 87 (python-abbrev-syntax-table): New var. |
92 (python-mode): Add python-pea-hook to pre-abbrev-expand-hook. Use | 88 (python-mode): Add python-pea-hook to pre-abbrev-expand-hook. |
93 symbol-completion-try-complete for hippie expansion. Turn on font | 89 Use symbol-completion-try-complete for hippie expansion. |
94 lock unconditionally. | 90 Turn on font lock unconditionally. |
95 (python-mode-hook): Defcustom it. No need to use make-local | 91 (python-mode-hook): Defcustom it. No need to use make-local |
96 variable on indent-tabs-mode in "Turn off Indent Tabs mode" | 92 variable on indent-tabs-mode in "Turn off Indent Tabs mode" |
97 option, since it's buffer-local. | 93 option, since it's buffer-local. |
98 | 94 |
99 2008-02-21 Juanma Barranquero <lekktu@gmail.com> | 95 2008-02-21 Juanma Barranquero <lekktu@gmail.com> |