diff options
Diffstat (limited to 'lisp/ChangeLog')
| -rw-r--r-- | lisp/ChangeLog | 149 |
1 files changed, 124 insertions, 25 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 871b51470f8..484ae6529c3 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,13 +1,111 @@ | |||
| 1 | 2010-05-13 Chong Yidong <cyd@stupidchicken.com> | ||
| 2 | |||
| 3 | Add TeX open-block and close-block keybindings to SGML, and vice | ||
| 4 | versa. | ||
| 5 | |||
| 6 | * textmodes/tex-mode.el (tex-mode-map): Bind C-c C-t to | ||
| 7 | latex-open-block and C-c / to latex-close-block. | ||
| 8 | |||
| 9 | * textmodes/sgml-mode.el (sgml-mode-map): Bind C-c C-o to sgml-tag | ||
| 10 | and C-c C-e to sgml-close-tag. | ||
| 11 | |||
| 12 | 2010-05-13 Michael Albinus <michael.albinus@gmx.de> | ||
| 13 | |||
| 14 | * net/tramp.el (with-progress-reporter): Create reporter object | ||
| 15 | only when the message would be displayed. Handled nested calls. | ||
| 16 | (tramp-handle-load, tramp-handle-file-local-copy) | ||
| 17 | (tramp-handle-insert-file-contents, tramp-handle-write-region) | ||
| 18 | (tramp-maybe-send-script, tramp-find-shell): Use | ||
| 19 | `with-progress-reporter'. | ||
| 20 | (tramp-handle-dired-compress-file, tramp-maybe-open-connection): | ||
| 21 | Fix message text. | ||
| 22 | |||
| 23 | * net/tramp-smb.el (tramp-smb-handle-copy-file) | ||
| 24 | (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file) | ||
| 25 | (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection): | ||
| 26 | Use `with-progress-reporter'. | ||
| 27 | |||
| 28 | 2010-05-13 Agustín Martín <agustin.martin@hispalinux.es> | ||
| 29 | |||
| 30 | * ispell.el (ispell-init-process): Do not kill ispell process | ||
| 31 | everytime when spellchecking from the minibuffer (bug#6143). | ||
| 32 | |||
| 33 | 2010-05-13 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 34 | |||
| 35 | * progmodes/sh-script.el (sh-mode): Use define-derived-mode. | ||
| 36 | |||
| 37 | * dos-fns.el: Add "dos-" prefix for namespace control. | ||
| 38 | (convert-standard-filename): Define as alias for | ||
| 39 | dos-convert-standard-filename but only if applicable. | ||
| 40 | |||
| 41 | 2010-05-12 Alan Mackenzie <acm@muc.de> | ||
| 42 | |||
| 43 | * progmodes/cc-cmds.el (c-beginning-of-defun, c-end-of-defun): | ||
| 44 | Push the mark at the start of these functions when appropriate. | ||
| 45 | |||
| 46 | 2010-05-12 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 47 | |||
| 48 | * minibuffer.el (completion-cycle-threshold): New custom var. | ||
| 49 | (completion--do-completion): Use it. | ||
| 50 | (minibuffer-complete): Use cycling if appropriate. | ||
| 51 | |||
| 52 | 2010-05-11 Juanma Barranquero <lekktu@gmail.com> | ||
| 53 | |||
| 54 | * dirtrack.el (dirtrackp): Remove defcustom; don't make automatically | ||
| 55 | buffer-local (it's an obsolete alias for `dirtrack-mode') (bug#6173). | ||
| 56 | |||
| 57 | 2010-05-11 Juri Linkov <juri@jurta.org> | ||
| 58 | |||
| 59 | * scroll-all.el (scroll-all-check-to-scroll): | ||
| 60 | Add `scroll-up-command' and `scroll-down-command' (bug#6164). | ||
| 61 | |||
| 62 | 2010-05-11 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 63 | |||
| 64 | * iimage.el (iimage-mode-map): Move initialization into declaration. | ||
| 65 | (iimage-mode-buffer): Use with-silent-modifications. | ||
| 66 | Simplify calling convention. Adjust callers. | ||
| 67 | (iimage-mode): Don't run hook redundantly. | ||
| 68 | |||
| 69 | * minibuffer.el (completion-pcm--pattern->regex): | ||
| 70 | Fix last change (bug#6160). | ||
| 71 | |||
| 72 | 2010-05-10 Juri Linkov <juri@jurta.org> | ||
| 73 | |||
| 74 | Remove nodes visited during Isearch from the Info history. | ||
| 75 | * info.el (Info-isearch-initial-history) | ||
| 76 | (Info-isearch-initial-history-list): New variables. | ||
| 77 | (Info-isearch-start): Record initial values of | ||
| 78 | Info-isearch-initial-history and Info-isearch-initial-history-list. | ||
| 79 | Add Info-isearch-end to isearch-mode-end-hook. | ||
| 80 | (Info-isearch-end): New function. | ||
| 81 | |||
| 82 | 2010-05-10 Michael Albinus <michael.albinus@gmx.de> | ||
| 83 | |||
| 84 | * net/tramp.el (tramp-do-file-attributes-with-stat): Add space in | ||
| 85 | format string, in order to work around a bug in pdksh. | ||
| 86 | Reported by Gilles Pion <gpion@lfdj.com>. | ||
| 87 | (tramp-handle-verify-visited-file-modtime): Do not send a command | ||
| 88 | when the connection is not established. | ||
| 89 | (tramp-handle-set-file-times): Simplify the check for utc. | ||
| 90 | |||
| 91 | 2010-05-10 Juanma Barranquero <lekktu@gmail.com> | ||
| 92 | |||
| 93 | Fix use of `filter-buffer-substring' (rework previous change). | ||
| 94 | * emulation/cua-base.el (cua--filter-buffer-noprops): New function. | ||
| 95 | (cua-repeat-replace-region): | ||
| 96 | * emulation/cua-rect.el (cua--extract-rectangle, cua-incr-rectangle): | ||
| 97 | * emulation/cua-gmrk.el (cua-copy-region-to-global-mark) | ||
| 98 | (cua-cut-region-to-global-mark): Use it. | ||
| 99 | |||
| 1 | 2010-05-09 Michael R. Mauger <mmaug@yahoo.com> | 100 | 2010-05-09 Michael R. Mauger <mmaug@yahoo.com> |
| 2 | 101 | ||
| 3 | * progmodes/sql.el: Version 2.1 | 102 | * progmodes/sql.el: Version 2.1. |
| 4 | (sql-product-alist): Redesigned structure of product info. | 103 | (sql-product-alist): Redesign structure of product info. |
| 5 | (sql-product, sql-user, sql-server, sql-database): Safe | 104 | (sql-product, sql-user, sql-server, sql-database): Safe variables. |
| 6 | variables. | ||
| 7 | (sql-port, sql-port-history): New variables. | 105 | (sql-port, sql-port-history): New variables. |
| 8 | (sql-interactive-product): New variable. | 106 | (sql-interactive-product): New variable. |
| 9 | (sql-send-terminator): New variable. | 107 | (sql-send-terminator): New variable. |
| 10 | (sql-imenu-generic-expression): Added "Types" imenu entry. | 108 | (sql-imenu-generic-expression): Add "Types" imenu entry. |
| 11 | (sql-oracle-login-params, sql-sqlite-login-params) | 109 | (sql-oracle-login-params, sql-sqlite-login-params) |
| 12 | (sql-mysql-login-params, sql-solid-login-params) | 110 | (sql-mysql-login-params, sql-solid-login-params) |
| 13 | (sql-sybase-login-params, sql-informix-login-params) | 111 | (sql-sybase-login-params, sql-informix-login-params) |
| @@ -15,10 +113,9 @@ | |||
| 15 | (sql-postgres-login-params, sql-interbase-login-params) | 113 | (sql-postgres-login-params, sql-interbase-login-params) |
| 16 | (sql-db2-login-params, sql-linter-login-params) | 114 | (sql-db2-login-params, sql-linter-login-params) |
| 17 | (sql-oracle-scan-on): New variables. | 115 | (sql-oracle-scan-on): New variables. |
| 18 | (sql-mode-map): Added C-c C-i to start interactive mode. | 116 | (sql-mode-map): Add C-c C-i to start interactive mode. |
| 19 | (sql-mode-menu): Updated existing menu entries. | 117 | (sql-mode-menu): Update existing menu entries. |
| 20 | (sql-font-lock-keywords-builder): Compile-time font-lock | 118 | (sql-font-lock-keywords-builder): Compile-time font-lock optimization. |
| 21 | optimization. | ||
| 22 | (sql-mode-oracle-font-lock-keywords) | 119 | (sql-mode-oracle-font-lock-keywords) |
| 23 | (sql-mode-postgres-font-lock-keywords) | 120 | (sql-mode-postgres-font-lock-keywords) |
| 24 | (sql-mode-ms-font-lock-keywords) | 121 | (sql-mode-ms-font-lock-keywords) |
| @@ -30,7 +127,7 @@ | |||
| 30 | (sql-mode-mysql-font-lock-keywords) | 127 | (sql-mode-mysql-font-lock-keywords) |
| 31 | (sql-mode-sqlite-font-lock-keywords) | 128 | (sql-mode-sqlite-font-lock-keywords) |
| 32 | (sql-mode-db2-font-lock-keywords) | 129 | (sql-mode-db2-font-lock-keywords) |
| 33 | (sql-mode-linter-font-lock-keywords): Updated initialization to | 130 | (sql-mode-linter-font-lock-keywords): Update initialization to |
| 34 | reduce run-time complexity. | 131 | reduce run-time complexity. |
| 35 | (sql-add-product, sql-del-product): New functions. | 132 | (sql-add-product, sql-del-product): New functions. |
| 36 | (sql-set-product-feature, sql-get-product-feature): New functions. | 133 | (sql-set-product-feature, sql-get-product-feature): New functions. |
| @@ -39,12 +136,12 @@ | |||
| 39 | (sql-highlight-product): Update product API. | 136 | (sql-highlight-product): Update product API. |
| 40 | (sql-help-list-products): New function. | 137 | (sql-help-list-products): New function. |
| 41 | (sql-help): Dynamically lists free and non-free products. | 138 | (sql-help): Dynamically lists free and non-free products. |
| 42 | (sql-get-login): Corrected bug in handling history and added | 139 | (sql-get-login): Correct bug in handling history and added |
| 43 | prompt for port. | 140 | prompt for port. |
| 44 | (sql-copy-column): Copy without properties. | 141 | (sql-copy-column): Copy without properties. |
| 45 | (sqli-input-sender): Apply filters to SQLi input. | 142 | (sqli-input-sender): Apply filters to SQLi input. |
| 46 | (sql-query-placeholders-and-send): Obey `sql-oracle-scan-on' | 143 | (sql-query-placeholders-and-send): Obey `sql-oracle-scan-on' setting. |
| 47 | setting. Implement as a filter. | 144 | Implement as a filter. |
| 48 | (sql-escape-newlines-filter): Implement as a filter. | 145 | (sql-escape-newlines-filter): Implement as a filter. |
| 49 | (sql-remove-tabs-filter): New function. | 146 | (sql-remove-tabs-filter): New function. |
| 50 | (sql-send-magic-terminator): New function. | 147 | (sql-send-magic-terminator): New function. |
| @@ -59,8 +156,8 @@ | |||
| 59 | (sql-connect-oracle, sql-connect-sybase, sql-connect-informix) | 156 | (sql-connect-oracle, sql-connect-sybase, sql-connect-informix) |
| 60 | (sql-connect-sqlite, sql-connect-mysql, sql-connect-solid) | 157 | (sql-connect-sqlite, sql-connect-mysql, sql-connect-solid) |
| 61 | (sql-connect-ingres, sql-connect-ms, sql-connect-postgres) | 158 | (sql-connect-ingres, sql-connect-ms, sql-connect-postgres) |
| 62 | (sql-connect-interbase, sql-connect-db2, sql-connect-linter): Use | 159 | (sql-connect-interbase, sql-connect-db2, sql-connect-linter): |
| 63 | `sql-connect'. | 160 | Use `sql-connect'. |
| 64 | 161 | ||
| 65 | 2010-05-09 Stefan Monnier <monnier@iro.umontreal.ca> | 162 | 2010-05-09 Stefan Monnier <monnier@iro.umontreal.ca> |
| 66 | 163 | ||
| @@ -109,7 +206,7 @@ | |||
| 109 | 206 | ||
| 110 | 2010-05-08 Chong Yidong <cyd@stupidchicken.com> | 207 | 2010-05-08 Chong Yidong <cyd@stupidchicken.com> |
| 111 | 208 | ||
| 112 | * international/mule.el (auto-coding-alist): Only purecopy | 209 | * international/mule.el (auto-coding-alist): Only purecopy |
| 113 | car of each item, not the whole list (Bug#6083). | 210 | car of each item, not the whole list (Bug#6083). |
| 114 | 211 | ||
| 115 | 2010-05-08 Chong Yidong <cyd@stupidchicken.com> | 212 | 2010-05-08 Chong Yidong <cyd@stupidchicken.com> |
| @@ -122,7 +219,7 @@ | |||
| 122 | * composite.el (compose-region, reference-point-alist): Fix typos | 219 | * composite.el (compose-region, reference-point-alist): Fix typos |
| 123 | in the doc strings. | 220 | in the doc strings. |
| 124 | 221 | ||
| 125 | 2010-05-08 Alexander Klimov <alserkli@inbox.ru> (tiny change) | 222 | 2010-05-08 Alexander Klimov <alserkli@inbox.ru> (tiny change) |
| 126 | 223 | ||
| 127 | * calc/calc-graph.el (calc-graph-plot): Use the proper form for | 224 | * calc/calc-graph.el (calc-graph-plot): Use the proper form for |
| 128 | gnuplot's "set" command. | 225 | gnuplot's "set" command. |
| @@ -465,7 +562,7 @@ | |||
| 465 | (ede-dired-add-to-target): Use dolist. | 562 | (ede-dired-add-to-target): Use dolist. |
| 466 | 563 | ||
| 467 | 2010-05-01 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com> | 564 | 2010-05-01 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com> |
| 468 | Michael Albinus <michael.albinus@gmx.de> | 565 | Michael Albinus <michael.albinus@gmx.de> |
| 469 | 566 | ||
| 470 | Implement compression for inline methods. | 567 | Implement compression for inline methods. |
| 471 | 568 | ||
| @@ -769,6 +866,8 @@ | |||
| 769 | 866 | ||
| 770 | 2010-04-21 Stefan Monnier <monnier@iro.umontreal.ca> | 867 | 2010-04-21 Stefan Monnier <monnier@iro.umontreal.ca> |
| 771 | 868 | ||
| 869 | Make the log-edit comments use RFC822 format throughout. | ||
| 870 | |||
| 772 | * vc.el (vc-checkin, vc-modify-change-comment): | 871 | * vc.el (vc-checkin, vc-modify-change-comment): |
| 773 | Adjust to new vc-start/finish-logentry. | 872 | Adjust to new vc-start/finish-logentry. |
| 774 | (vc-find-conflicted-file): New command. | 873 | (vc-find-conflicted-file): New command. |
| @@ -974,7 +1073,7 @@ | |||
| 974 | (calc-hyperbolic): Add "Option" to message, as appropriate. | 1073 | (calc-hyperbolic): Add "Option" to message, as appropriate. |
| 975 | (calc-option, calc-is-option): New functions. | 1074 | (calc-option, calc-is-option): New functions. |
| 976 | 1075 | ||
| 977 | * calc-help.el (calc-full-help): Add `calc-option-help'. | 1076 | * calc-help.el (calc-full-help): Add `calc-option-help'. |
| 978 | (calc-option-prefix-help): New function. | 1077 | (calc-option-prefix-help): New function. |
| 979 | 1078 | ||
| 980 | * calc-misc.el (calc-help): Add "Option" entry. | 1079 | * calc-misc.el (calc-help): Add "Option" entry. |
| @@ -1537,7 +1636,7 @@ | |||
| 1537 | values. | 1636 | values. |
| 1538 | 1637 | ||
| 1539 | 2010-03-29 Phil Hagelberg <phil@evri.com> | 1638 | 2010-03-29 Phil Hagelberg <phil@evri.com> |
| 1540 | Chong Yidong <cyd@stupidchicken.com> | 1639 | Chong Yidong <cyd@stupidchicken.com> |
| 1541 | 1640 | ||
| 1542 | * subr.el: Extend progress reporters to perform "spinning". | 1641 | * subr.el: Extend progress reporters to perform "spinning". |
| 1543 | (progress-reporter-update, progress-reporter-do-update): | 1642 | (progress-reporter-update, progress-reporter-do-update): |
| @@ -5180,7 +5279,7 @@ | |||
| 5180 | * Makefile.in (ELCFILES): Adapt to subword.el move. | 5279 | * Makefile.in (ELCFILES): Adapt to subword.el move. |
| 5181 | 5280 | ||
| 5182 | 2009-11-21 Thierry Volpiatto <thierry.volpiatto@gmail.com> | 5281 | 2009-11-21 Thierry Volpiatto <thierry.volpiatto@gmail.com> |
| 5183 | Stefan Monnier <monnier@iro.umontreal.ca> | 5282 | Stefan Monnier <monnier@iro.umontreal.ca> |
| 5184 | 5283 | ||
| 5185 | * bookmark.el (bookmark-bmenu-bookmark-column): Remove var. | 5284 | * bookmark.el (bookmark-bmenu-bookmark-column): Remove var. |
| 5186 | (bookmark-bmenu-list): Save name on `bookmark-name-prop' text-prop. | 5285 | (bookmark-bmenu-list): Save name on `bookmark-name-prop' text-prop. |
| @@ -9266,7 +9365,7 @@ | |||
| 9266 | indent buffer only if called interactively (Bug#4452). | 9365 | indent buffer only if called interactively (Bug#4452). |
| 9267 | 9366 | ||
| 9268 | 2009-09-19 Juanma Barranquero <lekktu@gmail.com> | 9367 | 2009-09-19 Juanma Barranquero <lekktu@gmail.com> |
| 9269 | Eli Zaretskii <eliz@gnu.org> | 9368 | Eli Zaretskii <eliz@gnu.org> |
| 9270 | 9369 | ||
| 9271 | This fixes bug#4197 (merged to bug#865, though not identical). | 9370 | This fixes bug#4197 (merged to bug#865, though not identical). |
| 9272 | * server.el (server-auth-dir): Add docstring note about FAT32. | 9371 | * server.el (server-auth-dir): Add docstring note about FAT32. |
| @@ -10083,7 +10182,7 @@ | |||
| 10083 | Don't call substitute-in-file-name on diary-file. | 10182 | Don't call substitute-in-file-name on diary-file. |
| 10084 | 10183 | ||
| 10085 | 2009-09-03 Eduard Wiebe <usenet@pusto.de> | 10184 | 2009-09-03 Eduard Wiebe <usenet@pusto.de> |
| 10086 | Stefan Monnier <monnier@iro.umontreal.ca> | 10185 | Stefan Monnier <monnier@iro.umontreal.ca> |
| 10087 | 10186 | ||
| 10088 | * mail/footnote.el (footnote-prefix): Make it a defcustom. | 10187 | * mail/footnote.el (footnote-prefix): Make it a defcustom. |
| 10089 | (footnote-mode-map): Move initialization into the declaration. | 10188 | (footnote-mode-map): Move initialization into the declaration. |
| @@ -11194,7 +11293,7 @@ | |||
| 11194 | * progmodes/hideshow.el (hs-special-modes-alist): Add js-mode entry. | 11293 | * progmodes/hideshow.el (hs-special-modes-alist): Add js-mode entry. |
| 11195 | 11294 | ||
| 11196 | 2009-08-14 Daniel Colascione <dan.colascione@gmail.com> | 11295 | 2009-08-14 Daniel Colascione <dan.colascione@gmail.com> |
| 11197 | Karl Landstrom <karl.landstrom@brgeight.se> | 11296 | Karl Landstrom <karl.landstrom@brgeight.se> |
| 11198 | 11297 | ||
| 11199 | * progmodes/js.el: New file. | 11298 | * progmodes/js.el: New file. |
| 11200 | 11299 | ||
| @@ -12961,7 +13060,7 @@ | |||
| 12961 | XZ is the successor to LZMA: <http://tukaani.org/xz/> | 13060 | XZ is the successor to LZMA: <http://tukaani.org/xz/> |
| 12962 | 13061 | ||
| 12963 | 2009-06-22 Dmitry Dzhus <dima@sphinx.net.ru> | 13062 | 2009-06-22 Dmitry Dzhus <dima@sphinx.net.ru> |
| 12964 | Nick Roberts <nickrob@snap.net.nz> | 13063 | Nick Roberts <nickrob@snap.net.nz> |
| 12965 | 13064 | ||
| 12966 | * progmodes/gdb-mi.el: Pull further modified changes from Dmitry's | 13065 | * progmodes/gdb-mi.el: Pull further modified changes from Dmitry's |
| 12967 | repository (http://sphinx.net.ru/hg/gdb-mi/). | 13066 | repository (http://sphinx.net.ru/hg/gdb-mi/). |