diff options
Diffstat (limited to 'lisp/ChangeLog')
| -rw-r--r-- | lisp/ChangeLog | 219 |
1 files changed, 217 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 38c536af62c..762779cc01e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,218 @@ | |||
| 1 | 2011-08-24 Juri Linkov <juri@jurta.org> | ||
| 2 | |||
| 3 | * proced.el (proced-marked): Inherit from `error' instead of | ||
| 4 | `font-lock-warning-face'. | ||
| 5 | |||
| 6 | * ibuffer.el (ibuffer-marked-face): Change default face from | ||
| 7 | `font-lock-warning-face' to `warning'. | ||
| 8 | (ibuffer-deletion-face): Change default face from | ||
| 9 | `font-lock-type-face' to `error'. | ||
| 10 | |||
| 11 | * battery.el (battery-update): Use the face `error' instead of | ||
| 12 | `font-lock-warning-face' (bug#6117). | ||
| 13 | |||
| 14 | 2011-08-24 Juri Linkov <juri@jurta.org> | ||
| 15 | |||
| 16 | * faces.el (success): Change face color from "Green3" to | ||
| 17 | "ForestGreen" on light background (bug#9353). | ||
| 18 | |||
| 19 | 2011-08-24 Chong Yidong <cyd@stupidchicken.com> | ||
| 20 | |||
| 21 | * window.el (quit-window): Renamed from quit-restore-window. Use | ||
| 22 | same arglist as old quit-window. | ||
| 23 | (frame-auto-delete): Doc fix. | ||
| 24 | |||
| 25 | * view.el (view-mode-exit): Use quit-window. | ||
| 26 | |||
| 27 | 2011-08-24 Juri Linkov <juri@jurta.org> | ||
| 28 | |||
| 29 | * isearch.el (isearch-ring-adjust1): Start visiting previous | ||
| 30 | search strings from the index 0 (-1 + 1) instead of 1 (0 + 1). | ||
| 31 | (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1' | ||
| 32 | for empty search string (when the last search string is reused | ||
| 33 | automatically) to adjust the isearch ring to the last element and | ||
| 34 | prepare the correct index for further M-p commands (bug#9185). | ||
| 35 | |||
| 36 | 2011-08-24 Kenichi Handa <handa@m17n.org> | ||
| 37 | |||
| 38 | * international/ucs-normalize.el: If decomposition property of | ||
| 39 | CHAR is the default one (i.e. a list of CHAR itself), treat it as | ||
| 40 | nil. | ||
| 41 | (nfd, nfkd): Likewise. | ||
| 42 | |||
| 43 | 2011-08-24 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 44 | |||
| 45 | * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals | ||
| 46 | from process filters aren't reliably transmitted to the surrounding | ||
| 47 | accept-process-output. | ||
| 48 | (mpc-proc-check): New function. | ||
| 49 | (mpc-proc-sync): Use it (bug#8293) | ||
| 50 | |||
| 51 | 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 52 | |||
| 53 | * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric): | ||
| 54 | Add compatibility functions (bug#9313). | ||
| 55 | |||
| 56 | 2011-08-23 Eli Zaretskii <eliz@gnu.org> | ||
| 57 | |||
| 58 | * cus-start.el (all): Add entry for bidi-paragraph-direction. | ||
| 59 | |||
| 60 | * international/uni-bidi.el: Regenerated. | ||
| 61 | |||
| 62 | 2011-08-23 Kenichi Handa <handa@m17n.org> | ||
| 63 | |||
| 64 | * international/charprop.el: | ||
| 65 | * international/uni-bidi.el: | ||
| 66 | * international/uni-category.el: | ||
| 67 | * international/uni-combining.el: | ||
| 68 | * international/uni-comment.el: | ||
| 69 | * international/uni-decimal.el: | ||
| 70 | * international/uni-decomposition.el: | ||
| 71 | * international/uni-digit.el: | ||
| 72 | * international/uni-lowercase.el: | ||
| 73 | * international/uni-mirrored.el: | ||
| 74 | * international/uni-name.el: | ||
| 75 | * international/uni-numeric.el: | ||
| 76 | * international/uni-old-name.el: | ||
| 77 | * international/uni-titlecase.el: | ||
| 78 | * international/uni-uppercase.el: Regenerate. | ||
| 79 | |||
| 80 | 2011-08-23 Martin Rudalics <rudalics@gmx.at> | ||
| 81 | |||
| 82 | * help.el (help-window-setup): Fix message displayed when other | ||
| 83 | window is reused. (Bug#9341) | ||
| 84 | |||
| 85 | 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 86 | |||
| 87 | * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list. | ||
| 88 | * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161). | ||
| 89 | |||
| 90 | * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop. | ||
| 91 | Mark obsolete. | ||
| 92 | * shell.el (shell-parse-pcomplete-arguments): New function. | ||
| 93 | (shell-completion-vars): Use it instead (bug#9160). | ||
| 94 | |||
| 95 | 2011-08-22 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 96 | |||
| 97 | * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in | ||
| 98 | strings and comments (bug#9333). | ||
| 99 | |||
| 100 | * emacs-lisp/debug.el (debug-arglist): New function. | ||
| 101 | (debug-convert-byte-code): Use it. Handle lexical byte-codes. | ||
| 102 | (debug-on-entry-1): Handle interpreted closures (bug#9120). | ||
| 103 | |||
| 104 | 2011-08-22 Juri Linkov <juri@jurta.org> | ||
| 105 | |||
| 106 | * progmodes/compile.el (compilation-mode-font-lock-keywords): | ||
| 107 | Revert regexp that highlights output switches to its old | ||
| 108 | pre-2010-10-28 value and remove one `?' from it (bug#9319). | ||
| 109 | |||
| 110 | * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p' | ||
| 111 | to check for empty output (bug#9226). | ||
| 112 | |||
| 113 | 2011-08-22 Chong Yidong <cyd@stupidchicken.com> | ||
| 114 | |||
| 115 | * progmodes/scheme.el (scheme-mode-syntax-table): Don't use | ||
| 116 | symbol-constituent as the default, as that stops font-lock from | ||
| 117 | working properly (Bug#8843). | ||
| 118 | |||
| 119 | 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org> | ||
| 120 | |||
| 121 | * mail/smtpmail.el (smtpmail-via-smtp): Only bind | ||
| 122 | `coding-system-for-*' around the process open call to avoid | ||
| 123 | auth-source side effects. | ||
| 124 | (smtpmail-try-auth-methods): Expand the secret password. | ||
| 125 | (smtpmail-query-smtp-server): Allow `quit'-ing out in case the | ||
| 126 | probe hangs. | ||
| 127 | |||
| 128 | 2011-08-21 Chong Yidong <cyd@stupidchicken.com> | ||
| 129 | |||
| 130 | * term.el (term-mouse-paste): Yank primary selection (Bug#6845). | ||
| 131 | |||
| 132 | * emacs-lisp/find-func.el (find-function-noselect): New arg | ||
| 133 | lisp-only. | ||
| 134 | |||
| 135 | * emacs-lisp/edebug.el (edebug-instrument-function): Use it to | ||
| 136 | signal an error for built-in functions (Bug#6664). | ||
| 137 | |||
| 138 | 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org> | ||
| 139 | |||
| 140 | * mail/smtpmail.el (smtpmail-smtp-user): New variable. | ||
| 141 | (smtpmail-try-auth-methods): Use it. | ||
| 142 | |||
| 143 | 2011-08-21 Chong Yidong <cyd@stupidchicken.com> | ||
| 144 | |||
| 145 | * font-lock.el (font-lock-fontify-region) | ||
| 146 | (font-lock-unfontify-region, font-lock-default-fontify-buffer) | ||
| 147 | (font-lock-default-unfontify-buffer) | ||
| 148 | (font-lock-default-fontify-region) | ||
| 149 | (font-lock-default-unfontify-region): Add docstrings (Bug#8624). | ||
| 150 | |||
| 151 | * progmodes/compile.el (compilation-error-properties): | ||
| 152 | Fix confusion between file struct and message struct (Bug#9319). | ||
| 153 | (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to | ||
| 154 | `ant' regexp. | ||
| 155 | |||
| 156 | * net/browse-url.el (browse-url-firefox): Don't call | ||
| 157 | browse-url-firefox-sentinel unless using -remote (Bug#9328). | ||
| 158 | |||
| 159 | 2011-08-20 Glenn Morris <rgm@gnu.org> | ||
| 160 | |||
| 161 | * tutorial.el (help-with-tutorial): Avoid an error on short screens. | ||
| 162 | |||
| 163 | * tutorial.el (tutorial--default-keys): Update some default bindings. | ||
| 164 | |||
| 165 | * files.el (hack-local-variables): Fully ignore case for "mode:". | ||
| 166 | |||
| 167 | 2011-08-20 Alan Mackenzie <acm@muc.de> | ||
| 168 | |||
| 169 | Resolve invalid use of a regexp in regexp-opt. | ||
| 170 | |||
| 171 | * cc-fonts.el (c-complex-decl-matchers): Add in special detection | ||
| 172 | for a java annotation. | ||
| 173 | |||
| 174 | * cc-engine.el (c-forward-decl-or-cast-1): Add in special | ||
| 175 | detection for a java annotation. | ||
| 176 | |||
| 177 | * cc-langs.el (c-prefix-spec-kwds-re): Remove the special handling | ||
| 178 | for java. | ||
| 179 | (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+". | ||
| 180 | |||
| 181 | 2011-08-20 Chong Yidong <cyd@stupidchicken.com> | ||
| 182 | |||
| 183 | * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix | ||
| 184 | (Bug#9274). | ||
| 185 | |||
| 186 | 2011-08-20 Alan Mackenzie <acm@muc.de> | ||
| 187 | |||
| 188 | * Fontify CPP expressions correctly when starting in the middle of | ||
| 189 | such a construct. Mainly for when jit-lock etc. starts a chunk | ||
| 190 | here. | ||
| 191 | |||
| 192 | * progmodes/cc-fonts.el (c-font-lock-context): new buffer local | ||
| 193 | variable. | ||
| 194 | (c-make-font-lock-search-form): new function, extracted from | ||
| 195 | c-make-font-lock-search-function. | ||
| 196 | (c-make-font-lock-search-function): Use the above function. | ||
| 197 | (c-make-font-lock-context-search-function): New function. | ||
| 198 | (c-cpp-matchers): Enhance the preprocessor expression case with | ||
| 199 | the above function | ||
| 200 | (c-font-lock-complex-decl-prepare): Test for being in a CPP form | ||
| 201 | which takes an expression. | ||
| 202 | |||
| 203 | * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable. | ||
| 204 | |||
| 205 | 2011-08-20 Martin Rudalics <rudalics@gmx.at> | ||
| 206 | |||
| 207 | * window.el (display-buffer-reuse-window) | ||
| 208 | (display-buffer-pop-up-window): Don't reuse or split a side | ||
| 209 | window. | ||
| 210 | |||
| 211 | 2011-08-19 Glenn Morris <rgm@gnu.org> | ||
| 212 | |||
| 213 | * files.el (hack-local-variables-prop-line, hack-local-variables): | ||
| 214 | Downcase "Mode:". (Bug#9331) | ||
| 215 | |||
| 1 | 2011-08-18 Chong Yidong <cyd@stupidchicken.com> | 216 | 2011-08-18 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 217 | ||
| 3 | * international/characters.el: Add L and R categories. | 218 | * international/characters.el: Add L and R categories. |
| @@ -28,8 +243,8 @@ | |||
| 28 | binding variables (bug#9298). Also clean up some unused | 243 | binding variables (bug#9298). Also clean up some unused |
| 29 | autoloads. | 244 | autoloads. |
| 30 | 245 | ||
| 31 | * net/network-stream.el (network-stream-open-starttls): Support | 246 | * net/network-stream.el (network-stream-open-starttls): |
| 32 | using starttls.el without using gnutls-cli. | 247 | Support using starttls.el without using gnutls-cli. |
| 33 | 248 | ||
| 34 | 2011-08-17 Juri Linkov <juri@jurta.org> | 249 | 2011-08-17 Juri Linkov <juri@jurta.org> |
| 35 | 250 | ||