diff options
Diffstat (limited to 'lisp/ChangeLog')
| -rw-r--r-- | lisp/ChangeLog | 181 |
1 files changed, 174 insertions, 7 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0b384c6d8c3..2a402f88c01 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,170 @@ | |||
| 1 | 2006-05-03 Nick Roberts <nickrob@snap.net.nz> | ||
| 2 | |||
| 3 | * progmodes/gdb-ui.el (gud-watch): Let user select an expression. | ||
| 4 | (menu): Fix typo. | ||
| 5 | |||
| 6 | 2006-05-02 Miles Bader <miles@gnu.org> | ||
| 7 | |||
| 8 | * replace.el (occur-engine): Bind `inhibit-field-text-motion' to t. | ||
| 9 | |||
| 10 | 2006-05-02 Jay Belanger <belanger@truman.edu> | ||
| 11 | |||
| 12 | * calc/calc-embed.el: (calc-override-minor-modes-map) | ||
| 13 | (calc-override-minor-modes): New variables. | ||
| 14 | (calc-do-embedded): Make sure that Calc keystrokes aren't | ||
| 15 | overwritten by minor modes. | ||
| 16 | |||
| 17 | 2006-05-02 Chong Yidong <cyd@mit.edu> | ||
| 18 | |||
| 19 | * msb.el (msb): If EVENT is a down event, read and discard the up | ||
| 20 | event. | ||
| 21 | |||
| 22 | 2006-05-02 Reiner Steib <Reiner.Steib@gmx.de> | ||
| 23 | |||
| 24 | * startup.el (command-line-1): Refer to Lisp manual when | ||
| 25 | pure-space-overflow occurs. | ||
| 26 | |||
| 27 | * files.el (byte-compile-dynamic) | ||
| 28 | (byte-compile-dynamic-docstrings, byte-compile-warnings) | ||
| 29 | (find-file-visit-truename, indent-tabs-mode, left-margin) | ||
| 30 | (no-byte-compile no-update-autoloads, truncate-lines) | ||
| 31 | (version-control): Don't use `t' for safe-local-variable | ||
| 32 | declarations. | ||
| 33 | |||
| 34 | 2006-05-01 Richard Stallman <rms@gnu.org> | ||
| 35 | |||
| 36 | * diff-mode.el (diff-mode-shared-map): Don't bind M-W, M-U, M-C, | ||
| 37 | M-r, M-R, M-A, M-SPC or M-DEL. | ||
| 38 | (diff-mode-map): diff-refine-hunk now on C-c C-w | ||
| 39 | (diff-mode-map): Bind C-c C-e, C-c C-n, C-c C-r, C-c C-u. | ||
| 40 | |||
| 41 | * help-mode.el (help-mode): view-exit-action calls delete-window | ||
| 42 | only when it is safe and possible. | ||
| 43 | |||
| 44 | * simple.el (undo-outer-limit-truncate): Put quotes around buffer name | ||
| 45 | in messages. | ||
| 46 | |||
| 47 | * emacs-lisp/warnings.el (display-warning, lwarn): Doc fixes. | ||
| 48 | |||
| 49 | * tool-bar.el (tool-bar-setup): Put Help and Preferences items | ||
| 50 | in the default tool-bar-map. | ||
| 51 | |||
| 52 | 2006-05-01 Michael Albinus <michael.albinus@gmx.de> | ||
| 53 | |||
| 54 | * net/tramp.el (tramp-completion-file-name-handler-alist) | ||
| 55 | (tramp-run-real-handler, tramp-completion-run-real-handler) | ||
| 56 | (tramp-completion-handle-file-name-all-completions) | ||
| 57 | (tramp-completion-handle-file-name-completion): Autoload them. | ||
| 58 | (tramp-completion-handle-file-exists-p) | ||
| 59 | (tramp-completion-handle-file-name-directory) | ||
| 60 | (tramp-completion-handle-file-name-nondirectory) | ||
| 61 | (tramp-completion-handle-expand-file-name): Remove them. | ||
| 62 | (tramp-handle-file-name-directory): Return the real directory name. | ||
| 63 | Returning "/" only doesn't need to be necessary any longer. | ||
| 64 | (tramp-file-name-handler): Make special attention when in hostname | ||
| 65 | completion mode. | ||
| 66 | (tramp-completion-file-name-handler): Revert patch from 2006-04-28. | ||
| 67 | (tramp-register-file-name-handlers): Register | ||
| 68 | `tramp-completion-file-name-handler' only when | ||
| 69 | `partial-completion-mode is enabled. | ||
| 70 | (tramp-completion-handle-file-name-all-completions): | ||
| 71 | Delete directory part from results. | ||
| 72 | (tramp-get-completion-methods, tramp-get-completion-user-host): | ||
| 73 | Discard deleting "/", it doesn't work after the change of | ||
| 74 | `tramp-handle-file-name-directory' above. | ||
| 75 | |||
| 76 | 2006-05-01 Kim F. Storm <storm@cua.dk> | ||
| 77 | |||
| 78 | * progmodes/grep.el (grep-expand-template): Use save-match-data | ||
| 79 | and symbol-value. | ||
| 80 | |||
| 81 | 2006-05-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 82 | |||
| 83 | * term/mac-win.el (mac-ae-open-documents, mac-drag-n-drop): Use | ||
| 84 | select-frame-set-input-focus instead of raise-frame. | ||
| 85 | (global-map): Bind M-drag-n-drop to mac-drag-n-drop. | ||
| 86 | |||
| 87 | 2006-05-01 Nick Roberts <nickrob@snap.net.nz> | ||
| 88 | |||
| 89 | * progmodes/gud.el (gud-def): Add %c case. | ||
| 90 | (gud-speedbar-buttons): Don't bind case-fold-search unnecessarily. | ||
| 91 | (gud-format-command): Make match case sensitive. Match on %F. | ||
| 92 | |||
| 93 | 2006-04-30 Glenn Morris <rgm@gnu.org> | ||
| 94 | |||
| 95 | * calendar/cal-tex.el (cal-tex-preamble-extra): New variable. | ||
| 96 | (cal-tex-preamble): Use cal-tex-preamble-extra. | ||
| 97 | (cal-tex-list-diary-entries): Refer to `diary-list-entries' rather | ||
| 98 | than alias `list-diary-entries'. | ||
| 99 | |||
| 100 | 2006-04-29 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 101 | |||
| 102 | * help-fns.el (describe-variable): Add info about safe local variables. | ||
| 103 | |||
| 104 | 2006-04-29 Richard Stallman <rms@gnu.org> | ||
| 105 | |||
| 106 | * bindings.el (mode-line-format): help-echo doc fixes. | ||
| 107 | |||
| 108 | * net/tramp.el (tramp-file-name-handler-alist): Delete | ||
| 109 | expand-file-name and other operations that can cause spurious loading. | ||
| 110 | |||
| 111 | 2006-04-29 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 112 | |||
| 113 | * files.el (safe-local-variable-p): Remove support for the special | ||
| 114 | value t. | ||
| 115 | |||
| 116 | * textmodes/paragraphs.el (sentence-end-without-space): | ||
| 117 | Fix safety predicate. | ||
| 118 | (sentence-end-double-space, sentence-end-without-period) | ||
| 119 | (paragraph-ignore-fill-prefix): | ||
| 120 | * textmodes/fill.el (colon-double-space): | ||
| 121 | * abbrev.el (abbrev-mode): Tighten the safety predicate. | ||
| 122 | |||
| 123 | * subr.el (booleanp): New fun. | ||
| 124 | |||
| 125 | * textmodes/reftex-vars.el (reftex-guess-label-type): | ||
| 126 | Tighten the safety predicate. | ||
| 127 | |||
| 128 | 2006-04-28 Kim F. Storm <storm@cua.dk> | ||
| 129 | |||
| 130 | * progmodes/grep.el (defgroup grep): Doc fix. | ||
| 131 | (grep-auto-highlight): Remove. | ||
| 132 | (grep-template): New defcustom. | ||
| 133 | (grep-find-template): Rename from grep-tree-template. | ||
| 134 | (grep-files-aliases): Rename from grep-tree-files-aliases. | ||
| 135 | Remove "all" alias, add "l" alias. | ||
| 136 | (grep-tree-ignore-case, grep-tree-ignore-CVS-directories): Remove. | ||
| 137 | (grep-find-ignored-directories): New defcustom to replace | ||
| 138 | grep-tree-ignore-CVS-directories, to facilitate ignoring | ||
| 139 | subdirectories for multiple version control systems. | ||
| 140 | (grep-mode-map): Add Recursive grep item to GREP menu. | ||
| 141 | (grep-regexp-history, grep-files-history): New defvars. | ||
| 142 | (grep-probe): New helper function. | ||
| 143 | (grep-compute-defaults): Use it to simplify code. | ||
| 144 | Adapt to name changes. | ||
| 145 | Use `.' as base in grep-find-template rather than <D>. | ||
| 146 | (grep): Remove superfluous highlight-regexp arg. Fix doc. | ||
| 147 | Call grep-compute-defaults unconditionally. | ||
| 148 | (grep-expand-keywords): New defconst. | ||
| 149 | (grep-expand-template): Rename from grep-expand-command-macros. | ||
| 150 | Simplify via grep-expand-keywords. Look at case-fold-search instead | ||
| 151 | of grep-tree-ignore-case to add -i option. | ||
| 152 | Bind case-fold-search to nil while matching keywords. | ||
| 153 | (grep-tree-last-regexp, grep-tree-last-files): Remove. | ||
| 154 | (grep-read-regexp, grep-read-files): New helper functions. | ||
| 155 | (rgrep): Rename from grep-tree. Rework to use proper histories. | ||
| 156 | Adapt to changes in defcustoms and functions above. | ||
| 157 | (lgrep): New command, as grep, but using same interactive UI as rgrep. | ||
| 158 | |||
| 159 | 2006-04-28 Michael Albinus <michael.albinus@gmx.de> | ||
| 160 | |||
| 161 | * net/tramp.el (tramp-completion-file-name-handler): | ||
| 162 | Disable Tramp's functionality while loading Tramp itself. | ||
| 163 | (tramp-register-file-name-handlers): That's a defsubst now. | ||
| 164 | Code from `tramp-repair-jka-compr' moved here. Apply it via | ||
| 165 | `after-init-hook'. | ||
| 166 | (tramp-repair-jka-compr): Remove. | ||
| 167 | |||
| 1 | 2006-04-27 Jay Belanger <belanger@truman.edu> | 168 | 2006-04-27 Jay Belanger <belanger@truman.edu> |
| 2 | 169 | ||
| 3 | * calc-embed.el (calc-embedded-make-info): Use `math-read-expr' to | 170 | * calc-embed.el (calc-embedded-make-info): Use `math-read-expr' to |
| @@ -2598,7 +2765,7 @@ | |||
| 2598 | (describe-key-briefly-internal, describe-key-internal): | 2765 | (describe-key-briefly-internal, describe-key-internal): |
| 2599 | Functions merged back into their callers. | 2766 | Functions merged back into their callers. |
| 2600 | 2767 | ||
| 2601 | 2006-02-13 Martin Rudalics <rudalics@gmx.at> (tiny change) | 2768 | 2006-02-13 Martin Rudalics <rudalics@gmx.at> |
| 2602 | 2769 | ||
| 2603 | * info.el (info-xref-visited): Inherit from info-xref too. | 2770 | * info.el (info-xref-visited): Inherit from info-xref too. |
| 2604 | (Info-set-mode-line): Replace occurrences of `%' by `%%' | 2771 | (Info-set-mode-line): Replace occurrences of `%' by `%%' |
| @@ -3746,7 +3913,7 @@ | |||
| 3746 | * add-log.el (add-change-log-entry, change-log-merge): | 3913 | * add-log.el (add-change-log-entry, change-log-merge): |
| 3747 | Conditionally use `hard-newline'. | 3914 | Conditionally use `hard-newline'. |
| 3748 | 3915 | ||
| 3749 | 2006-01-13 Martin Rudalics <rudalics@gmx.at> (tiny change) | 3916 | 2006-01-13 Martin Rudalics <rudalics@gmx.at> |
| 3750 | 3917 | ||
| 3751 | * wid-edit.el (widget-field-end): If the overlay is no longer | 3918 | * wid-edit.el (widget-field-end): If the overlay is no longer |
| 3752 | associated with a buffer, behave as if the overlay didn't exist. | 3919 | associated with a buffer, behave as if the overlay didn't exist. |
| @@ -4836,7 +5003,7 @@ | |||
| 4836 | * emacs-lisp/edebug.el (edebug-safe-prin1-to-string): | 5003 | * emacs-lisp/edebug.el (edebug-safe-prin1-to-string): |
| 4837 | Capture error from printing circular structures. | 5004 | Capture error from printing circular structures. |
| 4838 | 5005 | ||
| 4839 | 2005-12-17 Martin Rudalics <rudalics@gmx.at> (tiny change) | 5006 | 2005-12-17 Martin Rudalics <rudalics@gmx.at> |
| 4840 | 5007 | ||
| 4841 | * wid-edit.el (widget-checkbox-action): Clear undo info. | 5008 | * wid-edit.el (widget-checkbox-action): Clear undo info. |
| 4842 | 5009 | ||
| @@ -6819,7 +6986,7 @@ | |||
| 6819 | scrolling the help window. Doc fix. | 6986 | scrolling the help window. Doc fix. |
| 6820 | (help-return-method): Doc fix. | 6987 | (help-return-method): Doc fix. |
| 6821 | 6988 | ||
| 6822 | 2005-12-03 Martin Rudalics <rudalics@gmx.at> (tiny change) | 6989 | 2005-12-03 Martin Rudalics <rudalics@gmx.at> |
| 6823 | 6990 | ||
| 6824 | * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): Fix bug | 6991 | * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): Fix bug |
| 6825 | whereby names of length one or names starting with a | 6992 | whereby names of length one or names starting with a |
| @@ -7373,7 +7540,7 @@ | |||
| 7373 | 7540 | ||
| 7374 | * custom.el (defcustom): Update link types in docstring. | 7541 | * custom.el (defcustom): Update link types in docstring. |
| 7375 | 7542 | ||
| 7376 | 2005-11-20 Martin Rudalics <rudalics@gmx.at> (tiny change) | 7543 | 2005-11-20 Martin Rudalics <rudalics@gmx.at> |
| 7377 | 7544 | ||
| 7378 | * custom.el (defgroup): Add doc-string-elt info. | 7545 | * custom.el (defgroup): Add doc-string-elt info. |
| 7379 | 7546 | ||
| @@ -7646,7 +7813,7 @@ | |||
| 7646 | 7813 | ||
| 7647 | * apropos.el (apropos-calc-scores): Use apropos-pattern. | 7814 | * apropos.el (apropos-calc-scores): Use apropos-pattern. |
| 7648 | 7815 | ||
| 7649 | 2005-11-16 Martin Rudalics <rudalics@gmx.at> (tiny change) | 7816 | 2005-11-16 Martin Rudalics <rudalics@gmx.at> |
| 7650 | 7817 | ||
| 7651 | * wid-edit.el (color): Enclose %t in %{...%}. | 7818 | * wid-edit.el (color): Enclose %t in %{...%}. |
| 7652 | 7819 | ||
| @@ -14577,7 +14744,7 @@ | |||
| 14577 | * emulation/edt-mapper.el (edt-save-function-key-map) | 14744 | * emulation/edt-mapper.el (edt-save-function-key-map) |
| 14578 | (EDT-key-name): `defvar' to silence the byte-compiler. | 14745 | (EDT-key-name): `defvar' to silence the byte-compiler. |
| 14579 | 14746 | ||
| 14580 | 2005-07-02 Martin Rudalics <rudalics@gmx.at> (tiny change) | 14747 | 2005-07-02 Martin Rudalics <rudalics@gmx.at> |
| 14581 | 14748 | ||
| 14582 | * font-lock.el (font-lock-regexp-grouping-backslash): Rename from | 14749 | * font-lock.el (font-lock-regexp-grouping-backslash): Rename from |
| 14583 | font-lock-regexp-backslash. Doc fix. | 14750 | font-lock-regexp-backslash. Doc fix. |