diff options
Diffstat (limited to 'lisp/ChangeLog')
| -rw-r--r-- | lisp/ChangeLog | 109 |
1 files changed, 109 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 70f7255782a..effae29fc8f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,112 @@ | |||
| 1 | 2004-06-29 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * progmodes/gdb-ui.el (breakpoint-enabled-bitmap-face) | ||
| 4 | (breakpoint-disabled-bitmap-face): Add :group 'gud. | ||
| 5 | |||
| 6 | * progmodes/ada-xref.el (ada-tight-gvd-integration): | ||
| 7 | Add :group 'ada. | ||
| 8 | |||
| 9 | * vc-arch.el (vc-arch-mode-line-rewrite): Add :group 'vc. | ||
| 10 | |||
| 11 | 2004-06-29 Juri Linkov <juri@jurta.org> | ||
| 12 | |||
| 13 | * replace.el (query-replace-read-args): Swallow a space after | ||
| 14 | everything except )]" which in most cases means after a symbol. | ||
| 15 | |||
| 16 | * emacs-lisp/pp.el (pp-buffer): Add autoload. | ||
| 17 | |||
| 18 | 2004-06-26 David Kastrup <dak@gnu.org> | ||
| 19 | |||
| 20 | * replace.el (perform-replace): Highlight the match even in | ||
| 21 | non-query mode if there is potential replace string editing. | ||
| 22 | |||
| 23 | 2004-06-26 Kai Grossjohann <kai.grossjohann@gmx.net> | ||
| 24 | |||
| 25 | * net/tramp.el (tramp-handle-file-remote-p): New implementation to | ||
| 26 | agree with new return value of `file-remote-p'. | ||
| 27 | This syncs with Tramp 2.0.42. | ||
| 28 | |||
| 29 | * net/ange-ftp.el (ange-ftp-file-remote-p): New return value, | ||
| 30 | according to new documentation of `file-remote-p'. | ||
| 31 | |||
| 32 | * files.el (file-remote-p): Fix doc to say that return value is | ||
| 33 | identification of remote system, if not nil. | ||
| 34 | (file-relative-name): Use new return value of `file-remote-p'. | ||
| 35 | |||
| 36 | 2004-06-26 Nick Roberts <nickrob@gnu.org> | ||
| 37 | |||
| 38 | * progmodes/gdb-ui.el (gdb-toggle-breakpoint) | ||
| 39 | (gdb-goto-breakpoint): Fix breakage. | ||
| 40 | |||
| 41 | 2004-06-26 Eli Zaretskii <eliz@gnu.org> | ||
| 42 | |||
| 43 | * man.el (Man-getpage-in-background): Add windows-nt to the list | ||
| 44 | of systems where shell-file-name should be used instead of | ||
| 45 | literal "sh". | ||
| 46 | |||
| 47 | 2004-06-25 Sam Steingold <sds@gnu.org> | ||
| 48 | |||
| 49 | * add-log.el (change-log-font-lock-keywords): Support Common Lisp | ||
| 50 | function names `(setf symbol)'. | ||
| 51 | |||
| 52 | 2004-06-24 Richard M. Stallman <rms@gnu.org> | ||
| 53 | |||
| 54 | * replace.el (query-replace-read-args): Swallow space after \,SYMBOL. | ||
| 55 | |||
| 56 | * font-lock.el (font-lock-keywords): Change format of compiled values. | ||
| 57 | Document it. | ||
| 58 | (font-lock-add-keywords): If font-lock-keywords is compiled, | ||
| 59 | extract the uncompiled version, modify, then recompile. | ||
| 60 | (font-lock-remove-keywords): Likewise. | ||
| 61 | (font-lock-fontify-keywords-region): Handle changed format. | ||
| 62 | (font-lock-compile-keywords): Handle changed format. | ||
| 63 | (font-lock-set-defaults): Compile the keywords explicitly here. | ||
| 64 | |||
| 65 | 2004-06-24 David Kastrup <dak@gnu.org> | ||
| 66 | |||
| 67 | * replace.el (query-replace-read-args): Implement `\,' and `\#' | ||
| 68 | replacements here. | ||
| 69 | (query-replace-regexp): Doc string explaining this and the new | ||
| 70 | `\?' replacement. Remove `\,' and `\#' implementation here, as it | ||
| 71 | is better placed in `query-replace-read-args'. | ||
| 72 | (replace-regexp): Explain `\,', `\#' and `\?'. | ||
| 73 | (replace-match-data): New function for thorough reuse/destruction | ||
| 74 | of old match-data. | ||
| 75 | (replace-match-maybe-edit): Function for implementing `\?' | ||
| 76 | editing. | ||
| 77 | (perform-replace): Fix maintaining of the match stack including | ||
| 78 | already matched regions, implement `\?', fix various problems | ||
| 79 | with regions while editing and other stuff. | ||
| 80 | (replace-highlight): Simplified. | ||
| 81 | |||
| 82 | 2004-06-24 Daniel Pfeiffer <occitan@esperanto.org> | ||
| 83 | |||
| 84 | * progmodes/grep.el (grep-error-screen-columns): New variable. | ||
| 85 | (grep-regexp-alist): Give it the full functionality of gnu style | ||
| 86 | compilation messages with line and column ranges. Ask me for the | ||
| 87 | perl script I'm working on, that uses these. | ||
| 88 | |||
| 89 | 2004-06-23 Nick Roberts <nickrob@gnu.org> | ||
| 90 | |||
| 91 | * comint.el: (comint-insert-clicked-input, comint-copy-old-input): | ||
| 92 | Remove. | ||
| 93 | (comint-insert-input, comint-mouse-insert-input): New functions | ||
| 94 | based on comint-insert-clicked-input for two bindings but just | ||
| 95 | one functionality. | ||
| 96 | |||
| 97 | 2004-06-23 Luc Teirlinck <teirllm@auburn.edu> | ||
| 98 | |||
| 99 | * net/goto-addr.el (goto-address-fontify): Fix help-echo text. | ||
| 100 | |||
| 101 | 2004-06-23 Lars Hansen <larsh@math.ku.dk> | ||
| 102 | |||
| 103 | * files.el (write-contents-functions): Doc fix. | ||
| 104 | |||
| 105 | 2004-06-21 Juanma Barranquero <lektu@terra.es> | ||
| 106 | |||
| 107 | * image.el (image-library-alist): Rewrite docstring in active | ||
| 108 | voice. | ||
| 109 | |||
| 1 | 2004-06-20 Richard M. Stallman <rms@gnu.org> | 110 | 2004-06-20 Richard M. Stallman <rms@gnu.org> |
| 2 | 111 | ||
| 3 | * mouse.el (mouse-set-region-1): Set transient-mark-mode to `only'. | 112 | * mouse.el (mouse-set-region-1): Set transient-mark-mode to `only'. |