aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2012-06-16 10:45:09 -0700
committerGlenn Morris2012-06-16 10:45:09 -0700
commit8826d473e648dcd904bac6329dbfcf7d82e2e4f1 (patch)
treea7ede0ea94c0fec4bb9725d348231543bcbe4641
parent0fb52f118bd1056a934a7013e593ddd091b000b6 (diff)
downloademacs-8826d473e648dcd904bac6329dbfcf7d82e2e4f1.tar.gz
emacs-8826d473e648dcd904bac6329dbfcf7d82e2e4f1.zip
ChangeLog position, case fixes
-rw-r--r--lisp/ChangeLog383
1 files changed, 191 insertions, 192 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 609dcb117b4..ee7f2562185 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -17,6 +17,197 @@
17 * makefile.w32-in (COMPILE_FIRST): Synch with makefile.in changes 17 * makefile.w32-in (COMPILE_FIRST): Synch with makefile.in changes
18 in 2008-06-22T13:57:28Z!monnier@iro.umontreal.ca. 18 in 2008-06-22T13:57:28Z!monnier@iro.umontreal.ca.
19 19
202012-06-15 Fabián Ezequiel Gallina <fgallina@cuca>
21
22 * progmodes/python.el: New python.el merge.
23 (python-guess-indent): Obsolete var.
24 (python-indent-guess-indent-offset): New defcustom.
25 (python-indent): Obsolete var.
26 (python-indent-offset): New defcustom.
27 (python-python-command, python-jython-command): Delete var.
28 (python-shell-interpreter): New defcustom.
29 (python-pdbtrack-do-tracking-p): Delete var.
30 (python-pdbtrack-activate): New defcustom.
31 (python-use-skeletons): Obsolete var.
32 (python-skeleton-autoinsert): New defcustom.
33 (inferior-python-filter-regexp, python-continuation-offset)
34 (python-honour-comment-indentation, python-indent-string-contents)
35 (python-jython-packages, python-mode-hook)
36 (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path)
37 (python-shell-prompt-alist)
38 (python-source-modes): Delete defcustoms.
39 (python-check-buffer-name, python-eldoc-setup-code)
40 (python-eldoc-string-code, python-ffap-setup-code)
41 (python-ffap-string-code, python-fill-comment-function)
42 (python-fill-decorator-function, python-fill-paren-function)
43 (python-fill-string-function, python-imenu-include-defun-type)
44 (python-imenu-make-tree, python-imenu-subtree-root-label)
45 (python-pdbtrack-stacktrace-info-regexp, python-shell-buffer-name)
46 (python-shell-compilation-regexp-alist)
47 (python-shell-completion-module-string-code)
48 (python-shell-completion-pdb-string-code)
49 (python-shell-completion-setup-code)
50 (python-shell-completion-string-code)
51 (python-shell-enable-font-lock, python-shell-exec-path)
52 (python-shell-extra-pythonpaths)
53 (python-shell-internal-buffer-name, python-shell-interpreter-args)
54 (python-shell-process-environment)
55 (python-shell-prompt-block-regexp)
56 (python-shell-prompt-output-regexp)
57 (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp)
58 (python-shell-send-setup-max-wait, python-shell-setup-codes)
59 (python-shell-virtualenv-path): New defcustoms.
60 (brm-menu, eldoc-documentation-function, inferior-python-mode-map)
61 (inferior-python-mode-syntax-table, python--prompt-regexp)
62 (python-buffer, python-command python-python-command)
63 (python-default-template, python-imports, python-indent-index)
64 (python-indent-list, python-indent-list-length)
65 (python-mode-running, python-pdbtrack-is-tracking-p)
66 (python-preoutput-continuation, python-preoutput-leftover)
67 (python-preoutput-result, python-preoutput-skip-next-prompt)
68 (python-prev-dir/file, python-recursing)
69 (python-saved-check-command, python-version-checked)
70 (python-which-func-length-limit)
71 (view-return-to-alist): Delete vars.
72 (python-check-custom-command, python-dotty-syntax-table)
73 (python-imenu-index-alist, python-indent-current-level)
74 (python-indent-dedenters, python-indent-levels)
75 (python-nav-beginning-of-defun-regexp)
76 (python-nav-list-defun-positions-cache)
77 (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer)
78 (python-shell-internal-buffer)
79 (python-skeleton-available): New vars.
80 (def-python-skeleton): Delete macro.
81 (python-skeleton-define): New macro.
82 (python-define-auxiliary-skeleton, python-rx): New macros.
83 (python-insert-class): Delete command.
84 (python-skeleton-class): New command.
85 (python-insert-def): Delete command.
86 (python-skeleton-def): New command.
87 (python-insert-for): Delete command.
88 (python-skeleton-for): New command.
89 (python-insert-if): Delete command.
90 (python-skeleton-if): New command.
91 (python-insert-try/except, python-insert-try/finally): Delete commands.
92 (python-skeleton-try): New command.
93 (python-insert-while): Delete command.
94 (python-skeleton-while): New command.
95 (python-backspace): Delete command.
96 (python-indent-dedent-line-backspace): New command.
97 (python-electric-colon): Delete command.
98 (python-indent-electric-colon): New command.
99 (python-guess-indent): Delete command.
100 (python-indent-guess-indent-offset): New command.
101 (python-shift-left): Delete command.
102 (python-indent-shift-left): New command.
103 (python-shift-right): Delete command.
104 (python-indent-shift-right): New command.
105 (python-find-function): Delete command.
106 (python-nav-jump-to-defun): New command.
107 (python-next-statement): Delete command.
108 (python-nav-forward-sentence): New command.
109 (python-previous-statement): Delete command.
110 (python-nav-backward-sentence): New command.
111 (python-fill-paragraph): Delete command.
112 (python-fill-paragraph-function): New command.
113 (python-send-buffer): Delete command.
114 (python-shell-send-buffer): New command.
115 (python-send-defun): Delete command.
116 (python-shell-send-defun): New command.
117 (python-send-region, python-send-region-and-go): Delete commands.
118 (python-shell-send-region)
119 (python-shell-switch-to-shell): New commands.
120 (python-send-string): Delete command.
121 (python-shell-send-string): New command.
122 (python-switch-to-python): Delete command.
123 (python-shell-switch-to-shell): New command.
124 (python-describe-symbol): Delete command.
125 (python-eldoc-at-point): New command.
126 (python--set-prompt-regexp, python-args-to-list)
127 (python-after-info-look, python-check-version)
128 (python-check-comint-prompt, python-find-imports)
129 (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack)
130 (python-unload-function, python-expand-template)
131 (python-maybe-jython, python-preoutput-filter)
132 (python-pdbtrack-get-source-buffer)
133 (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow)
134 (python-pdbtrack-toggle-stack-tracking)
135 (python-pdbtrack-track-stack-file, python-initial-text)
136 (python-first-word, python-comment-line-p, python-send-command)
137 (python-setup-brm, python-sentinel, python-set-proc)
138 (python-skip-out, python-input-filter, python-outdent-p)
139 (python-outline-level, python-backslash-continuation-line-p)
140 (python-end-of-block, python-end-of-statement, python-mark-block)
141 (python-beginning-of-block, python-beginning-of-statement)
142 (python-blank-line-p, python-beginning-of-string)
143 (python-open-block-statement-p): Delete functions.
144 (python-indent-line, python-indent-line-1): Delete functions.
145 (python-indent-line): New function.
146 (python-indentation-levels): Delete function.
147 (python-indent-calculate-levels): New function.
148 (python-proc): Delete function.
149 (python-shell-get-process): New function.
150 (python-send-receive): Delete function.
151 (python-shell-send-string-no-output): New function.
152 (python-module-path): Delete function.
153 (python-ffap-module-path): New function.
154 (python-completion-at-point)
155 (python-symbol-completions): Delete functions.
156 (python-completion-complete-at-point): New function.
157 (python-load-file): Delete function.
158 (python-shell-send-file): New function.
159 (python-calculate-indentation): Delete function.
160 (python-indent-calculate-indentation): New function.
161 (python-skip-comments/blanks): Delete function.
162 (python-util-forward-comment): New function.
163 (python-continuation-line-p): Delete function.
164 (python-info-continuation-line-p): New function.
165 (python-which-func, python-current-defun): Delete function.
166 (python-info-current-defun): New function.
167 (python-beginning-of-defun): Delete function.
168 (python-nav-beginning-of-defun): New function.
169 (python-close-block-statement-p)
170 (python-block-end-p): Delete function.
171 (python-info-closing-block): New function.
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)
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-indentation-levels)
207 (python-nav-beginning-of-defun)
208 (python-completion-complete-at-point): New functions.
209 (run-python): Change arguments. New API requirements.
210
202012-06-15 Stefan Monnier <monnier@iro.umontreal.ca> 2112012-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
21 212
22 * emacs-lisp/cl-lib.el (cl--defsubst-expand): Autoload inliner 213 * emacs-lisp/cl-lib.el (cl--defsubst-expand): Autoload inliner
@@ -1369,198 +1560,6 @@
1369 * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious 1560 * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
1370 parens around the arg list (bug#11499). 1561 parens around the arg list (bug#11499).
1371 1562
13722012-05-16 Fabián Ezequiel Gallina <fgallina@cuca>
1373
1374 * progmodes/python.el: New python.el merge.
1375 (python-guess-indent): Obsolete Var.
1376 (python-indent-guess-indent-offset): New Defcustom.
1377 (python-indent): Obsolete Var.
1378 (python-indent-offset): New Defcustom.
1379 (python-python-command, python-jython-command): Delete Var.
1380 (python-shell-interpreter): New Defcustom.
1381 (python-pdbtrack-do-tracking-p): Delete Var.
1382 (python-pdbtrack-activate): New Defcustom.
1383 (python-use-skeletons): Obsolete Var.
1384 (python-skeleton-autoinsert): New Defcustom.
1385 (inferior-python-filter-regexp, python-continuation-offset)
1386 (python-honour-comment-indentation, python-indent-string-contents)
1387 (python-jython-packages, python-mode-hook)
1388 (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path)
1389 (python-shell-prompt-alist)
1390 (python-source-modes): Delete Defcustoms.
1391 (python-check-buffer-name, python-eldoc-setup-code)
1392 (python-eldoc-string-code, python-ffap-setup-code)
1393 (python-ffap-string-code, python-fill-comment-function)
1394 (python-fill-decorator-function, python-fill-paren-function)
1395 (python-fill-string-function, python-imenu-include-defun-type)
1396 (python-imenu-make-tree, python-imenu-subtree-root-label)
1397 (python-pdbtrack-stacktrace-info-regexp, python-shell-buffer-name)
1398 (python-shell-compilation-regexp-alist)
1399 (python-shell-completion-module-string-code)
1400 (python-shell-completion-pdb-string-code)
1401 (python-shell-completion-setup-code)
1402 (python-shell-completion-string-code)
1403 (python-shell-enable-font-lock, python-shell-exec-path)
1404 (python-shell-extra-pythonpaths)
1405 (python-shell-internal-buffer-name, python-shell-interpreter-args)
1406 (python-shell-process-environment)
1407 (python-shell-prompt-block-regexp)
1408 (python-shell-prompt-output-regexp)
1409 (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp)
1410 (python-shell-send-setup-max-wait, python-shell-setup-codes)
1411 (python-shell-virtualenv-path): New Defcustoms.
1412 (brm-menu, eldoc-documentation-function, inferior-python-mode-map)
1413 (inferior-python-mode-syntax-table, python--prompt-regexp)
1414 (python-buffer, python-command python-python-command)
1415 (python-default-template, python-imports, python-indent-index)
1416 (python-indent-list, python-indent-list-length)
1417 (python-mode-running, python-pdbtrack-is-tracking-p)
1418 (python-preoutput-continuation, python-preoutput-leftover)
1419 (python-preoutput-result, python-preoutput-skip-next-prompt)
1420 (python-prev-dir/file, python-recursing)
1421 (python-saved-check-command, python-version-checked)
1422 (python-which-func-length-limit)
1423 (view-return-to-alist): Delete Vars.
1424 (python-check-custom-command, python-dotty-syntax-table)
1425 (python-imenu-index-alist, python-indent-current-level)
1426 (python-indent-dedenters, python-indent-levels)
1427 (python-nav-beginning-of-defun-regexp)
1428 (python-nav-list-defun-positions-cache)
1429 (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer)
1430 (python-shell-internal-buffer)
1431 (python-skeleton-available): New Vars.
1432 (def-python-skeleton): Delete Macro.
1433 (python-skeleton-define): New Macro.
1434 (python-define-auxiliary-skeleton, python-rx): New Macros.
1435 (python-insert-class): Delete Command.
1436 (python-skeleton-class): New Command.
1437 (python-insert-def): Delete Command.
1438 (python-skeleton-def): New Command.
1439 (python-insert-for): Delete Command.
1440 (python-skeleton-for): New Command.
1441 (python-insert-if): Delete Command.
1442 (python-skeleton-if): New Command.
1443 (python-insert-try/except)
1444 (python-insert-try/finally): Delete Commands.
1445 (python-skeleton-try): New Command.
1446 (python-insert-while): Delete Command.
1447 (python-skeleton-while): New Command.
1448 (python-backspace): Delete Command.
1449 (python-indent-dedent-line-backspace): New Command.
1450 (python-electric-colon): Delete Command.
1451 (python-indent-electric-colon): New Command.
1452 (python-guess-indent): Delete Command.
1453 (python-indent-guess-indent-offset): New Command.
1454 (python-shift-left): Delete Command.
1455 (python-indent-shift-left): New Command.
1456 (python-shift-right): Delete Command.
1457 (python-indent-shift-right): New Command.
1458 (python-find-function): Delete Command.
1459 (python-nav-jump-to-defun): New Command.
1460 (python-next-statement): Delete Command.
1461 (python-nav-forward-sentence): New Command.
1462 (python-previous-statement): Delete Command.
1463 (python-nav-backward-sentence): New Command.
1464 (python-fill-paragraph): Delete Command.
1465 (python-fill-paragraph-function): New Command.
1466 (python-send-buffer): Delete Command.
1467 (python-shell-send-buffer): New Command.
1468 (python-send-defun): Delete Command.
1469 (python-shell-send-defun): New Command.
1470 (python-send-region, python-send-region-and-go): Delete Commands.
1471 (python-shell-send-region)
1472 (python-shell-switch-to-shell): New Commands.
1473 (python-send-string): Delete Command.
1474 (python-shell-send-string): New Command.
1475 (python-switch-to-python): Delete Command.
1476 (python-shell-switch-to-shell): New Command.
1477 (python-describe-symbol): Delete Command.
1478 (python-eldoc-at-point): New Command.
1479 (python--set-prompt-regexp, python-args-to-list)
1480 (python-after-info-look, python-check-version)
1481 (python-check-comint-prompt, python-find-imports)
1482 (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack)
1483 (python-unload-function, python-expand-template)
1484 (python-maybe-jython, python-preoutput-filter)
1485 (python-pdbtrack-get-source-buffer)
1486 (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow)
1487 (python-pdbtrack-toggle-stack-tracking)
1488 (python-pdbtrack-track-stack-file, python-initial-text)
1489 (python-first-word, python-comment-line-p, python-send-command)
1490 (python-setup-brm, python-sentinel, python-set-proc)
1491 (python-skip-out, python-input-filter, python-outdent-p)
1492 (python-outline-level, python-backslash-continuation-line-p)
1493 (python-end-of-block, python-end-of-statement, python-mark-block)
1494 (python-beginning-of-block, python-beginning-of-statement)
1495 (python-blank-line-p, python-beginning-of-string)
1496 (python-open-block-statement-p): Delete Functions.
1497 (python-indent-line, python-indent-line-1): Delete Functions.
1498 (python-indent-line): New Function.
1499 (python-indentation-levels): Delete Function.
1500 (python-indent-calculate-levels): New Function.
1501 (python-proc): Delete Function.
1502 (python-shell-get-process): New Function.
1503 (python-send-receive): Delete Function.
1504 (python-shell-send-string-no-output): New Function.
1505 (python-module-path): Delete Function.
1506 (python-ffap-module-path): New Function.
1507 (python-completion-at-point)
1508 (python-symbol-completions): Delete Functions.
1509 (python-completion-complete-at-point): New Function.
1510 (python-load-file): Delete Function.
1511 (python-shell-send-file): New Function.
1512 (python-calculate-indentation): Delete Function.
1513 (python-indent-calculate-indentation): New Function.
1514 (python-skip-comments/blanks): Delete Function.
1515 (python-util-forward-comment): New Function.
1516 (python-continuation-line-p): Delete Function.
1517 (python-info-continuation-line-p): New Function.
1518 (python-which-func, python-current-defun): Delete Function.
1519 (python-info-current-defun): New Function.
1520 (python-beginning-of-defun): Delete Function.
1521 (python-nav-beginning-of-defun): New Function.
1522 (python-close-block-statement-p)
1523 (python-block-end-p): Delete Function.
1524 (python-info-closing-block): New Function.
1525 (python-comint-output-filter-function)
1526 (python-eldoc--get-doc-at-point, python-end-of-defun-function)
1527 (python-fill-comment, python-fill-decorator, python-fill-paren)
1528 (python-fill-string, python-imenu-make-element-tree)
1529 (python-imenu-make-tree, python-imenu-tree-assoc)
1530 (python-indent-context, python-indent-dedent-line)
1531 (python-indent-line-function)
1532 (python-indent-post-self-insert-function)
1533 (python-indent-toggle-levels)
1534 (python-info-assignment-continuation-line-p)
1535 (python-info-beginning-of-backlash)
1536 (python-info-block-continuation-line-p)
1537 (python-info-closing-block-message)
1538 (python-info-line-ends-backslash-p)
1539 (python-info-looking-at-beginning-of-defun)
1540 (python-info-ppss-context, python-info-ppss-context-type)
1541 (python-nav-list-defun-positions, python-nav-read-defun)
1542 (python-nav-sentence-end, python-nav-sentence-start)
1543 (python-pdbtrack-comint-output-filter-function)
1544 (python-pdbtrack-set-tracked-buffer)
1545 (python-shell-calculate-exec-path)
1546 (python-shell-calculate-process-environment)
1547 (python-shell-completion--do-completion-at-point)
1548 (python-shell-completion--get-completions)
1549 (python-shell-completion-complete-at-point)
1550 (python-shell-completion-complete-or-indent)
1551 (python-shell-get-or-create-process)
1552 (python-shell-get-process-name)
1553 (python-shell-internal-get-or-create-process)
1554 (python-shell-internal-get-process-name)
1555 (python-shell-internal-send-string, python-shell-make-comint)
1556 (python-shell-parse-command, python-shell-send-setup-code)
1557 (python-skeleton-add-menu-items)
1558 (python-util-clone-local-variables, python-util-position)
1559 (run-python-internal, python-indentation-levels)
1560 (python-nav-beginning-of-defun)
1561 (python-completion-complete-at-point): New Functions.
1562 (run-python): Change arguments. New API Requirements.
1563
15642012-05-17 Juri Linkov <juri@jurta.org> 15632012-05-17 Juri Linkov <juri@jurta.org>
1565 1564
1566 * isearch.el (word-search-regexp, word-search-backward) 1565 * isearch.el (word-search-regexp, word-search-backward)