diff options
| author | Kenichi Handa | 2010-11-25 12:56:41 +0900 |
|---|---|---|
| committer | Kenichi Handa | 2010-11-25 12:56:41 +0900 |
| commit | e957f9ae90f3cab1584c06877cbff075d52a6a9a (patch) | |
| tree | d19aea6f4c6a3e369604ab8bc97be6d419073b0c /lisp/ChangeLog | |
| parent | b84ae584330c940010bc543fd925eddeb13fd9e2 (diff) | |
| parent | 33aeea0eb66921329fde41e14cfda2565c6bad6d (diff) | |
| download | emacs-e957f9ae90f3cab1584c06877cbff075d52a6a9a.tar.gz emacs-e957f9ae90f3cab1584c06877cbff075d52a6a9a.zip | |
merge emacs-23
Diffstat (limited to 'lisp/ChangeLog')
| -rw-r--r-- | lisp/ChangeLog | 731 |
1 files changed, 639 insertions, 92 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 358c674639e..fc460eaaf3d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,548 @@ | |||
| 1 | 2010-11-24 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * progmodes/which-func.el (which-func-imenu-joiner-function): | ||
| 4 | Return a string, as expected. | ||
| 5 | (which-function-mode): Make sure we stop any previous timer before | ||
| 6 | starting a new one. | ||
| 7 | |||
| 8 | 2010-11-23 Michael Albinus <michael.albinus@gmx.de> | ||
| 9 | |||
| 10 | * net/tramp.el (tramp-default-method-alist) | ||
| 11 | (tramp-default-user-alist, tramp-default-proxies-alist): | ||
| 12 | Adapt custom options type. (Bug#7445) | ||
| 13 | |||
| 14 | 2010-11-21 Chong Yidong <cyd@stupidchicken.com> | ||
| 15 | |||
| 16 | * progmodes/python.el: Add Ipython support (Bug#5390). | ||
| 17 | (python-shell-prompt-alist) | ||
| 18 | (python-shell-continuation-prompt-alist): New options. | ||
| 19 | (python--set-prompt-regexp): New function. | ||
| 20 | (inferior-python-mode, run-python, python-shell): | ||
| 21 | Require ansi-color. Use python--set-prompt-regexp to set the comint | ||
| 22 | prompt based on the Python interpreter. | ||
| 23 | (python--prompt-regexp): New var. | ||
| 24 | (python-check-comint-prompt) | ||
| 25 | (python-comint-output-filter-function): Use it. | ||
| 26 | (run-python): Use a pipe (Bug#5694). | ||
| 27 | |||
| 28 | 2010-11-21 Chong Yidong <cyd@stupidchicken.com> | ||
| 29 | |||
| 30 | * progmodes/python.el (run-python): Doc fix. | ||
| 31 | (python-keep-current-directory-in-path): New var (Bug#7454). | ||
| 32 | |||
| 33 | 2010-11-20 Chong Yidong <cyd@stupidchicken.com> | ||
| 34 | |||
| 35 | * lpr.el (lpr-buffer, print-buffer, lpr-region, print-region): | ||
| 36 | Prompt user before actually printing. | ||
| 37 | |||
| 38 | 2010-11-18 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 39 | |||
| 40 | * simple.el (kill-new, kill-append, kill-region): | ||
| 41 | * comint.el (comint-kill-region): Make the yank-handler argument | ||
| 42 | obsolete. | ||
| 43 | |||
| 44 | 2010-11-17 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 45 | |||
| 46 | * emacs-lisp/smie.el (smie-bnf-classify): Signal errors for tokens | ||
| 47 | that are both openers (resp. closers) and something else. | ||
| 48 | (smie-grammar): Loosen definition of valid values. | ||
| 49 | (smie-next-sexp, smie-down-list, smie-blink-matching-open) | ||
| 50 | (smie-indent--parent, smie-rule-parent, smie-indent-keyword) | ||
| 51 | (smie-indent-after-keyword): Adjust users. | ||
| 52 | (smie-indent-keyword): Don't indent empty lines. | ||
| 53 | |||
| 54 | * vc-hg.el (vc-hg-program): New var. | ||
| 55 | Suggested by Norman Gray <norman@astro.gla.ac.uk>. | ||
| 56 | (vc-hg-state, vc-hg-working-revision, vc-hg-command): Use it. | ||
| 57 | |||
| 58 | 2010-11-17 Glenn Morris <rgm@gnu.org> | ||
| 59 | |||
| 60 | * emacs-lisp/autoload.el (autoload-find-destination): The function | ||
| 61 | coding-system-eol-type may return non-numeric values. (Bug#7414) | ||
| 62 | |||
| 63 | 2010-11-16 Ulrich Mueller <ulm@gentoo.org> | ||
| 64 | |||
| 65 | * server.el (server-force-stop): Ensure the server is stopped (Bug#7409). | ||
| 66 | |||
| 67 | 2010-11-13 Eli Zaretskii <eliz@gnu.org> | ||
| 68 | |||
| 69 | * subr.el (posn-col-row): Pay attention to header line. (Bug#7390) | ||
| 70 | |||
| 71 | 2010-11-13 Chong Yidong <cyd@stupidchicken.com> | ||
| 72 | |||
| 73 | * textmodes/picture.el (picture-mouse-set-point): Don't use | ||
| 74 | posn-col-row; explicitly compute the motion based on the posn at | ||
| 75 | the window-start (Bug#7390). | ||
| 76 | |||
| 77 | 2010-11-13 Michael Albinus <michael.albinus@gmx.de> | ||
| 78 | |||
| 79 | * net/tramp.el (tramp-remote-coding-commands): Add an alternative | ||
| 80 | using "base64 -d -i". This is needed for older base64 versions | ||
| 81 | from GNU coreutils. Reported by Klaus Reichl | ||
| 82 | <Klaus.Reichl@thalesgroup.com>. | ||
| 83 | |||
| 84 | 2010-11-13 Glenn Morris <rgm@gnu.org> | ||
| 85 | |||
| 86 | * novice.el (disabled-command-function): | ||
| 87 | Fix 2009-11-15 change. (Bug#7384) | ||
| 88 | |||
| 89 | 2010-11-12 Glenn Morris <rgm@gnu.org> | ||
| 90 | |||
| 91 | * calendar/calendar.el (diary-iso-date-forms): Make elements | ||
| 92 | mutually exclusive. (Bug#7377) | ||
| 93 | |||
| 94 | 2010-11-12 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 95 | |||
| 96 | * emacs-lisp/smie.el (smie-prec2->grammar): Obey equality constraints | ||
| 97 | when filling the remaining "unconstrained" values. | ||
| 98 | |||
| 99 | 2010-11-11 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 100 | |||
| 101 | * emacs-lisp/bytecomp.el (byte-compile-warnings): Simplify the | ||
| 102 | safety predicate. | ||
| 103 | |||
| 104 | * files.el (safe-local-variable-p): Gracefully handle errors. | ||
| 105 | |||
| 106 | * emacs-lisp/smie.el (smie-rule-parent, smie-indent--rule): | ||
| 107 | Use smie-indent-virtual when indenting relative to an opener. | ||
| 108 | (smie-rule-separator): Use smie-rule-parent. | ||
| 109 | (smie-indent-keyword): Consult rules, even for openers at bol. | ||
| 110 | (smie-indent-comment-close): Try to align closer's content. | ||
| 111 | |||
| 112 | 2010-11-11 Glenn Morris <rgm@gnu.org> | ||
| 113 | |||
| 114 | * ls-lisp.el (ls-lisp-dired-ignore-case): Make it an obsolete alias. | ||
| 115 | |||
| 116 | 2010-11-10 Glenn Morris <rgm@gnu.org> | ||
| 117 | |||
| 118 | * printing.el (pr-menu-bind): Doc fix. | ||
| 119 | |||
| 120 | * speedbar.el (speedbar-toggle-images): Doc fix. | ||
| 121 | |||
| 122 | * progmodes/python.el (python-shell): Doc fix. | ||
| 123 | |||
| 124 | * wid-edit.el (widget-field-use-before-change) | ||
| 125 | (widget-use-overlay-change): Doc fixes. | ||
| 126 | |||
| 127 | 2010-11-09 Glenn Morris <rgm@gnu.org> | ||
| 128 | |||
| 129 | * progmodes/tcl.el (tcl-hairy-scan-for-comment): Doc fix. | ||
| 130 | |||
| 131 | 2010-11-08 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 132 | |||
| 133 | * minibuffer.el (minibuffer-completion-help): Specify the end of the | ||
| 134 | completion field (bug#7211). | ||
| 135 | |||
| 136 | * progmodes/python.el (python-font-lock-syntactic-keywords): (bug#7322) | ||
| 137 | Fix handling of backslash escapes. | ||
| 138 | (python-quote-syntax): Adjust accordingly. | ||
| 139 | |||
| 140 | 2010-11-08 Richard Levitte <richard@levitte.org> (tiny change) | ||
| 141 | |||
| 142 | * vc-mtn.el (vc-mtn-working-revision, vc-mtn-after-dir-status) | ||
| 143 | (vc-mtn-workfile-branch): Adjust to new output format. | ||
| 144 | |||
| 145 | 2010-11-08 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 146 | |||
| 147 | * international/mule-cmds.el (princ-list): Mark as obsolete. | ||
| 148 | |||
| 149 | 2010-11-07 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 150 | |||
| 151 | * emacs-lisp/smie.el: New package. | ||
| 152 | |||
| 153 | 2010-11-06 Michael Albinus <michael.albinus@gmx.de> | ||
| 154 | |||
| 155 | * files.el (backup-by-copying-when-mismatch): | ||
| 156 | Set `permanent-local' property. | ||
| 157 | |||
| 158 | * net/tramp.el (tramp-handle-insert-file-contents): Do not set | ||
| 159 | `permanent-local' property for `backup-by-copying-when-mismatch'. | ||
| 160 | |||
| 161 | 2010-11-06 Eli Zaretskii <eliz@gnu.org> | ||
| 162 | |||
| 163 | * ls-lisp.el (insert-directory): Doc fix. (bug#7285) | ||
| 164 | (ls-lisp-classify-file): New function. | ||
| 165 | (ls-lisp-insert-directory): Call it if switches include -F (bug#6294). | ||
| 166 | (ls-lisp-classify): Call ls-lisp-classify-file. | ||
| 167 | (insert-directory): Remove blanks from switches. | ||
| 168 | |||
| 169 | 2010-11-07 Wilson Snyder <wsnyder@wsnyder.org> | ||
| 170 | |||
| 171 | * progmodes/verilog-mode.el (verilog-insert-one-definition) | ||
| 172 | (verilog-read-decls, verilog-read-sub-decls-sig): Fix AUTOWIRE and | ||
| 173 | AUTOINOUT for SV style multidimensional arrays, bug294. | ||
| 174 | Reported by Eric Mastromarchi. | ||
| 175 | (verilog-preprocess): Use with-current-buffer and | ||
| 176 | font-lock-fontify-buffer to cleanup style issues. | ||
| 177 | |||
| 178 | 2010-11-05 Michael Albinus <michael.albinus@gmx.de> | ||
| 179 | |||
| 180 | * net/trampver.el: Update release number. | ||
| 181 | |||
| 182 | 2010-08-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 183 | |||
| 184 | * mouse.el (mouse-fixup-help-message): Match "mouse-2" only at the | ||
| 185 | beginning of the string. Use `string-match-p'. (Bug#6765) | ||
| 186 | |||
| 187 | 2010-11-01 Glenn Morris <rgm@gnu.org> | ||
| 188 | |||
| 189 | * locate.el (locate, locate-mode): Doc fixes. | ||
| 190 | |||
| 191 | 2010-11-01 Chong Yidong <cyd@stupidchicken.com> | ||
| 192 | |||
| 193 | * server.el (server-start): New arg INHIBIT-PROMPT prevents asking | ||
| 194 | user for confirmation. | ||
| 195 | (server-force-stop): Use it. | ||
| 196 | (server-start): Use server-force-stop for kill-emacs-hook, to | ||
| 197 | avoid user interaction while killing Emacs. | ||
| 198 | |||
| 199 | 2010-10-31 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 200 | |||
| 201 | * vc/log-edit.el (log-edit-rewrite-fixes): New var. | ||
| 202 | (log-edit-author): New dynamic var. | ||
| 203 | (log-edit-changelog-ours-p, log-edit-insert-changelog-entries): | ||
| 204 | Use it to return the author if different from committer. | ||
| 205 | (log-edit-insert-changelog): Use them to add Author: and Fixes headers. | ||
| 206 | |||
| 207 | 2010-10-31 Eli Zaretskii <eliz@gnu.org> | ||
| 208 | |||
| 209 | * vc/vc-hooks.el (vc-default-mode-line-string): Doc fix. | ||
| 210 | |||
| 211 | 2010-10-31 Chong Yidong <cyd@stupidchicken.com> | ||
| 212 | |||
| 213 | * vc/vc.el (vc-deduce-backend): New fun. Handle diff buffers. | ||
| 214 | (vc-root-diff, vc-print-root-log, vc-log-incoming) | ||
| 215 | (vc-log-outgoing): Use it. | ||
| 216 | (vc-diff-internal): Set diff-vc-backend. | ||
| 217 | |||
| 218 | * vc/diff-mode.el (diff-vc-backend): New var. | ||
| 219 | |||
| 220 | 2010-10-31 Juri Linkov <juri@jurta.org> | ||
| 221 | |||
| 222 | * vc/vc.el (vc-diff-internal): Set `revert-buffer-function' | ||
| 223 | buffer-locally to lambda that re-runs the vc diff command. | ||
| 224 | (Bug#6447) | ||
| 225 | |||
| 226 | 2010-10-31 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 227 | |||
| 228 | * vc/log-view.el (log-view-mode-map): Bind revert-buffer. | ||
| 229 | |||
| 230 | Make 'g' (AKA revert-buffer) rerun VC log, log-incoming and | ||
| 231 | log-outgoing commands. | ||
| 232 | * vc/vc.el (vc-log-internal-common): Add a new argument and use it | ||
| 233 | to create a buffer local revert-buffer-function variable. | ||
| 234 | (vc-print-log-internal, vc-log-incoming, vc-log-outgoing): Pass a | ||
| 235 | revert-buffer-function lambda. | ||
| 236 | |||
| 237 | Improve VC create/retrieve tag/branch. | ||
| 238 | * vc.el (vc-create-tag): Do not read the directory name for VCs | ||
| 239 | with repository revision granularity. Adjust the tag/branch | ||
| 240 | prompt. Reset VC properties. | ||
| 241 | (vc-retrieve-tag): Do not read the directory name for VCs | ||
| 242 | with repository revision granularity. Reset VC properties. | ||
| 243 | |||
| 244 | Add optional support for resetting VC properties. | ||
| 245 | * vc-dispatcher.el (vc-resynch-window): Add new optional argument, | ||
| 246 | call vc-file-clearprops when true. | ||
| 247 | (vc-resynch-buffer): Add new optional argument, pass it down. | ||
| 248 | (vc-resynch-buffers-in-directory): Likewise. | ||
| 249 | |||
| 250 | Improve support for special markup in the VC commit message. | ||
| 251 | * vc-mtn.el (vc-mtn-checkin): Support Author: and Date: markup. | ||
| 252 | * vc-hg.el (vc-hg-checkin): Add support for Date:. | ||
| 253 | * vc-git.el (vc-git-checkin): | ||
| 254 | * vc-bzr.el (vc-bzr-checkin): Likewise. | ||
| 255 | |||
| 256 | Add support for vc-log-incoming, improve vc-log-outgoing for Git. | ||
| 257 | * vc-git.el (vc-git-log-view-mode): Fix font lock for | ||
| 258 | incoming/outgoing logs. | ||
| 259 | (vc-git-log-outgoing, vc-git-log-incoming): New functions. | ||
| 260 | |||
| 261 | * vc-git.el (vc-git-log-outgoing): Use the same format as the | ||
| 262 | short log. | ||
| 263 | (vc-git-log-incoming): Likewise. Run "git fetch" before the log | ||
| 264 | command | ||
| 265 | |||
| 266 | Add bindings for vc-log-incoming and vc-log-outgoing. | ||
| 267 | * vc-hooks.el (vc-prefix-map): Add bindings for vc-log-incoming | ||
| 268 | and vc-log-outgoing. | ||
| 269 | * vc-dir.el (vc-dir-menu-map): Add menu bindings for vc-log-incoming | ||
| 270 | and vc-log-outgoing. | ||
| 271 | |||
| 272 | Improve state updating for VC tag commands. | ||
| 273 | * vc.el (vc-create-tag, vc-retrieve-tag): Call vc-resynch-buffer | ||
| 274 | to update the state of all buffers in the directory. | ||
| 275 | |||
| 276 | 2010-05-19 Glenn Morris <rgm@gnu.org> | ||
| 277 | |||
| 278 | * vc-dir.el (vc-dir): Don't pop-up-windows. (Bug#6204) | ||
| 279 | |||
| 280 | 2010-10-31 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 281 | |||
| 282 | * vc.el (vc-checkin, vc-modify-change-comment): | ||
| 283 | Adjust to new vc-start/finish-logentry. | ||
| 284 | (vc-find-conflicted-file): New command. | ||
| 285 | (vc-transfer-file): Adjust to new vc-checkin. | ||
| 286 | (vc-next-action): Improve scoping. | ||
| 287 | |||
| 288 | * vc-git.el (vc-git-checkin): Use log-edit-extract-headers. | ||
| 289 | (vc-git-commits-coding-system): Rename from git-commits-coding-system. | ||
| 290 | |||
| 291 | * vc-dispatcher.el (vc-log-edit): Shorten names for | ||
| 292 | log-edit-show-files. | ||
| 293 | |||
| 294 | * vc-bzr.el (vc-bzr-checkin): Use log-edit-extract-headers. | ||
| 295 | (vc-bzr-conflicted-files): New function. | ||
| 296 | |||
| 297 | * log-edit.el (log-edit-summary, log-edit-header) | ||
| 298 | (log-edit-unknown-header): New faces. | ||
| 299 | (log-edit-headers-alist): New var. | ||
| 300 | (log-edit-header-contents-regexp): New const. | ||
| 301 | (log-edit-match-to-eoh): New function. | ||
| 302 | (log-edit-font-lock-keywords): Use them. | ||
| 303 | (log-edit): Insert a "Summary:" header as default. | ||
| 304 | (log-edit-mode): Mark font-lock rules as case-insensitive. | ||
| 305 | (log-edit-done): Cleanup headers. | ||
| 306 | (log-edit-extract-headers): New function to replace it. | ||
| 307 | |||
| 308 | * vc-dispatcher.el (vc-finish-logentry): Don't mess so badly with | ||
| 309 | the windows/frames. | ||
| 310 | |||
| 311 | * vc-bzr.el (vc-bzr-shelve-apply): Don't use *vc-bzr-shelve*. | ||
| 312 | |||
| 313 | * vc-dir.el (vc-dir-kill-line): New command. | ||
| 314 | (vc-dir-mode-map): Bind it to C-k. | ||
| 315 | (vc-dir-headers): Abbreviate the working dir. | ||
| 316 | |||
| 317 | * vc-git.el (vc-git-revision-table): Include remote branches. | ||
| 318 | |||
| 319 | 2010-10-31 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 320 | |||
| 321 | New VC methods: vc-log-incoming and vc-log-outgoing. | ||
| 322 | * vc.el (vc-print-log-setup-buttons, vc-log-internal-common) | ||
| 323 | (vc-incoming-outgoing-internal, vc-log-incoming, vc-log-outgoing): | ||
| 324 | New functions. | ||
| 325 | (vc-print-log-internal): Just call vc-log-internal-common. | ||
| 326 | (vc-log-view-type): New permanent local variable. | ||
| 327 | |||
| 328 | * vc-hooks.el (vc-menu-map): Bind vc-log-incoming and vc-log-outgoing. | ||
| 329 | |||
| 330 | * vc-bzr.el (vc-bzr-log-view-mode): Use vc-log-view-type instead | ||
| 331 | of the dynamic bound vc-short-log. | ||
| 332 | (vc-bzr-log-incoming, vc-bzr-log-outgoing): New functions. | ||
| 333 | |||
| 334 | * vc-git.el (vc-git-log-outgoing): New function. | ||
| 335 | (vc-git-log-view-mode): Use vc-log-view-type instead | ||
| 336 | of the dynamic bound vc-short-log. | ||
| 337 | |||
| 338 | * vc-hg.el (vc-hg-log-view-mode): Use vc-log-view-type instead of | ||
| 339 | the dynamic bound vc-short-log. Highlight the tag. | ||
| 340 | (vc-hg-log-incoming, vc-hg-log-outgoing): New functions. | ||
| 341 | (vc-hg-outgoing, vc-hg-incoming, vc-hg-outgoing-mode): | ||
| 342 | (vc-hg-incoming-mode): Remove. | ||
| 343 | (vc-hg-extra-menu-map): Do not bind vc-hg-incoming and vc-hg-outgoing. | ||
| 344 | |||
| 345 | Fix default-directory for vc-root-diff. | ||
| 346 | * vc.el (vc-root-diff): Bind default-directory to the root | ||
| 347 | directory for the diff command. | ||
| 348 | |||
| 349 | 2010-10-31 Sam Steingold <sds@gnu.org> | ||
| 350 | |||
| 351 | * vc-hg.el (vc-hg-push, vc-hg-pull): Use `apply' when calling | ||
| 352 | `vc-hg-command' with a list of flags. | ||
| 353 | |||
| 354 | 2010-10-31 Glenn Morris <rgm@gnu.org> | ||
| 355 | |||
| 356 | * vc-bzr.el (vc-bzr-log-edit-mode): Add --fixes support to | ||
| 357 | log-edit-before-checkin-process. | ||
| 358 | |||
| 359 | * vc.el (vc-modify-change-comment): Pass MODE to vc-start-logentry. | ||
| 360 | |||
| 361 | * vc-bzr.el, vc-hg.el (log-edit-mode): Declare. | ||
| 362 | |||
| 363 | * vc-dispatcher.el (vc-start-logentry): Doc fix. | ||
| 364 | (log-view-process-buffer, log-edit-extra-flags): Declare. | ||
| 365 | |||
| 366 | 2010-10-31 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 367 | |||
| 368 | Add special markup processing for commit logs. | ||
| 369 | * log-edit.el (log-edit): Add new argument MODE. Use that mode | ||
| 370 | when non-nil instead of the log-view-mode. | ||
| 371 | |||
| 372 | * vc.el (vc-default-log-edit-mode): New function. | ||
| 373 | |||
| 374 | * vc-dispatcher.el (vc-log-edit): Add a mode argument, pass it to | ||
| 375 | log-edit. | ||
| 376 | |||
| 377 | Support for shelving snapshots and for showing shelves. | ||
| 378 | * vc-bzr.el (vc-bzr-shelve-show, vc-bzr-shelve-show-at-point) | ||
| 379 | (vc-bzr-shelve-apply-and-keep-at-point, vc-bzr-shelve-snapshot): | ||
| 380 | New functions. | ||
| 381 | (vc-bzr-shelve-map, vc-bzr-shelve-menu-map) | ||
| 382 | (vc-bzr-extra-menu-map): Map them. | ||
| 383 | |||
| 384 | 2010-10-30 Michael Albinus <michael.albinus@gmx.de> | ||
| 385 | |||
| 386 | * net/tramp.el (tramp-handle-insert-file-contents): For root, | ||
| 387 | preserve owner and group when editing files. (Bug#7289) | ||
| 388 | |||
| 389 | 2010-10-29 Glenn Morris <rgm@gnu.org> | ||
| 390 | |||
| 391 | * speedbar.el (speedbar-mode): | ||
| 392 | * play/fortune.el (fortune-in-buffer, fortune): | ||
| 393 | * play/gomoku.el (gomoku-mode): | ||
| 394 | * play/landmark.el (lm-mode): | ||
| 395 | * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally): | ||
| 396 | Replace inappropriate uses of toggle-read-only. (Bug#7292) | ||
| 397 | |||
| 398 | 2010-10-28 Glenn Morris <rgm@gnu.org> | ||
| 399 | |||
| 400 | * select.el (x-selection): Mark it as an obsolete alias. | ||
| 401 | |||
| 402 | 2010-10-27 Aaron S. Hawley <aaron.s.hawley@gmail.com> | ||
| 403 | |||
| 404 | * add-log.el (find-change-log): Use derived-mode-p rather than | ||
| 405 | major-mode (bug#7284). | ||
| 406 | |||
| 407 | 2010-10-27 Glenn Morris <rgm@gnu.org> | ||
| 408 | |||
| 409 | * menu-bar.el (menu-bar-files-menu): Make it into an actual alias, | ||
| 410 | rather than just an unused variable that inherits from the real one. | ||
| 411 | |||
| 412 | 2010-10-23 Michael McNamara <mac@mail.brushroad.com> | ||
| 413 | |||
| 414 | * verilog-mode.el (verilog-directive-re): Make this variable | ||
| 415 | auto-built for efficiency of execution and updating. | ||
| 416 | (verilog-extended-complete-re): Support 'pure' fucntion & task | ||
| 417 | declarations (these have no bodies). | ||
| 418 | (verilog-beg-of-statement): General cleanup to enable support of | ||
| 419 | 'pure' fucntion & task declarations (these have no bodies). | ||
| 420 | These efforts together fix Verilog bug210 from veripool; which was also | ||
| 421 | noticed by Steve Pearlmutter. | ||
| 422 | (verilog-directive-re, verilog-directive-begin, verilog-indent-re) | ||
| 423 | (verilog-directive-nest-re, verilog-set-auto-endcomments): | ||
| 424 | Support `elsif. Reported by Shankar Giri. | ||
| 425 | (verilog-forward-ws&directives, verilog-in-attribute-p): Fixes for | ||
| 426 | attribute handling for lining up declarations and assignments. | ||
| 427 | (verilog-beg-of-statement-1): Fix issue where continued declaration | ||
| 428 | is indented differently if it is after a begin..end clock. | ||
| 429 | (verilog-in-attribute-p, verilog-skip-backward-comments) | ||
| 430 | (verilog-skip-forward-comment-p): Support proper treatment of | ||
| 431 | attributes by indent code. Reported by Jeff Steele. | ||
| 432 | (verilog-in-directive-p): Fix comment to correctly describe function. | ||
| 433 | (verilog-backward-up-list, verilog-in-struct-region-p) | ||
| 434 | (verilog-backward-token, verilog-in-struct-p) | ||
| 435 | (verilog-in-coverage-p, verilog-do-indent) | ||
| 436 | (verilog-pretty-declarations): Use verilog-backward-up-list as | ||
| 437 | wrapper around backward-up-list inorder to properly skip comments. | ||
| 438 | Reported by David Rogoff. | ||
| 439 | (verilog-property-re, verilog-endcomment-reason-re) | ||
| 440 | (verilog-beg-of-statement, verilog-set-auto-endcomments) | ||
| 441 | (verilog-calc-1 ): Fix for assert a; else b; indentation (new form | ||
| 442 | of if). Reported by Max Bjurling and | ||
| 443 | (verilog-calc-1): Fix for clocking block in modport | ||
| 444 | declaration. Reported by Brian Hunter. | ||
| 445 | |||
| 446 | 2010-10-23 Wilson Snyder <wsnyder@wsnyder.org> | ||
| 447 | |||
| 448 | * verilog-mode.el (verilog-auto-inst, verilog-gate-ios) | ||
| 449 | (verilog-gate-keywords, verilog-read-sub-decls) | ||
| 450 | (verilog-read-sub-decls-gate, verilog-read-sub-decls-gate-ios) | ||
| 451 | (verilog-read-sub-decls-line, verilog-read-sub-decls-sig): Support | ||
| 452 | AUTOINST for gate primitives, bug284. Reported by Mark Johnson. | ||
| 453 | (verilog-read-decls): Fix spaces in V2K module parameters causing | ||
| 454 | mis-identification as interfaces, bug287. | ||
| 455 | (verilog-read-decls): Fix not treating "parameter string" as a | ||
| 456 | parameter in AUTOINSTPARAM. | ||
| 457 | (verilog-read-always-signals-recurse, verilog-read-decls): Fix not | ||
| 458 | treating `elsif similar to `endif inside AUTOSENSE. | ||
| 459 | (verilog-do-indent): Implement correct automatic or static task or | ||
| 460 | function end comment highlight. Reported by Steve Pearlmutter. | ||
| 461 | (verilog-font-lock-keywords-2): Fix highlighting of single | ||
| 462 | character pins, bug264. Reported by Michael Laajanen. | ||
| 463 | (verilog-auto-inst, verilog-read-decls, verilog-read-sub-decls) | ||
| 464 | (verilog-read-sub-decls-in-interfaced, verilog-read-sub-decls-sig) | ||
| 465 | (verilog-subdecls-get-interfaced, verilog-subdecls-new): | ||
| 466 | Support interfaces with AUTOINST, bug270. Reported by Luis Gutierrez. | ||
| 467 | (verilog-pretty-expr): Fix interactive arguments, bug272. | ||
| 468 | Reported by Mark Johnson. | ||
| 469 | (verilog-auto-tieoff, verilog-auto-tieoff-ignore-regexp): | ||
| 470 | Add 'verilog-auto-tieoff-ignore-regexp' for AUTOTIEOFF, | ||
| 471 | bug269. Suggested by Gary Delp. | ||
| 472 | (verilog-mode-map, verilog-preprocess, verilog-preprocess-history) | ||
| 473 | (verilog-preprocessor, verilog-set-compile-command): | ||
| 474 | Create verilog-preprocess and verilog-preprocessor to show | ||
| 475 | preprocessed output. | ||
| 476 | (verilog-get-beg-of-line, verilog-get-end-of-line) | ||
| 477 | (verilog-modi-file-or-buffer, verilog-modi-name) | ||
| 478 | (verilog-modi-point, verilog-within-string): Move defmacro's | ||
| 479 | before first use to avoid warning. Reported by Steve Pearlmutter. | ||
| 480 | (verilog-colorize-buffer, verilog-colorize-include-files-buffer) | ||
| 481 | (verilog-colorize-region, verilog-highlight-buffer) | ||
| 482 | (verilog-highlight-includes, verilog-highlight-modules) | ||
| 483 | (verilog-highlight-region, verilog-mode): Rename colorize to | ||
| 484 | highlight to match other packages. Disable module highlighting, | ||
| 485 | as received speed complaints, reenable for experimentation only | ||
| 486 | using new verilog-highlight-modules. | ||
| 487 | (verilog-read-decls): Fix regexp stack overflow in very large | ||
| 488 | AUTO_TEMPLATEs, bug250. | ||
| 489 | (verilog-auto, verilog-delete-auto, verilog-save-buffer-state) | ||
| 490 | (verilog-scan): Create verilog-save-buffer-state to standardize | ||
| 491 | making insignificant changes that shouldn't call hooks. | ||
| 492 | (verilog-save-no-change-functions, verilog-save-scan-cache) | ||
| 493 | (verilog-scan, verilog-scan-cache-ok-p, verilog-scan-region): | ||
| 494 | Create verilog-save-no-change-functions to wrap verilog-scan | ||
| 495 | preservation, and fix to work with nested preserved calls. | ||
| 496 | (verilog-auto-inst, verilog-auto-inst-dot-name): Support .name | ||
| 497 | port syntax for AUTOWIRE, and with new verilog-auto-inst-dot-name | ||
| 498 | generate .name with AUTOINST, bug245. Suggested by David Rogoff. | ||
| 499 | (verilog-submit-bug-report): Update variable list to be complete. | ||
| 500 | (verilog-auto, verilog-colorize-region): Fix AUTO expansion | ||
| 501 | breaking on-the-fly font-locking. | ||
| 502 | (verilog-colorize-buffer, verilog-colorize-include-files) | ||
| 503 | (verilog-colorize-include-files-buffer, verilog-colorize-region) | ||
| 504 | (verilog-load-file-at-mouse, verilog-load-file-at-point) | ||
| 505 | (verilog-mode, verilog-read-inst-module-matcher): With point on a | ||
| 506 | AUTOINST cell instance name, middle mouse button now finds-file on | ||
| 507 | it. Suggested by Brad Dobbie. | ||
| 508 | (verilog-alw-get-temps, verilog-auto-reset) | ||
| 509 | (verilog-auto-sense-sigs, verilog-read-always-signals) | ||
| 510 | (verilog-read-always-signals-recurse): Fix loop indexes being | ||
| 511 | AUTORESET. AUTORESET now assumes any variables in the | ||
| 512 | initialization section of a for() should be ignored. | ||
| 513 | Reported by Dan Dever. | ||
| 514 | (verilog-error-font-lock-keywords) | ||
| 515 | (verilog-error-regexp-emacs-alist) | ||
| 516 | (verilog-error-regexp-xemacs-alist): Fix error detection of | ||
| 517 | Cadence HAL, reported by David Asher. Repair drift between the | ||
| 518 | three similar error variables. | ||
| 519 | (verilog-modi-lookup, verilog-modi-lookup-cache) | ||
| 520 | (verilog-modi-lookup-last-current, verilog-modi-lookup-last-mod) | ||
| 521 | (verilog-modi-lookup-last-modi, verilog-modi-lookup-last-tick): | ||
| 522 | Fix slow verilog-auto expansion on very large files. | ||
| 523 | (verilog-read-sub-decls-expr, verilog-read-sub-decls-line): | ||
| 524 | Fix AUTOOUTPUT treating "1*2" as a signal name in submodule connection | ||
| 525 | "{1*2{...". Broke in last revision. | ||
| 526 | (verilog-read-sub-decls-expr): Fix AUTOOUTPUT not detecting | ||
| 527 | submodule connections with replications "{#{a},#{b}}". | ||
| 528 | |||
| 529 | 2010-10-23 Glenn Morris <rgm@gnu.org> | ||
| 530 | |||
| 531 | * comint.el (comint-password-prompt-regexp): | ||
| 532 | Match "enter the password". (Bug#7224) | ||
| 533 | |||
| 534 | 2010-10-22 Juanma Barranquero <lekktu@gmail.com> | ||
| 535 | |||
| 536 | * progmodes/dcl-mode.el (dcl-electric-reindent-regexps): | ||
| 537 | Fix typo in docstring. | ||
| 538 | |||
| 539 | 2010-10-21 Michael Albinus <michael.albinus@gmx.de> | ||
| 540 | |||
| 541 | * net/tramp.el (tramp-get-inline-coding): Return `nil' in case of | ||
| 542 | errors. | ||
| 543 | |||
| 544 | * net/trampver.el: Update release number. | ||
| 545 | |||
| 1 | 2010-10-20 Kenichi Handa <handa@m17n.org> | 546 | 2010-10-20 Kenichi Handa <handa@m17n.org> |
| 2 | 547 | ||
| 3 | * face-remap.el (text-scale-adjust): Call read-event with a proper | 548 | * face-remap.el (text-scale-adjust): Call read-event with a proper |
| @@ -940,7 +1485,8 @@ | |||
| 940 | Fix annotating other revisions for renamed files in vc-annotate. | 1485 | Fix annotating other revisions for renamed files in vc-annotate. |
| 941 | * vc-annotate.el (vc-annotate): Add an optional argument for the | 1486 | * vc-annotate.el (vc-annotate): Add an optional argument for the |
| 942 | VC backend. Use it when non-nil. | 1487 | VC backend. Use it when non-nil. |
| 943 | (vc-annotate-warp-revision): Pass the VC backend to vc-annotate. (Bug#6487) | 1488 | (vc-annotate-warp-revision): Pass the VC backend to vc-annotate |
| 1489 | (Bug#6487). | ||
| 944 | 1490 | ||
| 945 | Fix vc-annotate-show-changeset-diff-revision-at-line for git. | 1491 | Fix vc-annotate-show-changeset-diff-revision-at-line for git. |
| 946 | * vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal): | 1492 | * vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal): |
| @@ -1536,8 +2082,8 @@ | |||
| 1536 | 2010-02-28 Michael Albinus <michael.albinus@gmx.de> | 2082 | 2010-02-28 Michael Albinus <michael.albinus@gmx.de> |
| 1537 | 2083 | ||
| 1538 | * net/dbus.el (dbus-introspect, dbus-get-property) | 2084 | * net/dbus.el (dbus-introspect, dbus-get-property) |
| 1539 | (dbus-set-property, dbus-get-all-properties): Use | 2085 | (dbus-set-property, dbus-get-all-properties): |
| 1540 | `dbus-call-method' when noninteractive. (Bug#5645) | 2086 | Use `dbus-call-method' when noninteractive. (Bug#5645) |
| 1541 | 2087 | ||
| 1542 | 2010-02-28 Chong Yidong <cyd@stupidchicken.com> | 2088 | 2010-02-28 Chong Yidong <cyd@stupidchicken.com> |
| 1543 | 2089 | ||
| @@ -1600,8 +2146,8 @@ | |||
| 1600 | 2146 | ||
| 1601 | 2010-02-21 Chong Yidong <cyd@stupidchicken.com> | 2147 | 2010-02-21 Chong Yidong <cyd@stupidchicken.com> |
| 1602 | 2148 | ||
| 1603 | * files.el (directory-listing-before-filename-regexp): Use | 2149 | * files.el (directory-listing-before-filename-regexp): |
| 1604 | stricter matching for iso-style dates, to avoid false matches with | 2150 | Use stricter matching for iso-style dates, to avoid false matches with |
| 1605 | date-like filenames (Bug#5597). | 2151 | date-like filenames (Bug#5597). |
| 1606 | 2152 | ||
| 1607 | * htmlfontify.el (htmlfontify): Doc fix. | 2153 | * htmlfontify.el (htmlfontify): Doc fix. |
| @@ -1624,8 +2170,8 @@ | |||
| 1624 | 2170 | ||
| 1625 | 2010-02-19 Chong Yidong <cyd@stupidchicken.com> | 2171 | 2010-02-19 Chong Yidong <cyd@stupidchicken.com> |
| 1626 | 2172 | ||
| 1627 | * isearch.el (isearch-update-post-hook, isearch-update): Revert | 2173 | * isearch.el (isearch-update-post-hook, isearch-update): |
| 1628 | 2010-02-17 change. | 2174 | Revert 2010-02-17 change. |
| 1629 | 2175 | ||
| 1630 | 2010-02-19 Ulf Jasper <ulf.jasper@web.de> | 2176 | 2010-02-19 Ulf Jasper <ulf.jasper@web.de> |
| 1631 | 2177 | ||
| @@ -1860,7 +2406,8 @@ | |||
| 1860 | 2406 | ||
| 1861 | 2010-02-06 Dan Nicolaescu <dann@ics.uci.edu> | 2407 | 2010-02-06 Dan Nicolaescu <dann@ics.uci.edu> |
| 1862 | 2408 | ||
| 1863 | * vc-bzr.el (vc-bzr-dir-extra-headers): Disable the pending merges header. | 2409 | * vc-bzr.el (vc-bzr-dir-extra-headers): |
| 2410 | Disable the pending merges header. | ||
| 1864 | 2411 | ||
| 1865 | 2010-02-05 Juri Linkov <juri@jurta.org> | 2412 | 2010-02-05 Juri Linkov <juri@jurta.org> |
| 1866 | 2413 | ||
| @@ -2091,8 +2638,8 @@ | |||
| 2091 | (vc-git-toggle-signoff): Remove function. | 2638 | (vc-git-toggle-signoff): Remove function. |
| 2092 | (vc-git-extra-menu-map): Do not bind vc-git-toggle-signoff. | 2639 | (vc-git-extra-menu-map): Do not bind vc-git-toggle-signoff. |
| 2093 | 2640 | ||
| 2094 | * term/xterm.el (xterm-maybe-set-dark-background-mode): Rename | 2641 | * term/xterm.el (xterm-maybe-set-dark-background-mode): |
| 2095 | from xterm-set-background-mode. Return t if the background mode | 2642 | Rename from xterm-set-background-mode. Return t if the background mode |
| 2096 | was set. | 2643 | was set. |
| 2097 | (terminal-init-xterm): Move tty-set-up-initial-frame-faces | 2644 | (terminal-init-xterm): Move tty-set-up-initial-frame-faces |
| 2098 | earlier, call it again in case the background mode has changed. | 2645 | earlier, call it again in case the background mode has changed. |
| @@ -2139,8 +2686,8 @@ | |||
| 2139 | 2010-01-21 Alan Mackenzie <acm@muc.de> | 2686 | 2010-01-21 Alan Mackenzie <acm@muc.de> |
| 2140 | 2687 | ||
| 2141 | Fix a situation where deletion of a cpp construct throws an error. | 2688 | Fix a situation where deletion of a cpp construct throws an error. |
| 2142 | * progmodes/cc-engine.el (c-invalidate-state-cache): Before | 2689 | * progmodes/cc-engine.el (c-invalidate-state-cache): |
| 2143 | invoking c-with-all-but-one-cpps-commented-out, check that the | 2690 | Before invoking c-with-all-but-one-cpps-commented-out, check that the |
| 2144 | special cpp construct is still in the buffer. | 2691 | special cpp construct is still in the buffer. |
| 2145 | (c-parse-state): Record the special cpp with markers, not numbers. | 2692 | (c-parse-state): Record the special cpp with markers, not numbers. |
| 2146 | 2693 | ||
| @@ -2256,8 +2803,8 @@ | |||
| 2256 | 2803 | ||
| 2257 | 2010-01-16 Lennart Borgman <lennart.borgman@gmail.com> | 2804 | 2010-01-16 Lennart Borgman <lennart.borgman@gmail.com> |
| 2258 | 2805 | ||
| 2259 | * nxml/nxml-mode.el (nxml-extend-after-change-region): Never | 2806 | * nxml/nxml-mode.el (nxml-extend-after-change-region): |
| 2260 | return t (Bug#3898). | 2807 | Never return t (Bug#3898). |
| 2261 | 2808 | ||
| 2262 | 2010-01-16 Frédéric Perrin <frederic.perrin@resel.fr> (tiny change) | 2809 | 2010-01-16 Frédéric Perrin <frederic.perrin@resel.fr> (tiny change) |
| 2263 | 2810 | ||
| @@ -2374,8 +2921,8 @@ | |||
| 2374 | 2921 | ||
| 2375 | 2010-01-12 Glenn Morris <rgm@gnu.org> | 2922 | 2010-01-12 Glenn Morris <rgm@gnu.org> |
| 2376 | 2923 | ||
| 2377 | * mail/emacsbug.el (report-emacs-bug-pretest-address): Set | 2924 | * mail/emacsbug.el (report-emacs-bug-pretest-address): |
| 2378 | it to bug-gnu-emacs rather than emacs-pretest-bug. | 2925 | Set it to bug-gnu-emacs rather than emacs-pretest-bug. |
| 2379 | 2926 | ||
| 2380 | 2010-01-11 Sam Steingold <sds@gnu.org> | 2927 | 2010-01-11 Sam Steingold <sds@gnu.org> |
| 2381 | 2928 | ||
| @@ -2689,8 +3236,8 @@ | |||
| 2689 | 2009-12-29 Dan Nicolaescu <dann@ics.uci.edu> | 3236 | 2009-12-29 Dan Nicolaescu <dann@ics.uci.edu> |
| 2690 | 3237 | ||
| 2691 | Make vc-dir work on subdirectories of the bzr root. | 3238 | Make vc-dir work on subdirectories of the bzr root. |
| 2692 | * vc-bzr.el (vc-bzr-after-dir-status): Add new argument. Return | 3239 | * vc-bzr.el (vc-bzr-after-dir-status): Add new argument. |
| 2693 | file names relative to it. | 3240 | Return file names relative to it. |
| 2694 | (vc-bzr-dir-status, vc-bzr-dir-status-files): Pass the bzr root | 3241 | (vc-bzr-dir-status, vc-bzr-dir-status-files): Pass the bzr root |
| 2695 | relative directory to vc-bzr-after-dir-status. | 3242 | relative directory to vc-bzr-after-dir-status. |
| 2696 | 3243 | ||
| @@ -2748,8 +3295,8 @@ | |||
| 2748 | 3295 | ||
| 2749 | 2009-12-18 Ulf Jasper <ulf.jasper@web.de> | 3296 | 2009-12-18 Ulf Jasper <ulf.jasper@web.de> |
| 2750 | 3297 | ||
| 2751 | * calendar/icalendar.el (icalendar--convert-tz-offset): Fixed | 3298 | * calendar/icalendar.el (icalendar--convert-tz-offset): |
| 2752 | timezone names. | 3299 | Fixed timezone names. |
| 2753 | (icalendar--convert-tz-offset): Fixed the "last-day-problem". | 3300 | (icalendar--convert-tz-offset): Fixed the "last-day-problem". |
| 2754 | (icalendar--add-diary-entry): Remove the trailing blank that | 3301 | (icalendar--add-diary-entry): Remove the trailing blank that |
| 2755 | diary-make-entry inserts. | 3302 | diary-make-entry inserts. |
| @@ -2784,8 +3331,8 @@ | |||
| 2784 | 3331 | ||
| 2785 | * files.el (hack-local-variables-filter): While ignoring duplicates, | 3332 | * files.el (hack-local-variables-filter): While ignoring duplicates, |
| 2786 | don't take `mode' into account. | 3333 | don't take `mode' into account. |
| 2787 | (hack-local-variables-filter, hack-dir-local-variables): Don't | 3334 | (hack-local-variables-filter, hack-dir-local-variables): |
| 2788 | remove duplicate `mode' from local-variables-alist (like `eval'). | 3335 | Don't remove duplicate `mode' from local-variables-alist (like `eval'). |
| 2789 | 3336 | ||
| 2790 | 2009-12-17 Juri Linkov <juri@jurta.org> | 3337 | 2009-12-17 Juri Linkov <juri@jurta.org> |
| 2791 | 3338 | ||
| @@ -2932,8 +3479,8 @@ | |||
| 2932 | 3479 | ||
| 2933 | 2009-12-10 Vinicius Jose Latorre <viniciusjl@ig.com.br> | 3480 | 2009-12-10 Vinicius Jose Latorre <viniciusjl@ig.com.br> |
| 2934 | 3481 | ||
| 2935 | * whitespace.el (whitespace-display-char-on): Ensure | 3482 | * whitespace.el (whitespace-display-char-on): |
| 2936 | `buffer-display-table' is unique when two or more windows are | 3483 | Ensure `buffer-display-table' is unique when two or more windows are |
| 2937 | visible. Reported by Martin Pohlack <mp26@os.inf.tu-dresden.de>. | 3484 | visible. Reported by Martin Pohlack <mp26@os.inf.tu-dresden.de>. |
| 2938 | New version 12.1. | 3485 | New version 12.1. |
| 2939 | 3486 | ||
| @@ -3150,11 +3697,11 @@ | |||
| 3150 | (tramp-methods, tramp-find-shell) | 3697 | (tramp-methods, tramp-find-shell) |
| 3151 | (tramp-open-connection-setup-interactive-shell) | 3698 | (tramp-open-connection-setup-interactive-shell) |
| 3152 | (tramp-maybe-open-connection): Use it. | 3699 | (tramp-maybe-open-connection): Use it. |
| 3153 | (tramp-shell-prompt-pattern, tramp-wait-for-output): Handle | 3700 | (tramp-shell-prompt-pattern, tramp-wait-for-output): |
| 3154 | existence of `#' and `$'. | 3701 | Handle existence of `#' and `$'. |
| 3155 | 3702 | ||
| 3156 | * net/tramp-fish.el (tramp-fish-maybe-open-connection): Use | 3703 | * net/tramp-fish.el (tramp-fish-maybe-open-connection): |
| 3157 | `tramp-initial-end-of-output'. | 3704 | Use `tramp-initial-end-of-output'. |
| 3158 | 3705 | ||
| 3159 | 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu> | 3706 | 2009-12-07 Dan Nicolaescu <dann@ics.uci.edu> |
| 3160 | 3707 | ||
| @@ -3212,13 +3759,13 @@ | |||
| 3212 | 3759 | ||
| 3213 | 2009-12-06 Ulf Jasper <ulf.jasper@web.de> | 3760 | 2009-12-06 Ulf Jasper <ulf.jasper@web.de> |
| 3214 | 3761 | ||
| 3215 | * xml.el (xml-substitute-numeric-entities): Move | 3762 | * xml.el (xml-substitute-numeric-entities): |
| 3216 | newsticker--decode-numeric-entities in newst-backend.el to | 3763 | Move newsticker--decode-numeric-entities in newst-backend.el to |
| 3217 | xml-substitute-numeric-entities in xml.el. (Bug#5008) | 3764 | xml-substitute-numeric-entities in xml.el. (Bug#5008) |
| 3218 | * net/newst-backend.el (newsticker--parse-generic-feed) | 3765 | * net/newst-backend.el (newsticker--parse-generic-feed) |
| 3219 | (newsticker--parse-generic-items) | 3766 | (newsticker--parse-generic-items) |
| 3220 | (newsticker--decode-numeric-entities): Move | 3767 | (newsticker--decode-numeric-entities): |
| 3221 | newsticker--decode-numeric-entities in newst-backend.el to | 3768 | Move newsticker--decode-numeric-entities in newst-backend.el to |
| 3222 | xml-substitute-numeric-entities in xml.el. (Bug#5008) | 3769 | xml-substitute-numeric-entities in xml.el. (Bug#5008) |
| 3223 | 3770 | ||
| 3224 | 2009-12-06 Daniel Colascione <dan.colascione@gmail.com> | 3771 | 2009-12-06 Daniel Colascione <dan.colascione@gmail.com> |
| @@ -3281,8 +3828,8 @@ | |||
| 3281 | 3828 | ||
| 3282 | 2009-12-05 Kevin Ryde <user42@zip.com.au> | 3829 | 2009-12-05 Kevin Ryde <user42@zip.com.au> |
| 3283 | 3830 | ||
| 3284 | * textmodes/sgml-mode.el (sgml-lexical-context): Recognise | 3831 | * textmodes/sgml-mode.el (sgml-lexical-context): |
| 3285 | comment-start-skip to comment-end-skip as comment (Bug#4781). | 3832 | Recognise comment-start-skip to comment-end-skip as comment (Bug#4781). |
| 3286 | 3833 | ||
| 3287 | 2009-12-05 Juri Linkov <juri@jurta.org> | 3834 | 2009-12-05 Juri Linkov <juri@jurta.org> |
| 3288 | 3835 | ||
| @@ -3739,8 +4286,8 @@ | |||
| 3739 | (doc-view-scroll-up-or-next-page) | 4286 | (doc-view-scroll-up-or-next-page) |
| 3740 | (doc-view-scroll-down-or-previous-page) | 4287 | (doc-view-scroll-down-or-previous-page) |
| 3741 | (doc-view-next-line-or-next-page) | 4288 | (doc-view-next-line-or-next-page) |
| 3742 | (doc-view-previous-line-or-previous-page): Rename | 4289 | (doc-view-previous-line-or-previous-page): |
| 3743 | `doc-view-continuous-mode' to `doc-view-continuous'. (Bug#4896) | 4290 | Rename `doc-view-continuous-mode' to `doc-view-continuous'. (Bug#4896) |
| 3744 | 4291 | ||
| 3745 | 2009-11-30 Juri Linkov <juri@jurta.org> | 4292 | 2009-11-30 Juri Linkov <juri@jurta.org> |
| 3746 | 4293 | ||
| @@ -3942,8 +4489,8 @@ | |||
| 3942 | 4489 | ||
| 3943 | (verilog-auto-inst, verilog-auto-star-safe) | 4490 | (verilog-auto-inst, verilog-auto-star-safe) |
| 3944 | (verilog-delete-auto-star-implicit, verilog-read-sub-decls): | 4491 | (verilog-delete-auto-star-implicit, verilog-read-sub-decls): |
| 3945 | Fix removing "// Interfaces" when saving .* expansions. Reported by | 4492 | Fix removing "// Interfaces" when saving .* expansions. |
| 3946 | Pierre-David Pfister. | 4493 | Reported by Pierre-David Pfister. |
| 3947 | 4494 | ||
| 3948 | 2009-11-26 Glenn Morris <rgm@gnu.org> | 4495 | 2009-11-26 Glenn Morris <rgm@gnu.org> |
| 3949 | 4496 | ||
| @@ -5121,12 +5668,12 @@ | |||
| 5121 | (tramp-compat-delete-directory): New defuns. | 5668 | (tramp-compat-delete-directory): New defuns. |
| 5122 | 5669 | ||
| 5123 | * net/tramp-fish.el (tramp-fish-handle-delete-directory): | 5670 | * net/tramp-fish.el (tramp-fish-handle-delete-directory): |
| 5124 | * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory): Use | 5671 | * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory): |
| 5125 | `tramp-compat-delete-directory'. | 5672 | Use `tramp-compat-delete-directory'. |
| 5126 | 5673 | ||
| 5127 | * net/tramp-smb.el (tramp-smb-handle-copy-directory) | 5674 | * net/tramp-smb.el (tramp-smb-handle-copy-directory) |
| 5128 | (tramp-smb-handle-delete-directory): Use | 5675 | (tramp-smb-handle-delete-directory): |
| 5129 | `tramp-compat-copy-directory' and `tramp-compat-delete-directory'. | 5676 | Use `tramp-compat-copy-directory' and `tramp-compat-delete-directory'. |
| 5130 | 5677 | ||
| 5131 | * net/trampver.el: Update release number. | 5678 | * net/trampver.el: Update release number. |
| 5132 | 5679 | ||
| @@ -5478,11 +6025,11 @@ | |||
| 5478 | 6025 | ||
| 5479 | 2009-10-31 Chong Yidong <cyd@stupidchicken.com> | 6026 | 2009-10-31 Chong Yidong <cyd@stupidchicken.com> |
| 5480 | 6027 | ||
| 5481 | * international/mule-diag.el (list-character-sets-1): Minor | 6028 | * international/mule-diag.el (list-character-sets-1): |
| 5482 | message fix (Bug#3526). | 6029 | Minor message fix (Bug#3526). |
| 5483 | 6030 | ||
| 5484 | * progmodes/etags.el (etags-list-tags, etags-tags-apropos): Fix | 6031 | * progmodes/etags.el (etags-list-tags, etags-tags-apropos): |
| 5485 | face property (Bug#4834). | 6032 | Fix face property (Bug#4834). |
| 5486 | (etags-list-tags, etags-tags-apropos-additional) | 6033 | (etags-list-tags, etags-tags-apropos-additional) |
| 5487 | (etags-tags-apropos, tags-select-tags-table): Add follow-link | 6034 | (etags-tags-apropos, tags-select-tags-table): Add follow-link |
| 5488 | property. | 6035 | property. |
| @@ -5979,8 +6526,8 @@ | |||
| 5979 | 6526 | ||
| 5980 | 2009-10-23 Jay Belanger <jay.p.belanger@gmail.com> | 6527 | 2009-10-23 Jay Belanger <jay.p.belanger@gmail.com> |
| 5981 | 6528 | ||
| 5982 | * calc/calc.el (math-read-number, math-read-number-simple): Use | 6529 | * calc/calc.el (math-read-number, math-read-number-simple): |
| 5983 | `save-match-data'. | 6530 | Use `save-match-data'. |
| 5984 | 6531 | ||
| 5985 | 2009-10-22 Stefan Monnier <monnier@iro.umontreal.ca> | 6532 | 2009-10-22 Stefan Monnier <monnier@iro.umontreal.ca> |
| 5986 | 6533 | ||
| @@ -7274,8 +7821,8 @@ | |||
| 7274 | 7821 | ||
| 7275 | 2009-09-26 Alan Mackenzie <acm@muc.de> | 7822 | 2009-09-26 Alan Mackenzie <acm@muc.de> |
| 7276 | 7823 | ||
| 7277 | * progmodes/cc-engine.el (c-beginning-of-statement-1): Correct | 7824 | * progmodes/cc-engine.el (c-beginning-of-statement-1): |
| 7278 | buggy bracketing. (Bug#4289) | 7825 | Correct buggy bracketing. (Bug#4289) |
| 7279 | 7826 | ||
| 7280 | * progmodes/cc-langs.el (c-nonlabel-token-key): Allow quoted | 7827 | * progmodes/cc-langs.el (c-nonlabel-token-key): Allow quoted |
| 7281 | character constants (as case labels). (Bug#4289) | 7828 | character constants (as case labels). (Bug#4289) |
| @@ -7658,8 +8205,8 @@ | |||
| 7658 | 8205 | ||
| 7659 | 2009-09-21 Chong Yidong <cyd@stupidchicken.com> | 8206 | 2009-09-21 Chong Yidong <cyd@stupidchicken.com> |
| 7660 | 8207 | ||
| 7661 | * files.el (conf-mode-maybe, magic-fallback-mode-alist): Use | 8208 | * files.el (conf-mode-maybe, magic-fallback-mode-alist): |
| 7662 | nxml-mode instead of xml-mode. | 8209 | Use nxml-mode instead of xml-mode. |
| 7663 | 8210 | ||
| 7664 | 2009-09-21 Kevin Ryde <user42@zip.com.au> | 8211 | 2009-09-21 Kevin Ryde <user42@zip.com.au> |
| 7665 | 8212 | ||
| @@ -8480,8 +9027,8 @@ | |||
| 8480 | * net/tramp.el (tramp-handle-insert-directory): Handle "--dired" | 9027 | * net/tramp.el (tramp-handle-insert-directory): Handle "--dired" |
| 8481 | also when adding a new directory. | 9028 | also when adding a new directory. |
| 8482 | 9029 | ||
| 8483 | * net/tramp-compat.el (tramp-compat-line-beginning-position): New | 9030 | * net/tramp-compat.el (tramp-compat-line-beginning-position): |
| 8484 | defun. | 9031 | New defun. |
| 8485 | 9032 | ||
| 8486 | 2009-09-04 Stefan Monnier <monnier@iro.umontreal.ca> | 9033 | 2009-09-04 Stefan Monnier <monnier@iro.umontreal.ca> |
| 8487 | 9034 | ||
| @@ -9808,8 +10355,8 @@ | |||
| 9808 | (gdb-control-current-thread): Interactive setters for | 10355 | (gdb-control-current-thread): Interactive setters for |
| 9809 | `gdb-gud-control-all-threads' to use in menu. | 10356 | `gdb-gud-control-all-threads' to use in menu. |
| 9810 | (gdb-show-run-p): Show «Go» when process is not active. | 10357 | (gdb-show-run-p): Show «Go» when process is not active. |
| 9811 | (gud-tool-bar-map): Add non-stop/A,T indicator. Uses | 10358 | (gud-tool-bar-map): Add non-stop/A,T indicator. |
| 9812 | gud/thread.xpm and gud/all.xpm. | 10359 | Uses gud/thread.xpm and gud/all.xpm. |
| 9813 | 10360 | ||
| 9814 | 2009-08-08 Yoni Rabkin <yoni@rabkins.net> | 10361 | 2009-08-08 Yoni Rabkin <yoni@rabkins.net> |
| 9815 | 10362 | ||
| @@ -9833,8 +10380,8 @@ | |||
| 9833 | (gdb-breakpoints-mode-map): Don't assume threads buffer is present. | 10380 | (gdb-breakpoints-mode-map): Don't assume threads buffer is present. |
| 9834 | (gdb-threads-mode-map): Don't assume breakpoints buffer is present. | 10381 | (gdb-threads-mode-map): Don't assume breakpoints buffer is present. |
| 9835 | (gdb-disassembly-handler-custom, gdb-stack-list-frames-custom) | 10382 | (gdb-disassembly-handler-custom, gdb-stack-list-frames-custom) |
| 9836 | (gdb-locals-handler-custom, gdb-registers-handler-custom): Thread | 10383 | (gdb-locals-handler-custom, gdb-registers-handler-custom): |
| 9837 | info in mode name. | 10384 | Thread info in mode name. |
| 9838 | (gdb-registers-mode-map): TAB to switch to locals. | 10385 | (gdb-registers-mode-map): TAB to switch to locals. |
| 9839 | 10386 | ||
| 9840 | 2009-08-08 Eli Zaretskii <eliz@gnu.org> | 10387 | 2009-08-08 Eli Zaretskii <eliz@gnu.org> |
| @@ -9849,14 +10396,14 @@ | |||
| 9849 | 10396 | ||
| 9850 | 2009-08-07 Eli Zaretskii <eliz@gnu.org> | 10397 | 2009-08-07 Eli Zaretskii <eliz@gnu.org> |
| 9851 | 10398 | ||
| 9852 | * mail/sendmail.el (mail-yank-original): Set | 10399 | * mail/sendmail.el (mail-yank-original): |
| 9853 | buffer-file-coding-system from the one used by the message whose | 10400 | Set buffer-file-coding-system from the one used by the message whose |
| 9854 | text is yanked. | 10401 | text is yanked. |
| 9855 | 10402 | ||
| 9856 | * calc/calc-graph.el (calc-graph-plot): Set calc-graph-last-device | 10403 | * calc/calc-graph.el (calc-graph-plot): Set calc-graph-last-device |
| 9857 | to "windows" when "pgnuplot" is used. | 10404 | to "windows" when "pgnuplot" is used. |
| 9858 | (calc-graph-command, calc-gnuplot-command, calc-graph-init): Don't | 10405 | (calc-graph-command, calc-gnuplot-command, calc-graph-init): |
| 9859 | call accept-process-output if "pgnuplot" is used. | 10406 | Don't call accept-process-output if "pgnuplot" is used. |
| 9860 | (calc-graph-init): Don't send -display and -geometry to | 10407 | (calc-graph-init): Don't send -display and -geometry to |
| 9861 | "pgnuplot". If "pgnuplot" is used, glean gnuplot version by | 10408 | "pgnuplot". If "pgnuplot" is used, glean gnuplot version by |
| 9862 | running "pgnuplot -V" with shell-command-to-string. | 10409 | running "pgnuplot -V" with shell-command-to-string. |
| @@ -9996,11 +10543,11 @@ | |||
| 9996 | * progmodes/gdb-mi.el (gdb-thread-number): Initialize with nil. | 10543 | * progmodes/gdb-mi.el (gdb-thread-number): Initialize with nil. |
| 9997 | (gdb-current-context-command): Do not append --thread if | 10544 | (gdb-current-context-command): Do not append --thread if |
| 9998 | `gdb-thread-number' is nil. | 10545 | `gdb-thread-number' is nil. |
| 9999 | (gdb-running-threads-count, gdb-stopped-threads-count): New | 10546 | (gdb-running-threads-count, gdb-stopped-threads-count): |
| 10000 | variables. | 10547 | New variables. |
| 10001 | (gdb-non-stop, gdb-gud-control-all-threads, gdb-switch-reasons) | 10548 | (gdb-non-stop, gdb-gud-control-all-threads, gdb-switch-reasons) |
| 10002 | (gdb-stopped-hooks, gdb-switch-when-another-stopped): New | 10549 | (gdb-stopped-hooks, gdb-switch-when-another-stopped): |
| 10003 | customization options. | 10550 | New customization options. |
| 10004 | (gdb-gud-context-command, gdb-gud-context-call): New wrappers for | 10551 | (gdb-gud-context-command, gdb-gud-context-call): New wrappers for |
| 10005 | GUD commands. | 10552 | GUD commands. |
| 10006 | (gdb): `gud-def' definitions changed to use `gdb-gud-context-call'. | 10553 | (gdb): `gud-def' definitions changed to use `gdb-gud-context-call'. |
| @@ -10124,8 +10671,8 @@ | |||
| 10124 | * net/tramp-cache.el (tramp-cache-inhibit-cache): New defvar. | 10671 | * net/tramp-cache.el (tramp-cache-inhibit-cache): New defvar. |
| 10125 | (tramp-get-file-property): Use it. | 10672 | (tramp-get-file-property): Use it. |
| 10126 | 10673 | ||
| 10127 | * autorevert.el (auto-revert-handler): Allow | 10674 | * autorevert.el (auto-revert-handler): |
| 10128 | `auto-revert-tail-mode' for remote files. | 10675 | Allow `auto-revert-tail-mode' for remote files. |
| 10129 | 10676 | ||
| 10130 | 2009-08-02 Jason Rumney <jasonr@gnu.org> | 10677 | 2009-08-02 Jason Rumney <jasonr@gnu.org> |
| 10131 | 10678 | ||
| @@ -10135,8 +10682,8 @@ | |||
| 10135 | 2009-08-02 Chong Yidong <cyd@stupidchicken.com> | 10682 | 2009-08-02 Chong Yidong <cyd@stupidchicken.com> |
| 10136 | 10683 | ||
| 10137 | * font-lock.el (font-lock-string-face, font-lock-builtin-face) | 10684 | * font-lock.el (font-lock-string-face, font-lock-builtin-face) |
| 10138 | (font-lock-variable-name-face, font-lock-constant-face): Darken | 10685 | (font-lock-variable-name-face, font-lock-constant-face): |
| 10139 | the colors for light backgrounds. | 10686 | Darken the colors for light backgrounds. |
| 10140 | 10687 | ||
| 10141 | 2009-08-01 Eli Zaretskii <eliz@gnu.org> | 10688 | 2009-08-01 Eli Zaretskii <eliz@gnu.org> |
| 10142 | 10689 | ||
| @@ -10236,8 +10783,8 @@ | |||
| 10236 | 10783 | ||
| 10237 | * net/zeroconf.el (zeroconf-init): Check for "GetVersionString" | 10784 | * net/zeroconf.el (zeroconf-init): Check for "GetVersionString" |
| 10238 | instead of "IsNSSSupportAvailable". Avahi ought to work also when | 10785 | instead of "IsNSSSupportAvailable". Avahi ought to work also when |
| 10239 | "IsNSSSupportAvailable" method is not available. Reported by | 10786 | "IsNSSSupportAvailable" method is not available. |
| 10240 | Steve Youngs <steve@sxemacs.org>. | 10787 | Reported by Steve Youngs <steve@sxemacs.org>. |
| 10241 | 10788 | ||
| 10242 | 2009-07-24 Kenichi Handa <handa@m17n.org> | 10789 | 2009-07-24 Kenichi Handa <handa@m17n.org> |
| 10243 | 10790 | ||
| @@ -10362,11 +10909,11 @@ | |||
| 10362 | 10909 | ||
| 10363 | 2009-07-21 Chong Yidong <cyd@stupidchicken.com> | 10910 | 2009-07-21 Chong Yidong <cyd@stupidchicken.com> |
| 10364 | 10911 | ||
| 10365 | * mail/rmailedit.el (rmail-edit-mode): Use | 10912 | * mail/rmailedit.el (rmail-edit-mode): |
| 10366 | auto-save-include-big-deletions. | 10913 | Use auto-save-include-big-deletions. |
| 10367 | 10914 | ||
| 10368 | * mail/rmail.el (rmail-variables): Use | 10915 | * mail/rmail.el (rmail-variables): |
| 10369 | auto-save-include-big-deletions. | 10916 | Use auto-save-include-big-deletions. |
| 10370 | 10917 | ||
| 10371 | * files.el (auto-save-mode): Revert 2009-07-21 and 2009-07-16 | 10918 | * files.el (auto-save-mode): Revert 2009-07-21 and 2009-07-16 |
| 10372 | changes. | 10919 | changes. |
| @@ -10542,8 +11089,8 @@ | |||
| 10542 | * w32-fns.el (x-selection-owner-p): New function. | 11089 | * w32-fns.el (x-selection-owner-p): New function. |
| 10543 | 11090 | ||
| 10544 | * mouse.el (mouse-drag-track): Call deactivate-mark earlier. | 11091 | * mouse.el (mouse-drag-track): Call deactivate-mark earlier. |
| 10545 | (mouse-yank-at-click, mouse-yank-primary): If | 11092 | (mouse-yank-at-click, mouse-yank-primary): |
| 10546 | select-active-regions is non-nil, deactivate the mark before | 11093 | If select-active-regions is non-nil, deactivate the mark before |
| 10547 | insertion. | 11094 | insertion. |
| 10548 | 11095 | ||
| 10549 | * simple.el (deactivate-mark, set-mark): Only save selection if we | 11096 | * simple.el (deactivate-mark, set-mark): Only save selection if we |
| @@ -10612,11 +11159,11 @@ | |||
| 10612 | 11159 | ||
| 10613 | * select.el (x-set-selection): Doc fix. | 11160 | * select.el (x-set-selection): Doc fix. |
| 10614 | (x-valid-simple-selection-p): Allow buffer values. | 11161 | (x-valid-simple-selection-p): Allow buffer values. |
| 10615 | (xselect--selection-bounds): Handle buffer values. Suggested by | 11162 | (xselect--selection-bounds): Handle buffer values. |
| 10616 | David De La Harpe Golden. | 11163 | Suggested by David De La Harpe Golden. |
| 10617 | 11164 | ||
| 10618 | * mouse.el (mouse-set-region, mouse-drag-track): Call | 11165 | * mouse.el (mouse-set-region, mouse-drag-track): |
| 10619 | copy-region-as-kill before setting the mark, to let | 11166 | Call copy-region-as-kill before setting the mark, to let |
| 10620 | select-active-regions work. | 11167 | select-active-regions work. |
| 10621 | 11168 | ||
| 10622 | 2009-07-15 David De La Harpe Golden <david@harpegolden.net> | 11169 | 2009-07-15 David De La Harpe Golden <david@harpegolden.net> |
| @@ -10818,8 +11365,8 @@ | |||
| 10818 | * progmodes/gdb-mi.el: Port memory buffer from gdb-ui.el. | 11365 | * progmodes/gdb-mi.el: Port memory buffer from gdb-ui.el. |
| 10819 | (gdb-memory-address): New variable which holds top address of | 11366 | (gdb-memory-address): New variable which holds top address of |
| 10820 | memory page shown in memory buffer. | 11367 | memory page shown in memory buffer. |
| 10821 | (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit): New | 11368 | (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit): |
| 10822 | customization variables. | 11369 | New customization variables. |
| 10823 | New functions: | 11370 | New functions: |
| 10824 | (gdb-display-memory-buffer, gdb-frame-memory-buffer): Functions to | 11371 | (gdb-display-memory-buffer, gdb-frame-memory-buffer): Functions to |
| 10825 | display the memory buffer. | 11372 | display the memory buffer. |
| @@ -10832,8 +11379,8 @@ | |||
| 10832 | (gdb-memory-unit-word, gdb-memory-unit-halfword) | 11379 | (gdb-memory-unit-word, gdb-memory-unit-halfword) |
| 10833 | (gdb-memory-unit-giant, gdb-memory-unit-byte): Functions to set | 11380 | (gdb-memory-unit-giant, gdb-memory-unit-byte): Functions to set |
| 10834 | unit size used in memory buffer. | 11381 | unit size used in memory buffer. |
| 10835 | (gdb-memory-show-next-page, gdb-memory-show-previous-page): Switch | 11382 | (gdb-memory-show-next-page, gdb-memory-show-previous-page): |
| 10836 | to next/previous page of memory buffer. | 11383 | Switch to next/previous page of memory buffer. |
| 10837 | Now using (bindat-get-field) instead of fadr functions. | 11384 | Now using (bindat-get-field) instead of fadr functions. |
| 10838 | 11385 | ||
| 10839 | 2009-07-07 Sam Steingold <sds@gnu.org> | 11386 | 2009-07-07 Sam Steingold <sds@gnu.org> |
| @@ -10843,8 +11390,8 @@ | |||
| 10843 | 11390 | ||
| 10844 | 2009-07-07 Kenichi Handa <handa@m17n.org> | 11391 | 2009-07-07 Kenichi Handa <handa@m17n.org> |
| 10845 | 11392 | ||
| 10846 | * international/mule-cmds.el (reset-language-environment): Put | 11393 | * international/mule-cmds.el (reset-language-environment): |
| 10847 | the highset priority to the charset iso-8859-1. | 11394 | Put the highset priority to the charset iso-8859-1. |
| 10848 | 11395 | ||
| 10849 | 2009-07-06 Chong Yidong <cyd@stupidchicken.com> | 11396 | 2009-07-06 Chong Yidong <cyd@stupidchicken.com> |
| 10850 | 11397 | ||
| @@ -10874,8 +11421,8 @@ | |||
| 10874 | (woman-file-name, woman2-format-paragraphs) | 11421 | (woman-file-name, woman2-format-paragraphs) |
| 10875 | (woman-leave-blank-lines): Code cleanup. | 11422 | (woman-leave-blank-lines): Code cleanup. |
| 10876 | (woman-use-own-frame): Change default to nil. | 11423 | (woman-use-own-frame): Change default to nil. |
| 10877 | (woman-italic, woman-bold, woman-unknown, woman-addition): Change | 11424 | (woman-italic, woman-bold, woman-unknown, woman-addition): |
| 10878 | defaults to inherit from default faces. | 11425 | Change defaults to inherit from default faces. |
| 10879 | (woman2-process-escapes): Consume the newline after a stand-alone | 11426 | (woman2-process-escapes): Consume the newline after a stand-alone |
| 10880 | filler character (Bug#3651). | 11427 | filler character (Bug#3651). |
| 10881 | 11428 | ||
| @@ -11169,8 +11716,8 @@ | |||
| 11169 | (verilog-auto-ascii-enum): Support one-hot state machines in | 11716 | (verilog-auto-ascii-enum): Support one-hot state machines in |
| 11170 | AUTOASCIIENUM. Suggested by Lloyd Gomez. | 11717 | AUTOASCIIENUM. Suggested by Lloyd Gomez. |
| 11171 | (verilog-auto-inst, verilog-auto-inst-port): Include interface | 11718 | (verilog-auto-inst, verilog-auto-inst-port): Include interface |
| 11172 | modport in AUTOINST and add vl-modport for users. Reported by | 11719 | modport in AUTOINST and add vl-modport for users. |
| 11173 | David Rogoff. | 11720 | Reported by David Rogoff. |
| 11174 | (verilog-auto-inout-module, verilog-auto-inst) | 11721 | (verilog-auto-inout-module, verilog-auto-inst) |
| 11175 | (verilog-decls-get-interfaces, verilog-insert-definition) | 11722 | (verilog-decls-get-interfaces, verilog-insert-definition) |
| 11176 | (verilog-insert-one-definition, verilog-read-decls) | 11723 | (verilog-insert-one-definition, verilog-read-decls) |