diff options
| author | Richard M. Stallman | 2003-01-06 01:28:25 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2003-01-06 01:28:25 +0000 |
| commit | 8c6d74c642654d3f15b225ed6ed9e8dbfbb14ef9 (patch) | |
| tree | 4db22dc48309dffb9b30fb44257b9f0a002f5dab | |
| parent | 135f293b2a0bf4fac7afd802618ccc5c84f2c5d9 (diff) | |
| download | emacs-8c6d74c642654d3f15b225ed6ed9e8dbfbb14ef9.tar.gz emacs-8c6d74c642654d3f15b225ed6ed9e8dbfbb14ef9.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 41 | ||||
| -rw-r--r-- | src/ChangeLog | 49 |
2 files changed, 84 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0255264eda1..bd19d2ced47 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,13 +1,41 @@ | |||
| 1 | 2003-01-05 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * isearch.el (isearch-repeat): Error if try to repeat search and | ||
| 4 | there was no previou search. | ||
| 5 | |||
| 6 | * dired.el (dired-recursive-deletes): Fix custom type. | ||
| 7 | |||
| 8 | * dabbrev.el (dabbrev--substitute-expansion): | ||
| 9 | Convert all whitespace to single spaces, | ||
| 10 | except when it's carried over from the existing text. | ||
| 11 | |||
| 12 | * simple.el (split-line): Clean up implementation. | ||
| 13 | |||
| 14 | * mail/rmail.el (rmail-font-lock-keywords): Discard code to match both cases. | ||
| 15 | (rmail-variables): Specify case-insensitive matching for font-lock. | ||
| 16 | |||
| 17 | 2003-01-05 Alexander Pohoyda <alexander.pohoyda@gmx.net> (tiny change) | ||
| 18 | |||
| 19 | * mail/sendmail.el (mail-font-lock-keywords): Match multiline In-Reply-To and X-*. | ||
| 20 | * mail/rmail.el (rmail-font-lock-keywords): Match multiline In-Reply-To and X-*. | ||
| 21 | |||
| 22 | 2003-01-05 Mark A. Hershberger <mah@everybody.org> | ||
| 23 | |||
| 24 | * xml.el (xml-substitute-special): Check for & last. | ||
| 25 | |||
| 1 | 2003-01-05 Dave Love <fx@gnu.org> | 26 | 2003-01-05 Dave Love <fx@gnu.org> |
| 2 | 27 | ||
| 3 | * buff-menu.el (Buffer-menu-execute): Fix for effect of header | 28 | * buff-menu.el (Buffer-menu-execute): Fix previous change. |
| 4 | line. | 29 | |
| 30 | 2003-01-05 Benjamin Riefenstahl <Benjamin.Riefenstahl@epost.de> (tiny change) | ||
| 31 | |||
| 32 | * buff-menu.el (Buffer-menu-execute): Allow for Buffer-menu-use-header-line. | ||
| 33 | |||
| 34 | 2003-01-05 Dave Love <fx@gnu.org> | ||
| 5 | 35 | ||
| 6 | * international/mule-diag.el (non-iso-charset-alist): Add | 36 | * international/mule-diag.el (non-iso-charset-alist): Add vietnamese-tcvn. |
| 7 | vietnamese-tcvn. | ||
| 8 | 37 | ||
| 9 | * international/mule-cmds.el (locale-language-names): Use | 38 | * international/mule-cmds.el (locale-language-names): Use Croatian, Swedish. |
| 10 | Croatian, Swedish. | ||
| 11 | 39 | ||
| 12 | 2003-01-05 Andreas Schwab <schwab@suse.de> | 40 | 2003-01-05 Andreas Schwab <schwab@suse.de> |
| 13 | 41 | ||
| @@ -97,6 +125,7 @@ | |||
| 97 | * emacs-lisp/eldoc.el (eldoc-get-var-docstring): Only return a | 125 | * emacs-lisp/eldoc.el (eldoc-get-var-docstring): Only return a |
| 98 | documentation string when `sym' is non-nil. | 126 | documentation string when `sym' is non-nil. |
| 99 | 127 | ||
| 128 | >>>>>>> 1.4686 | ||
| 100 | 2003-01-02 Steven Tamm <steventamm@mac.com> | 129 | 2003-01-02 Steven Tamm <steventamm@mac.com> |
| 101 | 130 | ||
| 102 | * scroll-bar.el (toggle-scroll-bar, scroll-bar-mode): Have | 131 | * scroll-bar.el (toggle-scroll-bar, scroll-bar-mode): Have |
diff --git a/src/ChangeLog b/src/ChangeLog index b4d5cb9397b..6b0dc079679 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,52 @@ | |||
| 1 | 2003-01-05 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * xdisp.c (try_scrolling): New arg LAST_LINE_MISFIT. | ||
| 4 | Count LAST_LINE_MISFIT in scroll margin for end of window. | ||
| 5 | Move label too_near_end before setting SCROLL_MARGIN_POS. | ||
| 6 | Set LAST_LINE_MISFIT before jumping there. | ||
| 7 | |||
| 8 | * xdisp.c (try_scrolling): Calculate amount_to_scroll better in | ||
| 9 | scroll_conservatively case. If scrolling that much doesn't change | ||
| 10 | STARTP, move it down one line. | ||
| 11 | |||
| 12 | * xdisp.c (redisplay_window): Pass last_line_misfit arg to try_scrolling. | ||
| 13 | Make it 1 after make_cursor_line_fully_visible fails. | ||
| 14 | |||
| 15 | * xdisp.c (setup_echo_area_for_printing): Kill Emacs if no selected frame. | ||
| 16 | |||
| 17 | * keymap.c (apropos_predicate, apropos_accumulate): Make them static. | ||
| 18 | (syms_of_keymap): staticpro them. | ||
| 19 | (Fapropos_internal): Initialize them and clear them out. | ||
| 20 | Don't GCPRO them. | ||
| 21 | |||
| 22 | * buffer.c (syms_of_buffer) <scroll-up-aggressively, scroll-down-aggressively>: | ||
| 23 | Doc fixes. | ||
| 24 | |||
| 25 | * lisp.h: New misc type Lisp_Save_Value. | ||
| 26 | (enum Lisp_Misc_Type): Add Lisp_Misc_Save_Value. | ||
| 27 | (XSAVE_VALUE): New macro. | ||
| 28 | (struct Lisp_Save_Value): New data type. | ||
| 29 | (union Lisp_Misc): Add u_save_value alternative. | ||
| 30 | (make_save_value): Declared. | ||
| 31 | |||
| 32 | * alloc.c (make_save_value): New function. | ||
| 33 | |||
| 34 | * xterm.c (x_catch_errors): Save dpy using make_save_value. | ||
| 35 | (x_catch_errors_unwind): Call XSync. | ||
| 36 | |||
| 37 | 2003-01-01 Richard M. Stallman <rms@gnu.org> | ||
| 38 | |||
| 39 | * window.c (window_scroll_pixel_based): Partially undo last change. | ||
| 40 | |||
| 41 | * keyboard.c (command_loop_1): Call adjust_point_for_property | ||
| 42 | in direct action cases for Qforward_char and Qbackward_char. | ||
| 43 | Set already_adjusted so it won't be done twice. | ||
| 44 | |||
| 45 | 2002-12-30 Richard Dawe <rich@phekda.freeserve.co.uk> (tiny change) | ||
| 46 | |||
| 47 | * src/config.in (!HAVE_SIZE_T): Fix order of arguments in | ||
| 48 | type definition of size_t. | ||
| 49 | |||
| 1 | 2003-01-02 Steven Tamm <steventamm@mac.com> | 50 | 2003-01-02 Steven Tamm <steventamm@mac.com> |
| 2 | 51 | ||
| 3 | * macterm.c (syms_of_macterm): Provide the feature "mac-carbon" to | 52 | * macterm.c (syms_of_macterm): Provide the feature "mac-carbon" to |