diff options
Diffstat (limited to 'lisp/ChangeLog')
| -rw-r--r-- | lisp/ChangeLog | 179 |
1 files changed, 174 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 512e83999ab..5dc59f3cf1c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,172 @@ | |||
| 1 | 2010-03-12 Chong Yidong <cyd@stupidchicken.com> | ||
| 2 | |||
| 3 | * facemenu.el (list-colors-display, list-colors-print): New arg | ||
| 4 | callback. Use it to allow selecting colors. | ||
| 5 | |||
| 6 | * wid-edit.el (widget-image-insert): Insert image prop even if the | ||
| 7 | current display is non-graphic. | ||
| 8 | (widget-field-value-set): New fun. | ||
| 9 | (editable-field): Use it. | ||
| 10 | (widget-field-value-get): Clean up unused var. | ||
| 11 | (widget-color-value-create, widget-color--choose-action): New | ||
| 12 | funs. Allow using list-colors-display to choose color. | ||
| 13 | |||
| 14 | 2010-03-12 Chong Yidong <cyd@stupidchicken.com> | ||
| 15 | |||
| 16 | * cus-edit.el: Resort topmost custom groups. | ||
| 17 | (custom-buffer-sort-alphabetically): Default to t. | ||
| 18 | (customize-apropos): Use apropos-parse-pattern. | ||
| 19 | (custom-search-field): New var. | ||
| 20 | (custom-buffer-create-internal): Add custom-apropos search field. | ||
| 21 | (custom-add-parent-links): Don't display parent doc. | ||
| 22 | (custom-group-value-create): Don't sort top-level custom group. | ||
| 23 | (custom-magic-value-create): Show visibility button before option | ||
| 24 | name. | ||
| 25 | |||
| 26 | (custom-variable-state): New fun, from custom-variable-state-set. | ||
| 27 | (custom-variable-state-set): Use it. | ||
| 28 | (custom-group-value-create): Hide options with standard values | ||
| 29 | using the :hidden-states property. Use progress reporter. | ||
| 30 | |||
| 31 | (custom-show): Simplify. | ||
| 32 | (custom-visibility): Disable images by default. | ||
| 33 | (custom-variable): New property :hidden-states. | ||
| 34 | (custom-variable-value-create): Enable images for | ||
| 35 | custom-visibility widgets. Use :hidden-states property to | ||
| 36 | determine initial visibility. | ||
| 37 | |||
| 38 | * wid-edit.el (widget-image-find): Give images center ascent. | ||
| 39 | (visibility): Add :on-image and :off-image properties. | ||
| 40 | (widget-visibility-value-create): Use them. | ||
| 41 | |||
| 42 | 2010-03-12 Chong Yidong <cyd@stupidchicken.com> | ||
| 43 | |||
| 44 | * cus-edit.el (processes): Remove from development group. | ||
| 45 | (oop, hypermedia): Delete group. | ||
| 46 | (comm): Promote to top-level group. | ||
| 47 | |||
| 48 | * net/browse-url.el (browse-url): | ||
| 49 | * net/xesam.el (xesam): | ||
| 50 | * net/tramp.el (tramp): | ||
| 51 | * net/goto-addr.el (goto-address): | ||
| 52 | * net/ange-ftp.el (ange-ftp): Put in comm group. | ||
| 53 | |||
| 54 | * view.el (view): Remove from editing group. | ||
| 55 | |||
| 56 | * uniquify.el (uniquify): Put in files group. | ||
| 57 | |||
| 58 | * net/browse-url.el (browse-url): | ||
| 59 | * ps-print.el (postscript): Put in external group. | ||
| 60 | |||
| 61 | * cus-edit.el (outlines): | ||
| 62 | * textmodes/text-mode.el (text-mode-hook): | ||
| 63 | * textmodes/table.el (table): | ||
| 64 | * textmodes/picture.el (picture): | ||
| 65 | * outline.el (outlines): Put in wp group. | ||
| 66 | |||
| 67 | * nxml/nxml-mode.el (nxml): Remove from wp group. | ||
| 68 | |||
| 69 | * net/tramp-imap.el (tramp-imap): Put in tramp group. | ||
| 70 | |||
| 71 | * mail/metamail.el (metamail): Remove from hypermedia group. | ||
| 72 | |||
| 73 | * cus-edit.el (abbrev): | ||
| 74 | * whitespace.el (whitespace): | ||
| 75 | * vcursor.el (vcursor): | ||
| 76 | * reveal.el (reveal): | ||
| 77 | * hl-line.el (hl-line): Put in convenience group. | ||
| 78 | |||
| 79 | * epg-config.el (epg): Put in data group. | ||
| 80 | |||
| 81 | * emulation/pc-select.el (pc-select): Put in emulations group. | ||
| 82 | |||
| 83 | * calculator.el (calculator): Put in applications group. | ||
| 84 | |||
| 85 | 2010-03-12 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 86 | |||
| 87 | Add .dir-locals.el support for file-less buffers. | ||
| 88 | * files.el (hack-local-variables): Split out code to apply local | ||
| 89 | variable settings ... | ||
| 90 | (hack-local-variables-apply): ... here. New function. | ||
| 91 | (hack-dir-local-variables): Use the default directory for when the | ||
| 92 | buffer does not have an associated file. | ||
| 93 | (hack-dir-local-variables-non-file-buffer): New function. | ||
| 94 | * diff-mode.el (diff-mode): | ||
| 95 | * vc-annotate.el (vc-annotate-mode): | ||
| 96 | * vc-dir.el (vc-dir-mode): | ||
| 97 | * log-edit.el (log-edit-mode): | ||
| 98 | * log-view.el (log-view-mode): Call hack-dir-local-variables-non-file-buffer. | ||
| 99 | |||
| 100 | 2010-03-12 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 101 | |||
| 102 | Add support for shelving snapshots and for showing shelves. | ||
| 103 | * vc-bzr.el (vc-bzr-shelve-show, vc-bzr-shelve-show-at-point) | ||
| 104 | (vc-bzr-shelve-apply-and-keep-at-point, vc-bzr-shelve-snapshot): | ||
| 105 | New functions. | ||
| 106 | (vc-bzr-shelve-map, vc-bzr-shelve-menu-map) | ||
| 107 | (vc-bzr-extra-menu-map): Map them. | ||
| 108 | |||
| 109 | 2010-03-11 Glenn Morris <rgm@gnu.org> | ||
| 110 | |||
| 111 | * cus-edit.el (customize-changed-options-previous-release): | ||
| 112 | Bump to 23.1. | ||
| 113 | |||
| 114 | * image.el (image-animate-max-time): Fix :version tag. | ||
| 115 | |||
| 116 | 2010-03-10 Chong Yidong <cyd@stupidchicken.com> | ||
| 117 | |||
| 118 | * Branch for 23.2. | ||
| 119 | |||
| 120 | 2010-03-10 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 121 | |||
| 122 | * vc-git.el (vc-git-revision-table): Include remote branches. | ||
| 123 | |||
| 124 | 2010-03-10 Kim F. Storm <storm@cua.dk> | ||
| 125 | |||
| 126 | Animated image API. | ||
| 127 | http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00211.html | ||
| 128 | |||
| 129 | * image.el (image-animate-max-time): New defcustom. | ||
| 130 | (image-animated-types): New defconst. | ||
| 131 | (create-animated-image, image-animate-timer) | ||
| 132 | (image-animate-start, image-animate-stop, image-animate-timeout) | ||
| 133 | (image-animated-p): New functions. | ||
| 134 | |||
| 135 | * image-mode.el (image-toggle-display-image): | ||
| 136 | Replace `create-image' with `create-animated-image'. | ||
| 137 | |||
| 138 | 2010-03-09 Miles Bader <Miles Bader <miles@gnu.org>> | ||
| 139 | |||
| 140 | * vc-git.el (vc-git-print-log): Use "tformat:" for shortlog, | ||
| 141 | instead of "format:"; this ensures that the output is | ||
| 142 | newline-terminated. | ||
| 143 | |||
| 144 | 2010-03-08 Chong Yidong <cyd@stupidchicken.com> | ||
| 145 | |||
| 146 | * mail/rfc822.el (rfc822-addresses): Use nested catches to ensure | ||
| 147 | that all errors are caught, and that the return value is always a | ||
| 148 | list (Bug#5692). | ||
| 149 | |||
| 150 | 2010-03-08 Kenichi Handa <handa@m17n.org> | ||
| 151 | |||
| 152 | * language/misc-lang.el (windows-1256): New coding system. | ||
| 153 | (cp1256): New alias of windows-1256 (bug#5690). | ||
| 154 | |||
| 155 | 2010-03-07 Andreas Schwab <schwab@linux-m68k.org> | ||
| 156 | |||
| 157 | * mail/rfc822.el (rfc822-addresses): Move catch clause down around | ||
| 158 | call to rfc822-bad-address. (Bug#5692) | ||
| 159 | |||
| 160 | 2010-03-07 Štěpán Němec <stepnem@gmail.com> (tiny change) | ||
| 161 | |||
| 162 | * vc-git.el (vc-git-annotate-extract-revision-at-line): Use | ||
| 163 | vc-git-root as default directory for revision path (Bug#5657). | ||
| 164 | |||
| 165 | 2010-03-06 Chong Yidong <cyd@stupidchicken.com> | ||
| 166 | |||
| 167 | * calculator.el (calculator): Don't bind split-window-keep-point | ||
| 168 | (Bug#5674). | ||
| 169 | |||
| 1 | 2010-03-06 Stefan Monnier <monnier@iro.umontreal.ca> | 170 | 2010-03-06 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 171 | ||
| 3 | * vc-git.el: Re-flow to fit into 80 columns. | 172 | * vc-git.el: Re-flow to fit into 80 columns. |
| @@ -61,7 +230,7 @@ | |||
| 61 | 2010-03-01 Alan Mackenzie <bug-cc-mode@gnu.org> | 230 | 2010-03-01 Alan Mackenzie <bug-cc-mode@gnu.org> |
| 62 | 231 | ||
| 63 | * cc-engine.el (c-remove-stale-state-cache): Take account of when | 232 | * cc-engine.el (c-remove-stale-state-cache): Take account of when |
| 64 | `good-pos' is in the same macro as `here'. Fixes bug 5649. | 233 | `good-pos' is in the same macro as `here'. Fixes bug#5649. |
| 65 | 234 | ||
| 66 | 2010-02-28 Katsumi Yamaoka <yamaoka@jpl.org> | 235 | 2010-02-28 Katsumi Yamaoka <yamaoka@jpl.org> |
| 67 | 236 | ||
| @@ -170,8 +339,8 @@ | |||
| 170 | 339 | ||
| 171 | 2010-02-20 Kevin Ryde <user42@zip.com.au> | 340 | 2010-02-20 Kevin Ryde <user42@zip.com.au> |
| 172 | 341 | ||
| 173 | * progmodes/compile.el (compilation-error-regexp-alist-alist): In | 342 | * progmodes/compile.el (compilation-error-regexp-alist-alist): |
| 174 | `watcom' anchor regexp to start of line, to avoid slowness | 343 | In `watcom' anchor regexp to start of line, to avoid slowness |
| 175 | (Bug#5599). | 344 | (Bug#5599). |
| 176 | 345 | ||
| 177 | 2010-02-20 Eli Zaretskii <eliz@gnu.org> | 346 | 2010-02-20 Eli Zaretskii <eliz@gnu.org> |
| @@ -236,9 +405,9 @@ | |||
| 236 | 405 | ||
| 237 | 2010-02-17 Mark A. Hershberger <mah@everybody.org> | 406 | 2010-02-17 Mark A. Hershberger <mah@everybody.org> |
| 238 | 407 | ||
| 239 | * vc-bzr.el: fix typo in Known Bugs section. | 408 | * vc-bzr.el: Fix typo in Known Bugs section. |
| 240 | 409 | ||
| 241 | * isearch.el (isearch-update-post-hook): New hook | 410 | * isearch.el (isearch-update-post-hook): New hook. |
| 242 | (isearch-update): Use the new hook. | 411 | (isearch-update): Use the new hook. |
| 243 | 412 | ||
| 244 | 2010-02-16 Michael Albinus <michael.albinus@gmx.de> | 413 | 2010-02-16 Michael Albinus <michael.albinus@gmx.de> |