diff options
| author | Stefan Monnier | 2003-05-18 05:29:38 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2003-05-18 05:29:38 +0000 |
| commit | deca5d968dad902b234b36d021f47013a67fea8b (patch) | |
| tree | 383a04c5df24e2f2d6d8d1c5294355f9a5bea668 | |
| parent | 11810d78df92fdb95e0e802c339bf08899f419e4 (diff) | |
| download | emacs-deca5d968dad902b234b36d021f47013a67fea8b.tar.gz emacs-deca5d968dad902b234b36d021f47013a67fea8b.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 37 | ||||
| -rw-r--r-- | src/ChangeLog | 3 |
2 files changed, 36 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index fe339d528a8..c87c0ae04d9 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -3,10 +3,10 @@ | |||
| 3 | * gud.el (gdb): Define gud-nexti. | 3 | * gud.el (gdb): Define gud-nexti. |
| 4 | (gud-menu-map): Add gud-nexti to map. | 4 | (gud-menu-map): Add gud-nexti to map. |
| 5 | (gud-tool-bar-map): Add gud-nexti and gud-stepi to toolbar. | 5 | (gud-tool-bar-map): Add gud-nexti and gud-stepi to toolbar. |
| 6 | 6 | ||
| 7 | * toolbar/gud-stepi.xpm, toolbar/gud-stepi.pbm, | 7 | * toolbar/gud-stepi.xpm, toolbar/gud-stepi.pbm, |
| 8 | toolbar/gud-nexti.xpm, toolbar/gud-nexti.pbm: New icons for debugger. | 8 | toolbar/gud-nexti.xpm, toolbar/gud-nexti.pbm: New icons for debugger. |
| 9 | 9 | ||
| 10 | 2003-05-17 John Paul Wallington <jpw@gnu.org> | 10 | 2003-05-17 John Paul Wallington <jpw@gnu.org> |
| 11 | 11 | ||
| 12 | * international/ja-dic-cnv.el (skkdic-okuri-nasi-entries) | 12 | * international/ja-dic-cnv.el (skkdic-okuri-nasi-entries) |
| @@ -17,6 +17,36 @@ | |||
| 17 | 17 | ||
| 18 | 2003-05-17 Stefan Monnier <monnier@cs.yale.edu> | 18 | 2003-05-17 Stefan Monnier <monnier@cs.yale.edu> |
| 19 | 19 | ||
| 20 | * log-edit.el: Don't require vc.el anymore. | ||
| 21 | (log-edit-mode-map): Fold vc-log-mode-map into it. | ||
| 22 | (vc-log-mode-map): Redefine as an alias. | ||
| 23 | (vc-previous-comment): Don't widen. | ||
| 24 | (vc-comment-to-change-log): Don't redundantly set paragraph-separate. | ||
| 25 | Don't require `add-log' since it's already required at toplevel. | ||
| 26 | |||
| 27 | * vc.el (vc-log-mode-map, vc-maximum-comment-ring-size) | ||
| 28 | (vc-comment-ring, vc-comment-ring-index, vc-last-comment-match): | ||
| 29 | Move vars to log-edit.el. | ||
| 30 | (vc-new-comment-index, vc-previous-comment, vc-next-comment) | ||
| 31 | (vc-comment-search-reverse, vc-comment-search-forward) | ||
| 32 | (vc-comment-to-change-log): Move funs to log-edit.el. | ||
| 33 | (vc-clear-context): Don't empty the comment-ring. | ||
| 34 | (vc-finish-logentry): Don't add the comment onto the comment-ring. | ||
| 35 | |||
| 36 | * log-edit.el (vc-log-mode-map, vc-maximum-comment-ring-size) | ||
| 37 | (vc-comment-ring, vc-comment-ring-index, vc-last-comment-match): | ||
| 38 | Move vars from vc.el. | ||
| 39 | (vc-new-comment-index, vc-previous-comment, vc-next-comment) | ||
| 40 | (vc-comment-search-reverse, vc-comment-search-forward) | ||
| 41 | (vc-comment-to-change-log): Move funs from vc.el. | ||
| 42 | (log-edit-show-files): Remove unused var `editbuf'. | ||
| 43 | |||
| 44 | * progmodes/tcl.el (tcl-indent-exp): Remove dead code. | ||
| 45 | (tcl-tab-always-indent): Default to tab-always-indent. | ||
| 46 | |||
| 47 | * progmodes/perl-mode.el (perl-end-of-function): Remove unused var. | ||
| 48 | (perl-tab-always-indent): Default to tab-always-indent. | ||
| 49 | |||
| 20 | * which-func.el (which-func-format): Make it risky-local-variable. | 50 | * which-func.el (which-func-format): Make it risky-local-variable. |
| 21 | (which-func-table): New var. | 51 | (which-func-table): New var. |
| 22 | (which-func-current): Make it into a constant modeline spec. | 52 | (which-func-current): Make it into a constant modeline spec. |
| @@ -32,6 +62,7 @@ | |||
| 32 | (listify-key-sequence): Don't allocate unnecessarily. | 62 | (listify-key-sequence): Don't allocate unnecessarily. |
| 33 | (read-quoted-char): Allow up to base 36. | 63 | (read-quoted-char): Allow up to base 36. |
| 34 | (prepare-change-group): Remove unimplemented argument. | 64 | (prepare-change-group): Remove unimplemented argument. |
| 65 | (macro-declaration-function): Avoid `dolist' and `cadr'. | ||
| 35 | 66 | ||
| 36 | * wid-edit.el (pp-to-string, Info-goto-node): Don't autoload. | 67 | * wid-edit.el (pp-to-string, Info-goto-node): Don't autoload. |
| 37 | (widget-choose, widget-map-buttons): Use with-current-buffer. | 68 | (widget-choose, widget-map-buttons): Use with-current-buffer. |
diff --git a/src/ChangeLog b/src/ChangeLog index c6c89a01cc0..a51407e0f44 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2003-05-17 Stefan Monnier <monnier@cs.yale.edu> | 1 | 2003-05-17 Stefan Monnier <monnier@cs.yale.edu> |
| 2 | 2 | ||
| 3 | * lread.c (Fload): Print a message if package is obsolete. | ||
| 4 | |||
| 3 | * window.c (Fselect_window): Add optional `norecord' arg. | 5 | * window.c (Fselect_window): Add optional `norecord' arg. |
| 4 | (select_window_1): Fold into Fselect_window. | 6 | (select_window_1): Fold into Fselect_window. |
| 5 | (select_window_norecord): New function. | 7 | (select_window_norecord): New function. |
| @@ -78,7 +80,6 @@ | |||
| 78 | 2003-05-15 Stefan Monnier <monnier@cs.yale.edu> | 80 | 2003-05-15 Stefan Monnier <monnier@cs.yale.edu> |
| 79 | 81 | ||
| 80 | * keyboard.c (apply_modifiers): Don't fill the other cache. | 82 | * keyboard.c (apply_modifiers): Don't fill the other cache. |
| 81 | ======= end | ||
| 82 | 83 | ||
| 83 | 2003-05-14 Stefan Monnier <monnier@cs.yale.edu> | 84 | 2003-05-14 Stefan Monnier <monnier@cs.yale.edu> |
| 84 | 85 | ||