diff options
| author | Miles Bader | 2008-01-09 01:21:15 +0000 |
|---|---|---|
| committer | Miles Bader | 2008-01-09 01:21:15 +0000 |
| commit | 430d2ee2919b2d4693780f2474ba40148442d206 (patch) | |
| tree | ea4b697cc7403cfffa9f4dcad08c61345a1d31b0 /lisp/ChangeLog | |
| parent | bcab78b72bd640d41c7b4268e05e9f3f9e2c69c1 (diff) | |
| parent | 59ce725a3b68cbc324f01bc8dc5f9e07286431d1 (diff) | |
| download | emacs-430d2ee2919b2d4693780f2474ba40148442d206.tar.gz emacs-430d2ee2919b2d4693780f2474ba40148442d206.zip | |
Merge from emacs--devo--0
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-312
Diffstat (limited to 'lisp/ChangeLog')
| -rw-r--r-- | lisp/ChangeLog | 427 |
1 files changed, 386 insertions, 41 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f3b62b87e10..e8b138c1787 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,4 +1,351 @@ | |||
| 1 | 2008-01-02 Miles Bader <Miles Bader <miles@gnu.org>> | 1 | 2008-01-08 Nick Roberts <nickrob@snap.net.nz> |
| 2 | |||
| 3 | * progmodes/gdb-ui.el (gdb-var-list-children-1): Put varnum in | ||
| 4 | quotes in case of spaces, e.g. STL containers (not pretty). | ||
| 5 | |||
| 6 | 2008-01-08 Nick Roberts <nickrob@snap.net.nz> | ||
| 7 | |||
| 8 | * progmodes/gdb-ui.el (gud-gdb-command-name): Explain | ||
| 9 | "--annotate=3" option is necessary for the Graphical Interface. | ||
| 10 | |||
| 11 | 2008-01-08 Nick Roberts <nickrob@snap.net.nz> | ||
| 12 | |||
| 13 | * progmodes/hideif.el (hide-ifdef-mode-menu): Put hide-ifdef commands | ||
| 14 | on menu bar. | ||
| 15 | |||
| 16 | 2008-01-08 Michael Albinus <michael.albinus@gmx.de> | ||
| 17 | |||
| 18 | * ffap.el (ffap-read-file-or-url): Let-bind | ||
| 19 | `file-name-handler-alist' due to `rfn-eshadow-update-overlay'. | ||
| 20 | |||
| 21 | 2008-01-08 Sven Joachim <svenjoac@gmx.de> | ||
| 22 | |||
| 23 | * vc-bzr.el: Fix typo in header. | ||
| 24 | |||
| 25 | 2008-01-08 Eli Zaretskii <eliz@gnu.org> | ||
| 26 | |||
| 27 | * Makefile.in (custom-deps, finder-data): Depend on autoloads | ||
| 28 | instead of loaddefs.el. | ||
| 29 | |||
| 30 | 2008-01-08 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 31 | |||
| 32 | * vc-cvs.el (vc-cvs-annotate-time): Don't move backward when text | ||
| 33 | gets inserted out-of-order. | ||
| 34 | |||
| 35 | 2008-01-08 Riccardo Murri <riccardo.murri@gmail.com> | ||
| 36 | |||
| 37 | * vc-bzr.el: Copyright and version headers update. | ||
| 38 | Remove some outdated comments through the whole file. | ||
| 39 | (vc-bzr-program-args): Remove because unused. | ||
| 40 | (vc-bzr-log-switches): New customization option. | ||
| 41 | (vc-bzr-command): Use LC_MESSAGES=C instead of LC_ALL=C. No longer | ||
| 42 | use `vc-bzr-program-args'. | ||
| 43 | (vc-bzr-register): Fix for working with both 22.1 and CVS version of | ||
| 44 | `vc-find-root' (patch by Andreas Hoenen). | ||
| 45 | (vc-bzr-status): Update regex to match latest Bzr output. | ||
| 46 | Remove redundant test. | ||
| 47 | (vc-bzr-init-version): New function. | ||
| 48 | (vc-bzr-unregister): Must not delete file. | ||
| 49 | (vc-bzr-find-version): New function. | ||
| 50 | (vc-bzr-checkout): Argument `rev' is explicit revision only if it's | ||
| 51 | a non-empty string, otherwise take head revision. | ||
| 52 | (vc-bzr-print-log): Pass `vc-bzr-log-switches' to "bzr log". | ||
| 53 | (vc-bzr-diff): Simpler build of the revision spec string. | ||
| 54 | (vc-annotate-convert-time, vc-bzr-annotate-difference): | ||
| 55 | Remove: compatibility hacks for Emacs21, not needed in Emacs 22. | ||
| 56 | (vc-bzr-dir-state): Add code comments. Removed redundant statement. | ||
| 57 | (vc-bzr-dired-state-info): Only provide custom strings for | ||
| 58 | overloaded VC state 'edited; otherwise fallback to | ||
| 59 | `vc-default-dired-state-info'. | ||
| 60 | |||
| 61 | 2008-01-08 Richard Stallman <rms@gnu.org> | ||
| 62 | |||
| 63 | * delsel.el (delete-selection-mode): Doc fix. | ||
| 64 | |||
| 65 | 2008-01-08 Nick Roberts <nickrob@snap.net.nz> | ||
| 66 | |||
| 67 | * progmodes/gud.el (gud-def): Do nothing if gud-running is t. | ||
| 68 | (gud-speedbar-menu-items): Add item for gdb-var-set-format below. | ||
| 69 | |||
| 70 | * progmodes/gdb-ui.el (gdb-var-set-format): Set the output format | ||
| 71 | of watch expressions (only works fully with GDB 6.7 or later). | ||
| 72 | |||
| 73 | 2008-01-08 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 74 | |||
| 75 | * time-stamp.el (time-stamp-time-zone): | ||
| 76 | * whitespace.el (whitespace-check-buffer-leading) | ||
| 77 | (whitespace-check-buffer-trailing) | ||
| 78 | (whitespace-check-buffer-indent) | ||
| 79 | (whitespace-check-buffer-spacetab) | ||
| 80 | (whitespace-check-buffer-ateol): | ||
| 81 | * progmodes/sh-script.el (sh-indentation): | ||
| 82 | * textmodes/ispell.el (ispell-local-pdict): | ||
| 83 | Add safe-local-variable properties. | ||
| 84 | |||
| 85 | 2008-01-08 Michael Albinus <michael.albinus@gmx.de> | ||
| 86 | |||
| 87 | * vc-git.el (vc-git--call): Apply `process-file' instead of | ||
| 88 | `call-process'. | ||
| 89 | |||
| 90 | * net/tramp.el (tramp-remote-process-environment): Add "LC_CTYPE=C". | ||
| 91 | Reported by Pete Forman <pete.forman@westerngeco.com>. | ||
| 92 | (tramp-perl-encode, tramp-perl-decode): Update copyrights. | ||
| 93 | (tramp-handle-process-file): Handle the case where DESTINATION is | ||
| 94 | a consp with t as car. | ||
| 95 | (tramp-wait-for-output): We shall remove exactly what has been | ||
| 96 | find by the search. | ||
| 97 | |||
| 98 | 2008-01-08 Kevin Ryde <user42@zip.com.au> | ||
| 99 | |||
| 100 | * progmodes/compile.el (compilation-error-regexp-alist-alist): | ||
| 101 | For perl, allow "during global destruction" at end. Add entry for | ||
| 102 | two-arg form of the Test module ok() func. | ||
| 103 | |||
| 104 | 2008-01-08 Glenn Morris <rgm@gnu.org> | ||
| 105 | |||
| 106 | * diff-mode.el (diff-end-of-hunk): Don't match empty lines in | ||
| 107 | unified format. | ||
| 108 | |||
| 109 | * mouse.el (mouse-major-mode-menu): Suppress duplicate menus. | ||
| 110 | |||
| 111 | 2008-01-08 Ralf Angeli <angeli@caeruleus.net> | ||
| 112 | |||
| 113 | * textmodes/reftex-toc.el (reftex-make-separate-toc-frame): | ||
| 114 | Simplify selection of frame focusing function. | ||
| 115 | |||
| 116 | 2008-01-08 Michael Olson <mwolson@gnu.org> | ||
| 117 | |||
| 118 | * textmodes/remember.el (remember-region): Fix typo in docstring. | ||
| 119 | |||
| 120 | 2008-01-08 Lennart Borgman <lennart.borgman.073@student.lu.se> | ||
| 121 | |||
| 122 | * textmodes/remember.el (remember): If there is a visible region | ||
| 123 | [that is, the mark is active and transient mark mode is enabled] | ||
| 124 | then use this region for the initial contents of the *Remember* | ||
| 125 | buffer. Use `region-beginning' and `region-end' instead of | ||
| 126 | `point' and `mark'. | ||
| 127 | |||
| 128 | 2008-01-07 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 129 | |||
| 130 | * vc-hg.el (vc-hg-dir-state, vc-hg-dir-status): Pass the dir | ||
| 131 | argument to vc-hg-command. | ||
| 132 | (vc-hg-log-view-mode): Handle the user field better. | ||
| 133 | |||
| 134 | 2008-01-06 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 135 | |||
| 136 | * vc.el (vc-ensure-vc-buffer): Check liveness of vc-parent-buffer. | ||
| 137 | |||
| 138 | 2008-01-06 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 139 | |||
| 140 | * vc.el (vc-status-fileinfo): New defstruct. | ||
| 141 | (vc-status): New defvar | ||
| 142 | (vc-status-insert-headers, vc-status-printer, vc-status) | ||
| 143 | (vc-status-mode-map, vc-status-mode, vc-status-mark-file) | ||
| 144 | (vc-status-unmark-file, vc-status-marked-files): New functions. | ||
| 145 | |||
| 146 | * vc-hg.el (vc-hg-dir-status): New function. | ||
| 147 | |||
| 148 | 2008-01-06 Martin Rudalics <rudalics@gmx.at> | ||
| 149 | |||
| 150 | * cus-edit.el (custom-tool-bar-map): Move initialization of this | ||
| 151 | keymap from here ... | ||
| 152 | (custom-mode): ... to here. Reported by Reiner Steib. | ||
| 153 | |||
| 154 | 2008-01-06 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 155 | |||
| 156 | * obsolete/x-apollo.el: Remove file for unsupported system. | ||
| 157 | |||
| 158 | * term/x-win.el (vendor-specific-keysyms): Remove reference to | ||
| 159 | Apollo. | ||
| 160 | |||
| 161 | * progmodes/gud.el (gud-dgux-p): Remove. | ||
| 162 | (dbx): Remove reference to dgux. | ||
| 163 | |||
| 164 | * progmodes/ps-mode.el (ps-mode-print-function): | ||
| 165 | * ps-print.el (ps-lp-system): | ||
| 166 | * paths.el (rmail-spool-directory): | ||
| 167 | * ls-lisp.el (ls-lisp-emulation): | ||
| 168 | * lpr.el (lpr-lp-system): | ||
| 169 | * dired.el (dired-chown-program): Remove references to dgux. | ||
| 170 | |||
| 171 | 2008-01-05 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 172 | |||
| 173 | * vc.el (vc-process-sentinel): Fix apparent typo. | ||
| 174 | (vc-do-command): Forcefully kill any left over process. | ||
| 175 | Use start-file-process. | ||
| 176 | (vc-annotate-get-time-set-line-props): Check we don't move backward. | ||
| 177 | |||
| 178 | 2008-01-04 Michael Albinus <michael.albinus@gmx.de> | ||
| 179 | |||
| 180 | * net/dbus.el (dbus-list-hash-table) | ||
| 181 | (dbus-name-owner-changed-handler): Replace "signal" by "member". | ||
| 182 | (dbus-check-event): Add serial number to event. | ||
| 183 | (dbus-handle-event): Apply return message if needed. | ||
| 184 | (dbus-event-serial-number): New defun. | ||
| 185 | (dbus-event-service-name, dbus-event-path-name) | ||
| 186 | (dbus-event-interface-name, dbus-event-member-name): | ||
| 187 | Adapt implementation to serial number. | ||
| 188 | |||
| 189 | 2008-01-04 Juanma Barranquero <lekktu@gmail.com> | ||
| 190 | |||
| 191 | * bs.el (bs--get-mode-name): Fix typo in previous change. | ||
| 192 | |||
| 193 | 2008-01-04 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 194 | |||
| 195 | * mouse.el (mouse-popup-menubar): Fix typo. | ||
| 196 | |||
| 197 | * emacs-lisp/bytecomp.el (byte-compile-from-buffer): Move one more | ||
| 198 | form inside with-current-buffer. | ||
| 199 | |||
| 200 | * progmodes/antlr-mode.el (provide): Move to the end of file. | ||
| 201 | (require): Don't require font-lock and compile. | ||
| 202 | (outline-level, imenu-use-markers, imenu-create-index-function): | ||
| 203 | Move declarations to top level. | ||
| 204 | (cond-emacs-xemacs-macfn): Declare for compiler. | ||
| 205 | |||
| 206 | * vc-bzr.el (vc-bzr-root): | ||
| 207 | * vc-arch.el (vc-arch-root): Only set a property if the file is | ||
| 208 | managed by this backend. | ||
| 209 | |||
| 210 | * vc-hg.el (vc-hg-state): Support the new status code for | ||
| 211 | up-to-date. | ||
| 212 | |||
| 213 | 2008-01-04 Tassilo Horn <tassilo@member.fsf.org> | ||
| 214 | |||
| 215 | * doc-view.el (doc-view-scroll-up-or-next-page) | ||
| 216 | (doc-view-scroll-down-or-previous-page): Don't scroll to the | ||
| 217 | top/bottom again when on the first/last page. | ||
| 218 | |||
| 219 | * doc-view.el (doc-view-scroll-up-or-next-page) | ||
| 220 | (doc-view-scroll-down-or-previous-page): Use image-scroll-up and | ||
| 221 | image-scroll-down instead of the non-image equivalents. Don't | ||
| 222 | rely on a signalled condition but switch pages when scrolling | ||
| 223 | doesn't change the vertical position anymore. | ||
| 224 | (doc-view-mode-map): Remap scroll-{up,down} to | ||
| 225 | image-scroll-{up,down}. | ||
| 226 | |||
| 227 | 2008-01-04 Rob Riepel <riepel@networking.Stanford.EDU> | ||
| 228 | |||
| 229 | * emulation/tpu-edt.el (tpu-load-xkeys): Recommend to run the | ||
| 230 | tpu-mapper command rather than load the tpu-mapper package. | ||
| 231 | |||
| 232 | * emulation/tpu-mapper.el (tpu-mapper): New command. | ||
| 233 | Contains all the code previously at top-level. | ||
| 234 | |||
| 235 | 2008-01-04 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 236 | |||
| 237 | * bs.el (bs--sort-by-mode, bs--get-mode-name): | ||
| 238 | * imenu.el (imenu-add-to-menubar): | ||
| 239 | * makesum.el (make-command-summary): | ||
| 240 | * mouse.el (mouse-major-mode-menu, mouse-popup-menubar, mouse-buffer-menu): | ||
| 241 | * msb.el (msb--mode-menu-cond): | ||
| 242 | * calc/calc-embed.el (calc-do-embedded): | ||
| 243 | * emacs-lisp/helper.el (Helper-describe-mode): | ||
| 244 | * mail/emacsbug.el (report-emacs-bug): | ||
| 245 | * progmodes/hideshow.el (hs-grok-mode-type): | ||
| 246 | * textmodes/sgml-mode.el (sgml-mode-facemenu-add-face-function): | ||
| 247 | * textmodes/table.el (*table--cell-describe-mode): | ||
| 248 | Pass mode-name through format-mode-line. | ||
| 249 | |||
| 250 | 2008-01-04 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 251 | |||
| 252 | * progmodes/ada-xref.el (ada-prj-find-prj-file): | ||
| 253 | * progmodes/ada-mode.el (comment-region): | ||
| 254 | * calendar/todo-mode.el (todo-insert-item): | ||
| 255 | * bookmark.el (bookmark-buffer-name): Test major-mode rather than mode-name. | ||
| 256 | |||
| 257 | 2008-01-04 Richard Stallman <rms@gnu.org> | ||
| 258 | |||
| 259 | * emacs-lisp/bytecomp.el (byte-compile-from-buffer): | ||
| 260 | Call byte-compile-warn-about-unresolved-functions outside | ||
| 261 | the with-current-buffer. | ||
| 262 | (byte-compile-insert-header): Use with-current-buffer. | ||
| 263 | |||
| 264 | 2008-01-04 Glenn Morris <rgm@gnu.org> | ||
| 265 | |||
| 266 | * startup.el (fancy-about-screen): Remove reference to deleted | ||
| 267 | `fancy-splash-help-echo' variable. | ||
| 268 | |||
| 269 | * version.el (emacs-copyright): Update to 2008. | ||
| 270 | |||
| 271 | * net/tramp-smb.el (tramp-smb-handle-insert-directory): Use mapc | ||
| 272 | rather than mapcar. | ||
| 273 | |||
| 274 | * progmodes/cc-vars.el (defcustom-c-stylevar): Revert previous | ||
| 275 | change (merge mistake). | ||
| 276 | |||
| 277 | * doc-view.el (doc-view-search-internal): Don't use `incf'. | ||
| 278 | |||
| 279 | * doc-view.el (bookmark-make-cell-function, bookmark-get-filename) | ||
| 280 | (bookmark-get-bookmark-record): | ||
| 281 | * image-mode.el (bookmark-make-cell-function) | ||
| 282 | (bookmark-get-filename, bookmark-get-bookmark-record) | ||
| 283 | (bookmark-get-position): | ||
| 284 | * log-view.el (vc-modify-change-comment): | ||
| 285 | * progmodes/grep.el (find-name-arg): Declare for compiler. | ||
| 286 | |||
| 287 | 2008-01-04 Juanma Barranquero <lekktu@gmail.com> | ||
| 288 | |||
| 289 | * savehist.el (savehist-coding-system): Default to a variant coding | ||
| 290 | system with explicit unix end-of-line conversion, which is safer. | ||
| 291 | |||
| 292 | 2008-01-03 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 293 | |||
| 294 | * ibuf-ext.el (mode-name sorter, ibuffer-mark-by-mode-regexp): | ||
| 295 | * ibuffer.el (mode column): Use format-mode-line. | ||
| 296 | |||
| 297 | * server.el (server-create-window-system-frame): Remove workaround for | ||
| 298 | a bug that has been fixed. | ||
| 299 | |||
| 300 | 2008-01-03 Magnus Henoch <magnus@zemdatav> | ||
| 301 | |||
| 302 | * net/dbus.el (dbus-name-owner-changed-handler): | ||
| 303 | Use dbus-unregister-object instead of dbus-unregister-signal. | ||
| 304 | |||
| 305 | 2008-01-03 Drew Adams <drew.adams@oracle.com> | ||
| 306 | |||
| 307 | * frame.el (frame-geom-value-cons, frame-geom-spec-cons): New fns. | ||
| 308 | |||
| 309 | 2008-01-03 Richard Stallman <rms@gnu.org> | ||
| 310 | |||
| 311 | * replace.el (occur-context-lines): New subroutine, | ||
| 312 | broken out of occur-engine. | ||
| 313 | (occur-engine): Call it. | ||
| 314 | |||
| 315 | 2008-01-03 Alexandre Julliard <julliard@winehq.org> | ||
| 316 | |||
| 317 | * vc-git.el (vc-git--ls-files-state): New function. | ||
| 318 | (vc-git-dir-state): Use it instead of processing the status | ||
| 319 | results here. | ||
| 320 | |||
| 321 | 2008-01-02 Eric S. Raymond <esr@snark.thyrsus.com> | ||
| 322 | |||
| 323 | * progmodes/grep.el (grep-find-ignored-directories): | ||
| 324 | Initialize from the value of vc-directory-exclusion-list. | ||
| 325 | |||
| 326 | * vc-hooks (vc-directory-exclusion-list): Include "_darcs", | ||
| 327 | even though we don't have a back end for darcs yet. | ||
| 328 | |||
| 329 | 2008-01-02 Karl Fogel <kfogel@red-bean.com> | ||
| 330 | |||
| 331 | Change a return type, for greater extensibility. See | ||
| 332 | http://lists.gnu.org/archive/html/emacs-devel/2007-12/msg01077.html | ||
| 333 | and its thread for discussion leading to this change. | ||
| 334 | |||
| 335 | * emacs-cvs/lisp/bookmark.el: | ||
| 336 | (bookmark-jump-noselect): Return an alist instead of a dotted pair. | ||
| 337 | (bookmark-jump, bookmark-jump-other-window, bookmark-insert) | ||
| 338 | (bookmark-bmenu-2-window, bookmark-bmenu-other-window) | ||
| 339 | (bookmark-bmenu-switch-other-window): Adjust accordingly. | ||
| 340 | (bookmark-make-cell-function): Adjust documentation accordingly. | ||
| 341 | |||
| 342 | * emacs-cvs/lisp/image-mode.el | ||
| 343 | (image-bookmark-jump): Adjust return type accordingly; document. | ||
| 344 | |||
| 345 | * emacs-cvs/lisp/doc-view.el | ||
| 346 | (doc-view-bookmark-jump): Adjust return type accordingly; document. | ||
| 347 | |||
| 348 | 2008-01-02 Miles Bader <miles@gnu.org> | ||
| 2 | 349 | ||
| 3 | * net/rcirc.el (rcirc-log-filename-function): New variable. | 350 | * net/rcirc.el (rcirc-log-filename-function): New variable. |
| 4 | (rcirc-log): Use `rcirc-log-filename-function' to generate the | 351 | (rcirc-log): Use `rcirc-log-filename-function' to generate the |
| @@ -39,8 +386,8 @@ | |||
| 39 | 386 | ||
| 40 | 2008-01-01 Dan Nicolaescu <dann@ics.uci.edu> | 387 | 2008-01-01 Dan Nicolaescu <dann@ics.uci.edu> |
| 41 | 388 | ||
| 42 | * vc-git.el (vc-git-dir-state): Set the vc-backend property. Do | 389 | * vc-git.el (vc-git-dir-state): Set the vc-backend property. |
| 43 | not disable undo, with-temp-buffer does it by default. | 390 | Do not disable undo, with-temp-buffer does it by default. |
| 44 | 391 | ||
| 45 | 2008-01-01 Eric S. Raymond <esr@snark.thyrsus.com> | 392 | 2008-01-01 Eric S. Raymond <esr@snark.thyrsus.com> |
| 46 | 393 | ||
| @@ -53,8 +400,8 @@ | |||
| 53 | 400 | ||
| 54 | 2007-12-31 Tom Tromey <tromey@redhat.com> | 401 | 2007-12-31 Tom Tromey <tromey@redhat.com> |
| 55 | 402 | ||
| 56 | * emacs-lisp/elp.el (elp-results): Use header-line-format for | 403 | * emacs-lisp/elp.el (elp-results): Use header-line-format for header. |
| 57 | header. Move point to the start of the buffer. | 404 | Move point to the start of the buffer. |
| 58 | 405 | ||
| 59 | 2007-12-31 Dan Nicolaescu <dann@ics.uci.edu> | 406 | 2007-12-31 Dan Nicolaescu <dann@ics.uci.edu> |
| 60 | 407 | ||
| @@ -65,8 +412,8 @@ | |||
| 65 | 412 | ||
| 66 | 2007-12-31 Martin Rudalics <rudalics@gmx.at> | 413 | 2007-12-31 Martin Rudalics <rudalics@gmx.at> |
| 67 | 414 | ||
| 68 | * man.el (Man-default-man-entry): Make this a defun. Improve | 415 | * man.el (Man-default-man-entry): Make this a defun. |
| 69 | guessing mechanism and handling of section numbers. | 416 | Improve guessing mechanism and handling of section numbers. |
| 70 | 417 | ||
| 71 | 2007-12-31 Richard Stallman <rms@gnu.org> | 418 | 2007-12-31 Richard Stallman <rms@gnu.org> |
| 72 | 419 | ||
| @@ -98,8 +445,7 @@ | |||
| 98 | (custom-theme-set-faces): Clear `face-override-spec' property. | 445 | (custom-theme-set-faces): Clear `face-override-spec' property. |
| 99 | Call `face-spec-set' with FOR-DEFFACE. | 446 | Call `face-spec-set' with FOR-DEFFACE. |
| 100 | 447 | ||
| 101 | * custom.el (custom-theme-recalc-face): | 448 | * custom.el (custom-theme-recalc-face): Simply call `face-spec-recalc'. |
| 102 | Simply call `face-spec-recalc'. | ||
| 103 | 449 | ||
| 104 | * faces.el (face-spec-set): Third arg is now FOR-DEFFACE. | 450 | * faces.el (face-spec-set): Third arg is now FOR-DEFFACE. |
| 105 | Use of frame as third arg is deprecated. | 451 | Use of frame as third arg is deprecated. |
| @@ -127,7 +473,7 @@ | |||
| 127 | (vc-compatible-state): New function. Checks whether two states | 473 | (vc-compatible-state): New function. Checks whether two states |
| 128 | can be in the same changeset; used with 'edited it can test whether | 474 | can be in the same changeset; used with 'edited it can test whether |
| 129 | the next action for a state should be commit. | 475 | the next action for a state should be commit. |
| 130 | (vc-default-dired-format0info): Display 'added state. | 476 | (vc-default-dired-state-info): Display 'removed state. |
| 131 | (vc-dired-hook): Turn off undo, this is a speed tweak. | 477 | (vc-dired-hook): Turn off undo, this is a speed tweak. |
| 132 | 478 | ||
| 133 | * vc-bzr.el (vc-bzr-dir-state): Recognize 'added. | 479 | * vc-bzr.el (vc-bzr-dir-state): Recognize 'added. |
| @@ -149,8 +495,7 @@ | |||
| 149 | 495 | ||
| 150 | 2007-12-29 Jay Belanger <jay.p.belanger@gmail.com> | 496 | 2007-12-29 Jay Belanger <jay.p.belanger@gmail.com> |
| 151 | 497 | ||
| 152 | * calc/calc-aent.el (math-read-token): Fix misplaced | 498 | * calc/calc-aent.el (math-read-token): Fix misplaced parentheses. |
| 153 | parentheses. | ||
| 154 | 499 | ||
| 155 | * calc/calc-lang.el (calc-yacas-language, calc-maxima-language) | 500 | * calc/calc-lang.el (calc-yacas-language, calc-maxima-language) |
| 156 | (calc-giac-language, math-yacas-parse-Sum, math-yacas-compose-sum) | 501 | (calc-giac-language, math-yacas-parse-Sum, math-yacas-compose-sum) |
| @@ -251,7 +596,7 @@ | |||
| 251 | 596 | ||
| 252 | * emacs-lisp/find-func.el (find-function-after-hook): Add :type. | 597 | * emacs-lisp/find-func.el (find-function-after-hook): Add :type. |
| 253 | 598 | ||
| 254 | * info.el (Info-clone-buffer): Renamed from Info-clone-buffer-hook. | 599 | * info.el (Info-clone-buffer): Rename from Info-clone-buffer-hook. |
| 255 | Use changed. | 600 | Use changed. |
| 256 | 601 | ||
| 257 | * startup.el (fancy-splash-help-echo): Var deleted. | 602 | * startup.el (fancy-splash-help-echo): Var deleted. |
| @@ -334,8 +679,8 @@ | |||
| 334 | 679 | ||
| 335 | 2007-12-27 Eric S. Raymond <esr@snark.thyrsus.com> | 680 | 2007-12-27 Eric S. Raymond <esr@snark.thyrsus.com> |
| 336 | 681 | ||
| 337 | * vc.el, vc-sccs.el, vc-rcs.el, vc-cs.el, vc-mcvs.el: Put | 682 | * vc.el, vc-sccs.el, vc-rcs.el, vc-cs.el, vc-mcvs.el: |
| 338 | new machinery in place to support editing of change comments | 683 | Put new machinery in place to support editing of change comments |
| 339 | with 'e' in a log-view buffer. Not documented yet as this | 684 | with 'e' in a log-view buffer. Not documented yet as this |
| 340 | only works for SCCS, RCS, and maybe CVS if you have admin | 685 | only works for SCCS, RCS, and maybe CVS if you have admin |
| 341 | privileges. When we have backend support for Subversion and | 686 | privileges. When we have backend support for Subversion and |
| @@ -414,7 +759,7 @@ | |||
| 414 | (bookmark-jump, bookmark-jump-other-window, bookmark-insert) | 759 | (bookmark-jump, bookmark-jump-other-window, bookmark-insert) |
| 415 | (bookmark-bmenu-2-window, bookmark-bmenu-other-window): | 760 | (bookmark-bmenu-2-window, bookmark-bmenu-other-window): |
| 416 | Use bookmark-jump-internal. | 761 | Use bookmark-jump-internal. |
| 417 | (bookmark-make-cell-for-text-file): Renamed from bookmark-make-cell. | 762 | (bookmark-make-cell-for-text-file): Rename from bookmark-make-cell. |
| 418 | 763 | ||
| 419 | * doc-view.el (doc-view-bookmark-make-cell) | 764 | * doc-view.el (doc-view-bookmark-make-cell) |
| 420 | (doc-view-bookmark-jump): New functions. | 765 | (doc-view-bookmark-jump): New functions. |
| @@ -462,7 +807,7 @@ | |||
| 462 | (yank-pop-change-selection): New option. | 807 | (yank-pop-change-selection): New option. |
| 463 | (current-kill): Obey it. | 808 | (current-kill): Obey it. |
| 464 | 809 | ||
| 465 | * simple.el (use-region-p): Renamed from `region-active-p'. | 810 | * simple.el (use-region-p): Rename from `region-active-p'. |
| 466 | (region-active-p): New function. | 811 | (region-active-p): New function. |
| 467 | 812 | ||
| 468 | 2007-12-25 David Golden <david.delaharpe.golden@gmail.com> (tiny change) | 813 | 2007-12-25 David Golden <david.delaharpe.golden@gmail.com> (tiny change) |
| @@ -673,8 +1018,8 @@ | |||
| 673 | font-lock when compiling. Always require compile. Relegate remaining | 1018 | font-lock when compiling. Always require compile. Relegate remaining |
| 674 | compatibility cruft to XEmacs. Don't require font-lock. | 1019 | compatibility cruft to XEmacs. Don't require font-lock. |
| 675 | (verilog-version): Remove superfluous concat. | 1020 | (verilog-version): Remove superfluous concat. |
| 676 | (dinotrace-unannotate-all, zmacs-activate-region) | 1021 | (dinotrace-unannotate-all, zmacs-activate-region, customize-apropos): |
| 677 | (customize-apropos): No need to define. | 1022 | No need to define. |
| 678 | (verilog-regexp-opt): On Emacs, just make it an alias for regexp-opt. | 1023 | (verilog-regexp-opt): On Emacs, just make it an alias for regexp-opt. |
| 679 | (verilog-font-lock-keywords, verilog-font-lock-keywords-1) | 1024 | (verilog-font-lock-keywords, verilog-font-lock-keywords-1) |
| 680 | (verilog-font-lock-keywords-2, verilog-font-lock-keywords-3) | 1025 | (verilog-font-lock-keywords-2, verilog-font-lock-keywords-3) |
| @@ -700,15 +1045,15 @@ | |||
| 700 | (reporter-submit-bug-report): Autoload it. | 1045 | (reporter-submit-bug-report): Autoload it. |
| 701 | (verilog-mark-defun): Call zmacs-activate-region only if bound. | 1046 | (verilog-mark-defun): Call zmacs-activate-region only if bound. |
| 702 | (verilog-font-customize): Call customize-apropos only if bound. | 1047 | (verilog-font-customize): Call customize-apropos only if bound. |
| 703 | (verilog-getopt-flags, verilog-auto-reeval-locals): Use | 1048 | (verilog-getopt-flags, verilog-auto-reeval-locals): |
| 704 | make-local-variable rather than make-variable-buffer-local. | 1049 | Use make-local-variable rather than make-variable-buffer-local. |
| 705 | (verilog-company, verilog-project, verilog-modi-cache-list): | 1050 | (verilog-company, verilog-project, verilog-modi-cache-list): |
| 706 | Move make-variable-buffer-local calls to top-level. | 1051 | Move make-variable-buffer-local calls to top-level. |
| 707 | (font-lock-defaults-alist): Don't define it. | 1052 | (font-lock-defaults-alist): Don't define it. |
| 708 | (verilog-need-fld): Remove. | 1053 | (verilog-need-fld): Remove. |
| 709 | (verilog-font-lock-init): Don't set font-lock-defaults-alist. | 1054 | (verilog-font-lock-init): Don't set font-lock-defaults-alist. |
| 710 | (verilog-mode): Only call make-local-hook on XEmacs. Set | 1055 | (verilog-mode): Only call make-local-hook on XEmacs. |
| 711 | font-lock-defaults rather than using verilog-font-lock-init. | 1056 | Set font-lock-defaults rather than using verilog-font-lock-init. |
| 712 | 1057 | ||
| 713 | 2007-12-17 Andreas Schwab <schwab@suse.de> | 1058 | 2007-12-17 Andreas Schwab <schwab@suse.de> |
| 714 | 1059 | ||
| @@ -764,7 +1109,7 @@ | |||
| 764 | (verilog-re-search-backward, verilog-re-search-forward-quick) | 1109 | (verilog-re-search-backward, verilog-re-search-forward-quick) |
| 765 | (verilog-re-search-backward-quick, verilog-get-beg-of-line) | 1110 | (verilog-re-search-backward-quick, verilog-get-beg-of-line) |
| 766 | (verilog-get-end-of-line, verilog-within-string): Move definitions | 1111 | (verilog-get-end-of-line, verilog-within-string): Move definitions |
| 767 | before first use. No code changes. | 1112 | before first use. No code changes. |
| 768 | 1113 | ||
| 769 | 2007-12-08 Dan Nicolaescu <dann@ics.uci.edu> | 1114 | 2007-12-08 Dan Nicolaescu <dann@ics.uci.edu> |
| 770 | 1115 | ||
| @@ -784,21 +1129,21 @@ | |||
| 784 | (verilog-declaration-prefix-re, verilog-declaration-re) | 1129 | (verilog-declaration-prefix-re, verilog-declaration-re) |
| 785 | (verilog-end-of-statement, verilog-indent-declaration) | 1130 | (verilog-end-of-statement, verilog-indent-declaration) |
| 786 | (verilog-get-lineup-indent): Remove trailing whitespace. | 1131 | (verilog-get-lineup-indent): Remove trailing whitespace. |
| 787 | (verilog-mode): Fix autoload cookie. Set | 1132 | (verilog-mode): Fix autoload cookie. |
| 788 | beginning-of-defun-function and end-of-defun-function. Use when | 1133 | Set beginning-of-defun-function and end-of-defun-function. Use when |
| 789 | instead of if. | 1134 | instead of if. |
| 790 | (verilog-emacs-features, verilog-auto-ascii-enum) | 1135 | (verilog-emacs-features, verilog-auto-ascii-enum) |
| 791 | (verilog-insert-indices): Escape braces in doc strings. | 1136 | (verilog-insert-indices): Escape braces in doc strings. |
| 792 | 1137 | ||
| 793 | 2007-12-08 Michael McNamara <mac@verilog.com> | 1138 | 2007-12-08 Michael McNamara <mac@verilog.com> |
| 794 | Wilson Snyder <wsnyder@wsnyder.org> | 1139 | Wilson Snyder <wsnyder@wsnyder.org> |
| 795 | 1140 | ||
| 796 | * progmodes/verilog-mode.el: New file. | 1141 | * progmodes/verilog-mode.el: New file. |
| 797 | 1142 | ||
| 798 | 2007-12-08 Eli Zaretskii <eliz@fencepost.gnu.org> | 1143 | 2007-12-08 Eli Zaretskii <eliz@fencepost.gnu.org> |
| 799 | 1144 | ||
| 800 | * international/latexenc.el (latexenc-find-file-coding-system): If | 1145 | * international/latexenc.el (latexenc-find-file-coding-system): |
| 801 | both coding-system-for-write and buffer-file-coding-system of | 1146 | If both coding-system-for-write and buffer-file-coding-system of |
| 802 | latex-main-file are nil, use `undecided'. | 1147 | latex-main-file are nil, use `undecided'. |
| 803 | 1148 | ||
| 804 | 2007-12-06 Jason Rumney <jasonr@gnu.org> | 1149 | 2007-12-06 Jason Rumney <jasonr@gnu.org> |
| @@ -1178,7 +1523,7 @@ | |||
| 1178 | 2007-12-04 Michael Albinus <michael.albinus@gmx.de> | 1523 | 2007-12-04 Michael Albinus <michael.albinus@gmx.de> |
| 1179 | 1524 | ||
| 1180 | * net/dbus.el (dbus-hash-table=): New defun. | 1525 | * net/dbus.el (dbus-hash-table=): New defun. |
| 1181 | (dbus-hash-table-test) New hash table test function, used in | 1526 | (dbus-hash-table-test): New hash table test function, used in |
| 1182 | `dbus-registered-functions-table'. | 1527 | `dbus-registered-functions-table'. |
| 1183 | (dbus-check-event, dbus-handle-event, dbus-event-bus-name) | 1528 | (dbus-check-event, dbus-handle-event, dbus-event-bus-name) |
| 1184 | (dbus-event-service-name, dbus-event-path-name) | 1529 | (dbus-event-service-name, dbus-event-path-name) |
| @@ -5615,7 +5960,7 @@ | |||
| 5615 | 5960 | ||
| 5616 | 2007-10-08 Jason Rumney <jasonr@gnu.org> | 5961 | 2007-10-08 Jason Rumney <jasonr@gnu.org> |
| 5617 | 5962 | ||
| 5618 | * frame.el (focus-follows-mouse): Doc-fix. Change default on w32. | 5963 | * frame.el (focus-follows-mouse): Doc-fix. Change default on w32. |
| 5619 | 5964 | ||
| 5620 | 2007-10-08 Richard Stallman <rms@gnu.org> | 5965 | 2007-10-08 Richard Stallman <rms@gnu.org> |
| 5621 | 5966 | ||
| @@ -7104,7 +7449,7 @@ | |||
| 7104 | * server.el (server-start, server-unload-hook): | 7449 | * server.el (server-start, server-unload-hook): |
| 7105 | suspend-tty-functions has been renamed to suspend-tty-hook. | 7450 | suspend-tty-functions has been renamed to suspend-tty-hook. |
| 7106 | 7451 | ||
| 7107 | * xt-mouse.el: Likewise. resume-tty-functions has been renamed to | 7452 | * xt-mouse.el: Likewise. resume-tty-functions has been renamed to |
| 7108 | resume-tty-hook. | 7453 | resume-tty-hook. |
| 7109 | 7454 | ||
| 7110 | 2007-09-03 Emanuele Giaquinta <e.giaquinta@glauco.it> (tiny change) | 7455 | 2007-09-03 Emanuele Giaquinta <e.giaquinta@glauco.it> (tiny change) |
| @@ -9546,9 +9891,9 @@ | |||
| 9546 | 9891 | ||
| 9547 | * vc.el (revision-granularity, create-repo): Document new vc | 9892 | * vc.el (revision-granularity, create-repo): Document new vc |
| 9548 | backend properties. | 9893 | backend properties. |
| 9549 | (vc-rollback): Renamed from vc-cancel-version. Update | 9894 | (vc-rollback): Renamed from vc-cancel-version. Update references. |
| 9550 | references. Pass a list instead of a file. | 9895 | Pass a list instead of a file. |
| 9551 | (vc-revert): Renamed from vc-revert-buffer. Update references. | 9896 | (vc-revert): Renamed from vc-revert-buffer. Update references. |
| 9552 | (vc-delistify, vc-expand-dirs): New functions. | 9897 | (vc-delistify, vc-expand-dirs): New functions. |
| 9553 | (vc-do-command): Rename FILE to FILE-OR-LIST and deal with a list | 9898 | (vc-do-command): Rename FILE to FILE-OR-LIST and deal with a list |
| 9554 | of files instead of a single file. | 9899 | of files instead of a single file. |
| @@ -9561,7 +9906,7 @@ | |||
| 9561 | (vc-workfile-version): Update docstring. | 9906 | (vc-workfile-version): Update docstring. |
| 9562 | (vc-menu-map): Use vc-rollback instead of vc-cancel-version and | 9907 | (vc-menu-map): Use vc-rollback instead of vc-cancel-version and |
| 9563 | vc-revert instead of vc-revert-buffer. | 9908 | vc-revert instead of vc-revert-buffer. |
| 9564 | (vc-prefix-map): Likewise. Bind vc-update. | 9909 | (vc-prefix-map): Likewise. Bind vc-update. |
| 9565 | 9910 | ||
| 9566 | * vc-svn.el (vc-svn-revision-granularity, vc-svn-create-repo) | 9911 | * vc-svn.el (vc-svn-revision-granularity, vc-svn-create-repo) |
| 9567 | (vc-svn-wash-log): New functions. | 9912 | (vc-svn-wash-log): New functions. |
| @@ -9572,7 +9917,7 @@ | |||
| 9572 | (vc-rcs-wash-log): New functions. | 9917 | (vc-rcs-wash-log): New functions. |
| 9573 | (vc-rcs-register, vc-rcs-checkin, vc-rcs-diff, vc-rcs-print-log): | 9918 | (vc-rcs-register, vc-rcs-checkin, vc-rcs-diff, vc-rcs-print-log): |
| 9574 | Deal with a list of files, not a single file. | 9919 | Deal with a list of files, not a single file. |
| 9575 | (vc-rcs-rollback): Likewise. Rename from vc-rcs-cancel-version. | 9920 | (vc-rcs-rollback): Likewise. Rename from vc-rcs-cancel-version. |
| 9576 | 9921 | ||
| 9577 | * vc-sccs.el (vc-sccs-revision-granularity, vc-sccs-wash-log): New | 9922 | * vc-sccs.el (vc-sccs-revision-granularity, vc-sccs-wash-log): New |
| 9578 | functions. | 9923 | functions. |
| @@ -9597,7 +9942,7 @@ | |||
| 9597 | a single file. | 9942 | a single file. |
| 9598 | (vc-cvs-print-log, vc-cvs-command): Rename FILE to FILES to denote | 9943 | (vc-cvs-print-log, vc-cvs-command): Rename FILE to FILES to denote |
| 9599 | that it is a file list, not a single file. | 9944 | that it is a file list, not a single file. |
| 9600 | (vc-cvs-diff): Likewise. Simplify. | 9945 | (vc-cvs-diff): Likewise. Simplify. |
| 9601 | 9946 | ||
| 9602 | * vc-arch.el (vc-arch-register, vc-arch-checkin, vc-arch-diff): | 9947 | * vc-arch.el (vc-arch-register, vc-arch-checkin, vc-arch-diff): |
| 9603 | Deal with a list of files, not a single file. | 9948 | Deal with a list of files, not a single file. |
| @@ -9605,7 +9950,7 @@ | |||
| 9605 | * vc-bzr.el (vc-bzr-register, vc-bzr-command, vc-bzr-checkin) | 9950 | * vc-bzr.el (vc-bzr-register, vc-bzr-command, vc-bzr-checkin) |
| 9606 | (vc-bzr-print-log): Update FILE parameter name to denote that it | 9951 | (vc-bzr-print-log): Update FILE parameter name to denote that it |
| 9607 | is a file list, not a single file. | 9952 | is a file list, not a single file. |
| 9608 | (vc-bzr-diff): Likewise. Use the car of files. | 9953 | (vc-bzr-diff): Likewise. Use the car of files. |
| 9609 | 9954 | ||
| 9610 | 2007-07-18 Juanma Barranquero <lekktu@gmail.com> | 9955 | 2007-07-18 Juanma Barranquero <lekktu@gmail.com> |
| 9611 | 9956 | ||
| @@ -12000,7 +12345,7 @@ See ChangeLog.12 for earlier changes. | |||
| 12000 | ;; add-log-time-zone-rule: t | 12345 | ;; add-log-time-zone-rule: t |
| 12001 | ;; End: | 12346 | ;; End: |
| 12002 | 12347 | ||
| 12003 | Copyright (C) 2007 Free Software Foundation, Inc. | 12348 | Copyright (C) 2007, 2008 Free Software Foundation, Inc. |
| 12004 | 12349 | ||
| 12005 | This file is part of GNU Emacs. | 12350 | This file is part of GNU Emacs. |
| 12006 | 12351 | ||