diff options
| author | Fabián Ezequiel Gallina | 2012-05-17 00:07:25 -0300 |
|---|---|---|
| committer | Fabián Ezequiel Gallina | 2012-05-17 00:07:25 -0300 |
| commit | 4b32415cc5d76fb5f468090a907c2d7e32997b42 (patch) | |
| tree | 46cae401e7ccc3c5d93c6bf6535da52dced25bc0 | |
| parent | aeadd9a4699f7606bb2ff5fe04a927cf68e5e211 (diff) | |
| download | emacs-4b32415cc5d76fb5f468090a907c2d7e32997b42.tar.gz emacs-4b32415cc5d76fb5f468090a907c2d7e32997b42.zip | |
Added ChangeLog entry for python.el merge.
| -rw-r--r-- | lisp/ChangeLog | 216 |
1 files changed, 216 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b1d9323e481..c0e7645bc0c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,219 @@ | |||
| 1 | 2012-05-16 Fabián Ezequiel Gallina <fgallina@cuca> | ||
| 2 | |||
| 3 | * progmodes/python.el: New python.el merge. | ||
| 4 | (python-guess-indent): Obsolete Var. Replaced by | ||
| 5 | python-indent-guess-indent-offset. | ||
| 6 | (python-indent): Obsolete Var. Replaced by python-indent-offset. | ||
| 7 | (python-python-command,python-jython-command): Delete | ||
| 8 | Var. Replaced by python-shell-interpreter. | ||
| 9 | (python-pdbtrack-do-tracking-p): Delete Var. Replaced by | ||
| 10 | python-pdbtrack-activate. | ||
| 11 | (python-use-skeletons): Delete Var. Replaced by | ||
| 12 | python-skeleton-autoinsert. | ||
| 13 | (inferior-python-filter-regexp, python-continuation-offset) | ||
| 14 | (python-honour-comment-indentation, python-indent-string-contents) | ||
| 15 | (python-jython-packages, python-mode-hook) | ||
| 16 | (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path) | ||
| 17 | (python-shell-prompt-alist, python-source-modes): Delete | ||
| 18 | defcustoms. | ||
| 19 | (python-check-buffer-name, python-eldoc-setup-code) | ||
| 20 | (python-eldoc-string-code, python-ffap-setup-code) | ||
| 21 | (python-ffap-string-code, python-fill-comment-function) | ||
| 22 | (python-fill-decorator-function, python-fill-paren-function) | ||
| 23 | (python-fill-string-function, python-imenu-include-defun-type) | ||
| 24 | (python-imenu-make-tree, python-imenu-subtree-root-label) | ||
| 25 | (python-indent-guess-indent-offset, python-indent-offset) | ||
| 26 | (python-pdbtrack-activate, python-pdbtrack-stacktrace-info-regexp) | ||
| 27 | (python-shell-buffer-name, python-shell-compilation-regexp-alist) | ||
| 28 | (python-shell-completion-module-string-code) | ||
| 29 | (python-shell-completion-pdb-string-code) | ||
| 30 | (python-shell-completion-setup-code) | ||
| 31 | (python-shell-completion-string-code) | ||
| 32 | (python-shell-enable-font-lock, python-shell-exec-path) | ||
| 33 | (python-shell-extra-pythonpaths) | ||
| 34 | (python-shell-internal-buffer-name, python-shell-interpreter) | ||
| 35 | (python-shell-interpreter-args, python-shell-process-environment) | ||
| 36 | (python-shell-prompt-block-regexp) | ||
| 37 | (python-shell-prompt-output-regexp) | ||
| 38 | (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp) | ||
| 39 | (python-shell-send-setup-max-wait, python-shell-setup-codes) | ||
| 40 | (python-shell-virtualenv-path, python-skeleton-autoinsert): New | ||
| 41 | defcustoms. | ||
| 42 | (brm-menu, eldoc-documentation-function, inferior-python-mode-map) | ||
| 43 | (inferior-python-mode-syntax-table, python--prompt-regexp) | ||
| 44 | (python-buffer, python-command python-python-command) | ||
| 45 | (python-default-template, python-imports, python-indent-index) | ||
| 46 | (python-indent-list, python-indent-list-length) | ||
| 47 | (python-mode-running, python-pdbtrack-is-tracking-p) | ||
| 48 | (python-preoutput-continuation, python-preoutput-leftover) | ||
| 49 | (python-preoutput-result, python-preoutput-skip-next-prompt) | ||
| 50 | (python-prev-dir/file, python-recursing) | ||
| 51 | (python-saved-check-command, python-version-checked) | ||
| 52 | (python-which-func-length-limit, view-return-to-alist): Delete | ||
| 53 | Vars. | ||
| 54 | (python-check-custom-command, python-dotty-syntax-table) | ||
| 55 | (python-imenu-index-alist, python-indent-current-level) | ||
| 56 | (python-indent-dedenters, python-indent-levels) | ||
| 57 | (python-nav-beginning-of-defun-regexp) | ||
| 58 | (python-nav-list-defun-positions-cache) | ||
| 59 | (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer) | ||
| 60 | (python-shell-internal-buffer, python-skeleton-available): New | ||
| 61 | Vars. | ||
| 62 | (def-python-skeleton): Delete Macro. Obsoleted by | ||
| 63 | python-skeleton-define. | ||
| 64 | (python-define-auxiliary-skeleton, python-rx) | ||
| 65 | (python-skeleton-define): New Macros. | ||
| 66 | (python-insert-*): Delete Commands. | ||
| 67 | (python-insert-class): Delete Command. Replaced by python-skeleton-class. | ||
| 68 | (python-insert-def): Delete Command. Replaced by python-skeleton-def. | ||
| 69 | (python-insert-for'): Delete Command. Replaced by python-skeleton-for. | ||
| 70 | (python-insert-if): Delete Command. Replaced by python-skeleton-if. | ||
| 71 | (python-insert-try/except): Delete Command. Replaced by | ||
| 72 | python-skeleton-try. | ||
| 73 | (python-insert-try/finally): Delete Command. Replaced by | ||
| 74 | python-skeleton-try. | ||
| 75 | (python-insert-while): Delete Command. Replaced by | ||
| 76 | python-skeleton-while. | ||
| 77 | (python-skeleton-class, python-skeleton-def, python-skeleton-for) | ||
| 78 | (python-skeleton-if, python-skeleton-try, python-skeleton-while): | ||
| 79 | New commands. | ||
| 80 | (python-backspace): Delete Command. Replaced by | ||
| 81 | python-indent-dedent-line-backspace. | ||
| 82 | (python-electric-colon): Delete Command. Replaced by | ||
| 83 | python-indent-electric-colon. | ||
| 84 | (python-guess-indent): Delete Command. Replaced by | ||
| 85 | python-indent-guess-indent-offset. | ||
| 86 | (python-shift-left): Delete Command. Replaced by | ||
| 87 | python-indent-shift-left. | ||
| 88 | (python-shift-right): Delete Command. Replaced by | ||
| 89 | python-indent-shift-right. | ||
| 90 | (python-indent-dedent-line-backspace) | ||
| 91 | (python-indent-electric-colon, python-indent-guess-indent-offset) | ||
| 92 | (python-indent-shift-left, python-indent-shift-right): New | ||
| 93 | Commands. | ||
| 94 | (python-find-function): Delete Command. Replaced by | ||
| 95 | python-nav-jump-to-defun. | ||
| 96 | (python-next-statement): Delete Command. Replaced by | ||
| 97 | python-nav-forward-sentence. | ||
| 98 | (python-previous-statement): Delete Command. Replaced by | ||
| 99 | python-nav-backward-sentence. | ||
| 100 | (python-fill-paragraph): Delete Command. Replaced by | ||
| 101 | python-fill-paragraph-function. | ||
| 102 | (python-nav-jump-to-defun, python-nav-forward-sentence) | ||
| 103 | (python-nav-backward-sentence, python-fill-paragraph-function): | ||
| 104 | New Commands. | ||
| 105 | (python-send-buffer): Delete Command. Replaced by | ||
| 106 | python-shell-send-buffer. | ||
| 107 | (python-send-defun): Delete Command. Replaced by | ||
| 108 | python-shell-send-defun. | ||
| 109 | (python-send-region): Delete Command. Replaced by | ||
| 110 | python-shell-send-region. | ||
| 111 | (python-send-region-and-go): Delete Command. Replaced by | ||
| 112 | python-shell-send-region + python-shell-switch-to-shell. | ||
| 113 | (python-send-string): Delete Command. Replaced by | ||
| 114 | python-shell-send-string. | ||
| 115 | (python-switch-to-python): Delete Command. Replaced by | ||
| 116 | python-shell-switch-to-shell. | ||
| 117 | (python-shell-send-buffer, python-shell-send-defun) | ||
| 118 | (python-shell-send-region, python-shell-send-region) | ||
| 119 | (python-shell-send-string, python-shell-switch-to-shell): New | ||
| 120 | Commands. | ||
| 121 | (python-describe-symbol): Delete Command. Replaced by | ||
| 122 | python-eldoc-at-point. | ||
| 123 | (python-eldoc-at-point): New Command. | ||
| 124 | (python--set-prompt-regexp, python-args-to-list) | ||
| 125 | (python-after-info-look, python-check-version) | ||
| 126 | (python-check-comint-prompt, python-find-imports) | ||
| 127 | (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack) | ||
| 128 | (python-unload-function, python-expand-template) | ||
| 129 | (python-maybe-jython, python-preoutput-filter) | ||
| 130 | (python-pdbtrack-get-source-buffer) | ||
| 131 | (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow) | ||
| 132 | (python-pdbtrack-toggle-stack-tracking) | ||
| 133 | (python-pdbtrack-track-stack-file, python-initial-text) | ||
| 134 | (python-first-word, python-comment-line-p, python-send-command) | ||
| 135 | (python-setup-brm, python-sentinel, python-set-proc) | ||
| 136 | (python-skip-out, python-input-filter, python-outdent-p) | ||
| 137 | (python-outline-level, python-backslash-continuation-line-p) | ||
| 138 | (python-end-of-block, python-end-of-statement, python-mark-block) | ||
| 139 | (python-beginning-of-block, python-beginning-of-statement) | ||
| 140 | (python-blank-line-p, python-beginning-of-string) | ||
| 141 | (python-open-block-statement-p): Delete functions. | ||
| 142 | (python-indent-line, python-indent-line-1): Delete | ||
| 143 | functions. Replaced by python-indent-line. | ||
| 144 | (python-indentation-levels): Delete function. Replaced by | ||
| 145 | python-indent-calculate-levels. | ||
| 146 | (python-proc): Delete Function. Replaced by | ||
| 147 | python-shell-get-process. | ||
| 148 | (python-send-receive): Delete Function. Replaced by | ||
| 149 | python-shell-send-string-no-output. | ||
| 150 | (python-module-path): Delete Function. Replaced by | ||
| 151 | python-ffap-module-path. | ||
| 152 | (python-completion-at-point): Delete Function. Replaced by | ||
| 153 | python-completion-complete-at-point. | ||
| 154 | (python-load-file): Delete Function. Replaced by | ||
| 155 | python-shell-send-file. | ||
| 156 | (python-calculate-indentation): Delete Function. Replaced by | ||
| 157 | python-indent-calculate-indentation. | ||
| 158 | (python-skip-comments/blanks): Delete Function. Replaced by | ||
| 159 | python-util-forward-comment. | ||
| 160 | (python-continuation-line-p): Delete Function. Replaced by | ||
| 161 | python-info-continuation-line-p. | ||
| 162 | (python-which-func, python-current-defun): Delete | ||
| 163 | Function. Replaced by python-info-current-defun. | ||
| 164 | (python-indentation-levels): Delete Function. Replaced by | ||
| 165 | python-indent-calculate-levels. | ||
| 166 | (python-beginning-of-defun): Delete Function. Replaced by | ||
| 167 | python-nav-beginning-of-defun. | ||
| 168 | (python-close-block-statement-p, python-block-end-p): Delete | ||
| 169 | Function. Replaced by python-info-closing-block. | ||
| 170 | (python-symbol-completions): Delete Function. Replaced by | ||
| 171 | python-completion-complete-at-point. | ||
| 172 | (python-comint-output-filter-function) | ||
| 173 | (python-eldoc--get-doc-at-point, python-end-of-defun-function) | ||
| 174 | (python-fill-comment, python-fill-decorator, python-fill-paren) | ||
| 175 | (python-fill-string, python-imenu-make-element-tree) | ||
| 176 | (python-imenu-make-tree, python-imenu-tree-assoc) | ||
| 177 | (python-indent-context, python-indent-dedent-line) | ||
| 178 | (python-indent-line-function) | ||
| 179 | (python-indent-post-self-insert-function) | ||
| 180 | (python-indent-toggle-levels) | ||
| 181 | (python-info-assignment-continuation-line-p) | ||
| 182 | (python-info-beginning-of-backlash) | ||
| 183 | (python-info-block-continuation-line-p) | ||
| 184 | (python-info-closing-block-message, python-info-current-defun) | ||
| 185 | (python-info-line-ends-backslash-p) | ||
| 186 | (python-info-looking-at-beginning-of-defun) | ||
| 187 | (python-info-ppss-context, python-info-ppss-context-type) | ||
| 188 | (python-nav-list-defun-positions, python-nav-read-defun) | ||
| 189 | (python-nav-sentence-end, python-nav-sentence-start) | ||
| 190 | (python-pdbtrack-comint-output-filter-function) | ||
| 191 | (python-pdbtrack-set-tracked-buffer) | ||
| 192 | (python-shell-calculate-exec-path) | ||
| 193 | (python-shell-calculate-process-environment) | ||
| 194 | (python-shell-completion--do-completion-at-point) | ||
| 195 | (python-shell-completion--get-completions) | ||
| 196 | (python-shell-completion-complete-at-point) | ||
| 197 | (python-shell-completion-complete-or-indent) | ||
| 198 | (python-shell-get-or-create-process) | ||
| 199 | (python-shell-get-process-name) | ||
| 200 | (python-shell-internal-get-or-create-process) | ||
| 201 | (python-shell-internal-get-process-name) | ||
| 202 | (python-shell-internal-send-string, python-shell-make-comint) | ||
| 203 | (python-shell-parse-command, python-shell-send-setup-code) | ||
| 204 | (python-skeleton-add-menu-items) | ||
| 205 | (python-util-clone-local-variables, python-util-position) | ||
| 206 | (run-python-internal, python-indent-line) | ||
| 207 | (python-indentation-levels, python-shell-get-process) | ||
| 208 | (python-shell-send-string-no-output, python-ffap-module-path) | ||
| 209 | (python-completion-complete-at-point, python-shell-send-file) | ||
| 210 | (python-indent-calculate-indentation, python-util-forward-comment) | ||
| 211 | (python-info-continuation-line-p, python-info-current-defun) | ||
| 212 | (python-indent-calculate-levels, python-nav-beginning-of-defun) | ||
| 213 | (python-beginning-of-defun-function, python-info-closing-block) | ||
| 214 | (python-completion-complete-at-point): New functions. | ||
| 215 | (run-python): Change arguments. New API Requirements. | ||
| 216 | |||
| 1 | 2012-05-17 Juri Linkov <juri@jurta.org> | 217 | 2012-05-17 Juri Linkov <juri@jurta.org> |
| 2 | 218 | ||
| 3 | * isearch.el (word-search-regexp, word-search-backward) | 219 | * isearch.el (word-search-regexp, word-search-backward) |