diff options
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 192 |
1 files changed, 166 insertions, 26 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index b9bb573b326..4a48e9ac452 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,143 @@ | |||
| 1 | 2006-01-28 Luc Teirlinck <teirllm@auburn.edu> | ||
| 2 | |||
| 3 | * data.c (Fcar, Fcdr): Add links to Elisp manual to the docstrings. | ||
| 4 | |||
| 5 | 2006-01-27 Chong Yidong <cyd@stupidchicken.com> | ||
| 6 | |||
| 7 | * alloc.c (make_interval, allocate_string) | ||
| 8 | (allocate_string_data, make_float, Fcons, allocate_vectorlike) | ||
| 9 | (Fmake_symbol, allocate_misc): Use BLOCK_INPUT when accessing | ||
| 10 | global variables. | ||
| 11 | |||
| 12 | 2006-01-27 Eli Zaretskii <eliz@gnu.org> | ||
| 13 | |||
| 14 | * dired.c (DIRENTRY_NONEMPTY) [__CYGWIN__]: Don't use d_ino; use | ||
| 15 | the MSDOS definition. | ||
| 16 | |||
| 17 | 2006-01-26 Richard M. Stallman <rms@gnu.org> | ||
| 18 | |||
| 19 | * alloc.c (check_pure_size): Make overflow message an "error message". | ||
| 20 | |||
| 21 | * keymap.c (Fmap_keymap): Doc fix. | ||
| 22 | |||
| 23 | * xfns.c (Fx_create_frame): Put all specified parms into f->param_alist | ||
| 24 | unless they were cleared out. | ||
| 25 | |||
| 26 | * frame.c (x_get_arg): "Clear out" the parm in ALIST if found there. | ||
| 27 | |||
| 28 | 2006-01-26 L$,1 q(Brentey K,Aa(Broly <lorentey@elte.hu> | ||
| 29 | |||
| 30 | * editfns.c (Fconstrain_to_field): Fix behaviour on field boundaries. | ||
| 31 | (find_field): Set before_field to after_field when pos is at BEGV. | ||
| 32 | (Fline_beginning_position, Fline_end_position): Clarify | ||
| 33 | confusing doc string. | ||
| 34 | |||
| 35 | * cmds.c (Fbeginning_of_line, Fend_of_line): Clarify confusing doc | ||
| 36 | string. | ||
| 37 | |||
| 38 | 2006-01-26 Kenichi Handa <handa@m17n.org> | ||
| 39 | |||
| 40 | * callproc.c (Fcall_process): GCPRO error_file. Encode infile, | ||
| 41 | current_dir, and error_file. On reporting an error, decode them | ||
| 42 | back. | ||
| 43 | |||
| 44 | 2006-01-24 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 45 | |||
| 46 | * regex.c (IMMEDIATE_QUIT_CHECK): Use it with SYNC_INPUT as well. | ||
| 47 | (re_match_2_internal) <on_failure_jump, on_failure_jump_smart>: | ||
| 48 | Don't check for quit, since any loop will go through fail or jump. | ||
| 49 | |||
| 50 | 2006-01-24 Chong Yidong <cyd@stupidchicken.com> | ||
| 51 | |||
| 52 | * alloc.c (allocate_string_data): Update next_free immediately, to | ||
| 53 | reduce risk of memory clobberage. | ||
| 54 | |||
| 55 | 2006-01-24 L$,1 q(Brentey K,Aa(Broly <lorentey@elte.hu> | ||
| 56 | |||
| 57 | * xdisp.c (handle_invisible_prop): Set it->position to fix cursor | ||
| 58 | display when point moves across an ellipsis. If there are | ||
| 59 | adjacent invisible texts, don't lose the second one's ellipsis. | ||
| 60 | (x_produce_glyphs): Doc fix. | ||
| 61 | |||
| 62 | 2006-01-23 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 63 | |||
| 64 | * xterm.c (x_catch_errors_unwind): Yet another int/Lisp_Object mixup. | ||
| 65 | |||
| 66 | 2006-01-23 Kim F. Storm <storm@cua.dk> | ||
| 67 | |||
| 68 | * xdisp.c (handle_single_display_spec): Fix handling of space | ||
| 69 | property on char from string: set *position rather than | ||
| 70 | it->current.pos. | ||
| 71 | (produce_stretch_glyph): Reduce width of stretch glyphs so they | ||
| 72 | don't get wider than the window (unless truncate-lines is on). | ||
| 73 | |||
| 74 | 2006-01-22 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 75 | |||
| 76 | * xterm.c: Avoid allocating Lisp data from a signal handler. | ||
| 77 | (x_error_message): New var to replace x_error_message_string. | ||
| 78 | (x_error_catcher, x_catch_errors, x_catch_errors_unwind) | ||
| 79 | (x_check_errors, x_had_errors_p, x_clear_errors, x_error_handler) | ||
| 80 | (syms_of_xterm): Use it instead of x_error_message_string. | ||
| 81 | |||
| 82 | * alloc.c (lisp_align_free): Add an assertion. | ||
| 83 | (make_interval, allocate_string, make_float, Fcons, Fmake_symbol) | ||
| 84 | (allocate_misc): If ENABLE_CHECKING is on, check we're not called from | ||
| 85 | a signal handler. | ||
| 86 | |||
| 87 | 2006-01-21 Luc Teirlinck <teirllm@auburn.edu> | ||
| 88 | |||
| 89 | * dired.c (syms_of_dired) <completion-ignored-extensions>: Doc fix. | ||
| 90 | |||
| 91 | 2006-01-21 Romain Francoise <romain@orebokech.com> | ||
| 92 | |||
| 93 | * xdisp.c (get_window_cursor_type): Fix last change. | ||
| 94 | Update copyright year. | ||
| 95 | |||
| 96 | 2006-01-20 Eli Zaretskii <eliz@gnu.org> | ||
| 97 | |||
| 98 | * lread.c (Fload): Don't leak the file descriptor returned by | ||
| 99 | openp if we are going to signal an error. | ||
| 100 | |||
| 101 | * w32.c (sys_close): If FD is outside [0..MAXDESC) limits, pass it | ||
| 102 | directly to _close. | ||
| 103 | (sys_dup): Protect against new_fd larger than fd_info[] can handle. | ||
| 104 | (sys_read): If FD is outside [0..MAXDESC) limits, pass it directly | ||
| 105 | to _read. | ||
| 106 | (sys_write): If FD is outside [0..MAXDESC) limits, pass it | ||
| 107 | directly to _write. | ||
| 108 | |||
| 109 | * .gdbinit: Don't dereference Vsystem_type's Lisp_Symbol pointer | ||
| 110 | if it is NULL. | ||
| 111 | |||
| 112 | 2006-01-20 Kenichi Handa <handa@m17n.org> | ||
| 113 | |||
| 114 | * puresize.h (BASE_PURESIZE): Increment to 1190000. | ||
| 115 | |||
| 116 | 2006-01-19 Chong Yidong <cyd@stupidchicken.com> | ||
| 117 | |||
| 118 | * xdisp.c (get_window_cursor_type): Use cursor type specified by | ||
| 119 | the selected buffer for the echo area too. | ||
| 120 | |||
| 121 | 2006-01-19 Richard M. Stallman <rms@gnu.org> | ||
| 122 | |||
| 123 | * keymap.c (Fmap_keymap): Doc fix. | ||
| 124 | |||
| 125 | * s/irix6-5.h (GC_SETJMP_WORKS, GC_MARK_STACK): New definitions. | ||
| 126 | |||
| 127 | * keyboard.c (echo_char): Don't omit the space between first two | ||
| 128 | echoed chars. | ||
| 129 | |||
| 130 | * minibuf.c (read_minibuf): Fix previous change. | ||
| 131 | |||
| 132 | 2006-01-19 Kenichi Handa <handa@m17n.org> | ||
| 133 | |||
| 134 | * xterm.c (handle_one_xevent): Handle keysyms 0x1000000..0x10000FF. | ||
| 135 | |||
| 136 | 2006-01-17 Richard M. Stallman <rms@gnu.org> | ||
| 137 | |||
| 138 | * frame.c (x_frame_get_and_record_arg): Don't record Qunbound | ||
| 139 | value in f->param_alist. | ||
| 140 | |||
| 1 | 2006-01-15 Andreas Schwab <schwab@suse.de> | 141 | 2006-01-15 Andreas Schwab <schwab@suse.de> |
| 2 | 142 | ||
| 3 | * search.c (Freplace_match): Use UPPERCASEP instead of !NOCASEP. | 143 | * search.c (Freplace_match): Use UPPERCASEP instead of !NOCASEP. |
| @@ -562,7 +702,7 @@ | |||
| 562 | * w32fns.c (w32_abort) [__GNUC__]: Add instructions for attaching | 702 | * w32fns.c (w32_abort) [__GNUC__]: Add instructions for attaching |
| 563 | GDB to the abort dialog. | 703 | GDB to the abort dialog. |
| 564 | 704 | ||
| 565 | 2005-12-09 Kyotaro HORIGUCHI <horiguti@meadowy.org> (tiny change) | 705 | 2005-12-09 Kyotaro HORIGUCHI <horiguti@meadowy.org> (tiny change) |
| 566 | 706 | ||
| 567 | * indent.c (Fvertical_motion): Force move if starting on | 707 | * indent.c (Fvertical_motion): Force move if starting on |
| 568 | stretch glyph. | 708 | stretch glyph. |
| @@ -816,7 +956,7 @@ | |||
| 816 | 956 | ||
| 817 | * s/darwin.h (LIBS_CARBON) [!HAVE_CARBON]: Remove `-framework Carbon'. | 957 | * s/darwin.h (LIBS_CARBON) [!HAVE_CARBON]: Remove `-framework Carbon'. |
| 818 | 958 | ||
| 819 | 2005-11-11 David Reitter <david.reitter@gmail.com> | 959 | 2005-11-11 David Reitter <david.reitter@gmail.com> |
| 820 | 960 | ||
| 821 | * macterm.c (syms_of_macterm): Remove macCtrlKey, macShiftKey, | 961 | * macterm.c (syms_of_macterm): Remove macCtrlKey, macShiftKey, |
| 822 | macMetaKey, macAltKey. Introduce Qctrl, Qmeta, | 962 | macMetaKey, macAltKey. Introduce Qctrl, Qmeta, |
| @@ -848,7 +988,7 @@ | |||
| 848 | ignore_overlay_strings_at_pos_p if dpvec came from an overlay | 988 | ignore_overlay_strings_at_pos_p if dpvec came from an overlay |
| 849 | string, so we skip those overlay strings at current pos. | 989 | string, so we skip those overlay strings at current pos. |
| 850 | 990 | ||
| 851 | 2005-11-10 Lars Hansen <larsh@soem.dk> | 991 | 2005-11-10 Lars Hansen <larsh@soem.dk> |
| 852 | 992 | ||
| 853 | * fileio.c (file-regular-p): Doc fix. | 993 | * fileio.c (file-regular-p): Doc fix. |
| 854 | 994 | ||
| @@ -959,7 +1099,7 @@ | |||
| 959 | 1099 | ||
| 960 | * xdisp.c (display_line): Restore it->current_x and call | 1100 | * xdisp.c (display_line): Restore it->current_x and call |
| 961 | extend_face_to_end_of_line when last glyph doesn't fit on line. | 1101 | extend_face_to_end_of_line when last glyph doesn't fit on line. |
| 962 | (set_glyph_string_background_width): Remove specific tests here | 1102 | (set_glyph_string_background_width): Remove specific tests here |
| 963 | to see if face background should extend to end of line. Simplify. | 1103 | to see if face background should extend to end of line. Simplify. |
| 964 | 1104 | ||
| 965 | 2005-10-30 Richard M. Stallman <rms@gnu.org> | 1105 | 2005-10-30 Richard M. Stallman <rms@gnu.org> |
| @@ -1561,7 +1701,7 @@ | |||
| 1561 | 1701 | ||
| 1562 | * dispextern.h (fatal): Delete prototype. | 1702 | * dispextern.h (fatal): Delete prototype. |
| 1563 | 1703 | ||
| 1564 | * systime.h: (make_time): Prototype moved from ... | 1704 | * systime.h (make_time): Prototype moved from ... |
| 1565 | * editfns.c (make_time): ... here. | 1705 | * editfns.c (make_time): ... here. |
| 1566 | 1706 | ||
| 1567 | * editfns.c: Move systime.h include after lisp.h. | 1707 | * editfns.c: Move systime.h include after lisp.h. |
| @@ -1795,9 +1935,9 @@ | |||
| 1795 | get_current_dir_name. | 1935 | get_current_dir_name. |
| 1796 | (get_current_dir_name): Remove prototype. | 1936 | (get_current_dir_name): Remove prototype. |
| 1797 | 1937 | ||
| 1798 | * xsmfns.c: (get_current_dir_name): Remove prototype. | 1938 | * xsmfns.c (get_current_dir_name): Remove prototype. |
| 1799 | 1939 | ||
| 1800 | * lisp.h: (get_current_dir_name) [!HAVE_GET_CURRENT_DIR_NAME]: | 1940 | * lisp.h (get_current_dir_name) [!HAVE_GET_CURRENT_DIR_NAME]: |
| 1801 | Add prototype. | 1941 | Add prototype. |
| 1802 | 1942 | ||
| 1803 | * sysdep.c [WINDOWSNT]: Add prototype for getwd. | 1943 | * sysdep.c [WINDOWSNT]: Add prototype for getwd. |
| @@ -2488,7 +2628,7 @@ | |||
| 2488 | 2628 | ||
| 2489 | * window.c (window_scroll_pixel_based, window_scroll_line_based): | 2629 | * window.c (window_scroll_pixel_based, window_scroll_line_based): |
| 2490 | Handle `scroll-preserve-screen-position' non-nil, non-t specially. | 2630 | Handle `scroll-preserve-screen-position' non-nil, non-t specially. |
| 2491 | (syms_of_window): <scroll-preserve-screen-position>: Doc fix. | 2631 | (syms_of_window) <scroll-preserve-screen-position>: Doc fix. |
| 2492 | 2632 | ||
| 2493 | 2005-07-02 Juri Linkov <juri@jurta.org> | 2633 | 2005-07-02 Juri Linkov <juri@jurta.org> |
| 2494 | 2634 | ||
| @@ -7116,7 +7256,7 @@ | |||
| 7116 | 7256 | ||
| 7117 | * config.in: Rebuild. | 7257 | * config.in: Rebuild. |
| 7118 | 7258 | ||
| 7119 | * Makefile.in: Run setarch i386 ./temacs if exec-shield is present. | 7259 | * Makefile.in: Run setarch i386 ./temacs if exec-shield is present. |
| 7120 | 7260 | ||
| 7121 | 2004-09-18 Stefan Monnier <monnier@iro.umontreal.ca> | 7261 | 2004-09-18 Stefan Monnier <monnier@iro.umontreal.ca> |
| 7122 | 7262 | ||
| @@ -7696,7 +7836,7 @@ | |||
| 7696 | 7836 | ||
| 7697 | * buffer.c (Fswitch_to_buffer, Fpop_to_buffer): Doc fixes. | 7837 | * buffer.c (Fswitch_to_buffer, Fpop_to_buffer): Doc fixes. |
| 7698 | 7838 | ||
| 7699 | * window.c (Fwindow_buffer, Fother_window, Fget_lru_window) | 7839 | * window.c (Fwindow_buffer, Fother_window, Fget_lru_window) |
| 7700 | (Fget_largest_window, Fget_buffer_window, Fdelete_windows_on) | 7840 | (Fget_largest_window, Fget_buffer_window, Fdelete_windows_on) |
| 7701 | (Freplace_buffer_in_windows, Fset_window_buffer) | 7841 | (Freplace_buffer_in_windows, Fset_window_buffer) |
| 7702 | (Fselect-window, Fdisplay-buffer, Fsplit_window): Doc fixes. | 7842 | (Fselect-window, Fdisplay-buffer, Fsplit_window): Doc fixes. |
| @@ -9349,7 +9489,7 @@ | |||
| 9349 | (parse_image_spec, image_spec_value, Fimage_size, Fimage_mask_p) | 9489 | (parse_image_spec, image_spec_value, Fimage_size, Fimage_mask_p) |
| 9350 | (make_image, free_image, prepare_image_for_display, image_ascent) | 9490 | (make_image, free_image, prepare_image_for_display, image_ascent) |
| 9351 | (four_corners_best, image_background, image_background_transparent) | 9491 | (four_corners_best, image_background, image_background_transparent) |
| 9352 | (x_clear_image_1, x_clear_image, x_alloc_image_color) | 9492 | (x_clear_image_1, x_clear_image, x_alloc_image_color) |
| 9353 | (make_image_cache, free_image_cache, clear_image_cache) | 9493 | (make_image_cache, free_image_cache, clear_image_cache) |
| 9354 | (Fclear_image_cache, postprocess_image, lookup_image, cache_image) | 9494 | (Fclear_image_cache, postprocess_image, lookup_image, cache_image) |
| 9355 | (forall_images_in_image_cache, x_create_x_image_and_pixmap) | 9495 | (forall_images_in_image_cache, x_create_x_image_and_pixmap) |
| @@ -9387,7 +9527,7 @@ | |||
| 9387 | (parse_image_spec, image_spec_value, Fimage_size, Fimage_mask_p) | 9527 | (parse_image_spec, image_spec_value, Fimage_size, Fimage_mask_p) |
| 9388 | (make_image, free_image, prepare_image_for_display, image_ascent) | 9528 | (make_image, free_image, prepare_image_for_display, image_ascent) |
| 9389 | (four_corners_best, image_background, image_background_transparent) | 9529 | (four_corners_best, image_background, image_background_transparent) |
| 9390 | (x_clear_image_1, x_clear_image, x_alloc_image_color) | 9530 | (x_clear_image_1, x_clear_image, x_alloc_image_color) |
| 9391 | (make_image_cache, free_image_cache, clear_image_cache) | 9531 | (make_image_cache, free_image_cache, clear_image_cache) |
| 9392 | (Fclear_image_cache, postprocess_image, lookup_image, cache_image) | 9532 | (Fclear_image_cache, postprocess_image, lookup_image, cache_image) |
| 9393 | (forall_images_in_image_cache, x_create_x_image_and_pixmap) | 9533 | (forall_images_in_image_cache, x_create_x_image_and_pixmap) |
| @@ -9419,7 +9559,7 @@ | |||
| 9419 | (parse_image_spec, image_spec_value, Fimage_size, Fimage_mask_p) | 9559 | (parse_image_spec, image_spec_value, Fimage_size, Fimage_mask_p) |
| 9420 | (make_image, free_image, prepare_image_for_display, image_ascent) | 9560 | (make_image, free_image, prepare_image_for_display, image_ascent) |
| 9421 | (four_corners_best, image_background, image_background_transparent) | 9561 | (four_corners_best, image_background, image_background_transparent) |
| 9422 | (x_clear_image_1, x_clear_image, x_alloc_image_color) | 9562 | (x_clear_image_1, x_clear_image, x_alloc_image_color) |
| 9423 | (make_image_cache, free_image_cache, clear_image_cache) | 9563 | (make_image_cache, free_image_cache, clear_image_cache) |
| 9424 | (Fclear_image_cache, postprocess_image, lookup_image, cache_image) | 9564 | (Fclear_image_cache, postprocess_image, lookup_image, cache_image) |
| 9425 | (forall_images_in_image_cache, x_create_x_image_and_pixmap) | 9565 | (forall_images_in_image_cache, x_create_x_image_and_pixmap) |
| @@ -9449,7 +9589,7 @@ | |||
| 9449 | (parse_image_spec, image_spec_value, Fimage_size, Fimage_mask_p) | 9589 | (parse_image_spec, image_spec_value, Fimage_size, Fimage_mask_p) |
| 9450 | (make_image, free_image, prepare_image_for_display, image_ascent) | 9590 | (make_image, free_image, prepare_image_for_display, image_ascent) |
| 9451 | (four_corners_best, image_background, image_background_transparent) | 9591 | (four_corners_best, image_background, image_background_transparent) |
| 9452 | (x_clear_image_1, x_clear_image, x_alloc_image_color) | 9592 | (x_clear_image_1, x_clear_image, x_alloc_image_color) |
| 9453 | (make_image_cache, free_image_cache, clear_image_cache) | 9593 | (make_image_cache, free_image_cache, clear_image_cache) |
| 9454 | (Fclear_image_cache, postprocess_image, lookup_image, cache_image) | 9594 | (Fclear_image_cache, postprocess_image, lookup_image, cache_image) |
| 9455 | (forall_images_in_image_cache, x_create_x_image_and_pixmap) | 9595 | (forall_images_in_image_cache, x_create_x_image_and_pixmap) |
| @@ -10224,7 +10364,7 @@ | |||
| 10224 | (Fx_change_window_property): Add declaration of parameters type and | 10364 | (Fx_change_window_property): Add declaration of parameters type and |
| 10225 | format. Remove unused variable cons. | 10365 | format. Remove unused variable cons. |
| 10226 | 10366 | ||
| 10227 | * xselect.c: Include stdio,h. | 10367 | * xselect.c: Include stdio.h. |
| 10228 | 10368 | ||
| 10229 | 2004-02-05 Kenichi Handa <handa@m17n.org> | 10369 | 2004-02-05 Kenichi Handa <handa@m17n.org> |
| 10230 | 10370 | ||
| @@ -11857,7 +11997,7 @@ | |||
| 11857 | 11997 | ||
| 11858 | 2003-07-13 Terje Rosten <terjeros@phys.ntnu.no> | 11998 | 2003-07-13 Terje Rosten <terjeros@phys.ntnu.no> |
| 11859 | 11999 | ||
| 11860 | * xterm.c (x_bitmap_icon,x_wm_set_icon_pixmap): Modify to add mask, | 12000 | * xterm.c (x_bitmap_icon, x_wm_set_icon_pixmap): Modify to add mask, |
| 11861 | and use the Gtk+ function gtk_window_icon_from_file if available. | 12001 | and use the Gtk+ function gtk_window_icon_from_file if available. |
| 11862 | 12002 | ||
| 11863 | * xfns.c (x_bitmap_mask, x_create_bitmap_mask): New functions to | 12003 | * xfns.c (x_bitmap_mask, x_create_bitmap_mask): New functions to |
| @@ -16436,7 +16576,7 @@ | |||
| 16436 | 2002-09-08 Kim F. Storm <storm@cua.dk> | 16576 | 2002-09-08 Kim F. Storm <storm@cua.dk> |
| 16437 | 16577 | ||
| 16438 | * macros.c (executing_macro_index): Change type to EMACS_INT. | 16578 | * macros.c (executing_macro_index): Change type to EMACS_INT. |
| 16439 | (syms_of_macros): DEFVAR_INT it (needed by kmacro). | 16579 | (syms_of_macros): DEFVAR_INT it (needed by kmacro). |
| 16440 | 16580 | ||
| 16441 | * macros.h (executing_macro_index): Change type to EMACS_INT. | 16581 | * macros.h (executing_macro_index): Change type to EMACS_INT. |
| 16442 | 16582 | ||
| @@ -18924,10 +19064,10 @@ | |||
| 18924 | Intern and staticpro QCtype and Qdatagram. | 19064 | Intern and staticpro QCtype and Qdatagram. |
| 18925 | (syms_of_process) [!subprocess]: Intern and staticpro QCtype. | 19065 | (syms_of_process) [!subprocess]: Intern and staticpro QCtype. |
| 18926 | 19066 | ||
| 18927 | * xfns.c: (QCtype): Remove duplicate declaration and | 19067 | * xfns.c (QCtype): Remove duplicate declaration and |
| 18928 | initialization (is now declared in process.c). | 19068 | initialization (is now declared in process.c). |
| 18929 | 19069 | ||
| 18930 | * w32fns.c: (QCtype): Remove duplicate declaration and | 19070 | * w32fns.c (QCtype): Remove duplicate declaration and |
| 18931 | initialization (is now declared in process.c). | 19071 | initialization (is now declared in process.c). |
| 18932 | 19072 | ||
| 18933 | 2002-03-21 Richard M. Stallman <rms@gnu.org> | 19073 | 2002-03-21 Richard M. Stallman <rms@gnu.org> |
| @@ -19042,7 +19182,7 @@ | |||
| 19042 | Doc fix: Member kill_without_query is inverse of query-on-exit flag. | 19182 | Doc fix: Member kill_without_query is inverse of query-on-exit flag. |
| 19043 | 19183 | ||
| 19044 | * process.c (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily) | 19184 | * process.c (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily) |
| 19045 | (QClocal, QCremote, QCserver, QCdatagram, QCnowait, QCnoquery,QCstop) | 19185 | (QClocal, QCremote, QCserver, QCdatagram, QCnowait, QCnoquery, QCstop) |
| 19046 | (QCcoding, QCoptions, QCfilter, QCsentinel, QClog, QCfeature): | 19186 | (QCcoding, QCoptions, QCfilter, QCsentinel, QClog, QCfeature): |
| 19047 | New variables. | 19187 | New variables. |
| 19048 | (NETCONN1_P): New macro. | 19188 | (NETCONN1_P): New macro. |
| @@ -19372,7 +19512,7 @@ | |||
| 19372 | 19512 | ||
| 19373 | 2002-02-28 Kim F. Storm <storm@cua.dk> | 19513 | 2002-02-28 Kim F. Storm <storm@cua.dk> |
| 19374 | 19514 | ||
| 19375 | * window.c: (minibuf_selected_window): Renamed from | 19515 | * window.c (minibuf_selected_window): Renamed from |
| 19376 | Vminibuf_selected_window. Users changed. | 19516 | Vminibuf_selected_window. Users changed. |
| 19377 | (syms_of_window): Staticpro it. | 19517 | (syms_of_window): Staticpro it. |
| 19378 | 19518 | ||
| @@ -19382,14 +19522,14 @@ | |||
| 19382 | which is similar to Vminibuf_scroll_window, but which is only set | 19522 | which is similar to Vminibuf_scroll_window, but which is only set |
| 19383 | on entry to the minibuffer (from a non-minibuffer window): | 19523 | on entry to the minibuffer (from a non-minibuffer window): |
| 19384 | 19524 | ||
| 19385 | * window.c: (Vminibuf_selected_window): New variable. | 19525 | * window.c (Vminibuf_selected_window): New variable. |
| 19386 | (struct save_window_data): New member minibuf_selected_window. | 19526 | (struct save_window_data): New member minibuf_selected_window. |
| 19387 | (Fset_window_configuration): Restore Vminibuf_selected_window. | 19527 | (Fset_window_configuration): Restore Vminibuf_selected_window. |
| 19388 | (Fcurrent_window_configuration): Save Vminibuf_selected_window. | 19528 | (Fcurrent_window_configuration): Save Vminibuf_selected_window. |
| 19389 | Set minibuf_scroll_window member to nil if minibuf_level is 0. | 19529 | Set minibuf_scroll_window member to nil if minibuf_level is 0. |
| 19390 | (compare_window_configurations): Compare minibuf_selected_window. | 19530 | (compare_window_configurations): Compare minibuf_selected_window. |
| 19391 | 19531 | ||
| 19392 | * window.h: (Vminibuf_selected_window): Declare extern. | 19532 | * window.h (Vminibuf_selected_window): Declare extern. |
| 19393 | 19533 | ||
| 19394 | * minibuf.c (read_minibuf): Set Vminibuf_selected_window on first | 19534 | * minibuf.c (read_minibuf): Set Vminibuf_selected_window on first |
| 19395 | entry to minibuffer or on entry from a non-minibuffer window. | 19535 | entry to minibuffer or on entry from a non-minibuffer window. |
| @@ -19515,7 +19655,7 @@ | |||
| 19515 | 19655 | ||
| 19516 | 2002-02-22 Eli Zaretskii <eliz@is.elta.co.il> | 19656 | 2002-02-22 Eli Zaretskii <eliz@is.elta.co.il> |
| 19517 | 19657 | ||
| 19518 | Support for ICCCM Extended Segments in X selections: | 19658 | Support for ICCCM Extended Segments in X selections: |
| 19519 | 19659 | ||
| 19520 | * xselect.c <Qcompound_text_no_extensions>: New variable. | 19660 | * xselect.c <Qcompound_text_no_extensions>: New variable. |
| 19521 | (syms_of_xselect): Intern and staticpro it. | 19661 | (syms_of_xselect): Intern and staticpro it. |
| @@ -19669,7 +19809,7 @@ | |||
| 19669 | 19809 | ||
| 19670 | 2002-02-13 Kim F. Storm <storm@cua.dk> | 19810 | 2002-02-13 Kim F. Storm <storm@cua.dk> |
| 19671 | 19811 | ||
| 19672 | * window.c: (Vmode_line_in_non_selected_windows): Removed. | 19812 | * window.c (Vmode_line_in_non_selected_windows): Removed. |
| 19673 | (mode_line_in_non_selected_windows): New variable. | 19813 | (mode_line_in_non_selected_windows): New variable. |
| 19674 | (syms_of_window): DEFVAR_BOOL it. | 19814 | (syms_of_window): DEFVAR_BOOL it. |
| 19675 | 19815 | ||
| @@ -19700,7 +19840,7 @@ | |||
| 19700 | 19840 | ||
| 19701 | 2002-02-11 Kim F. Storm <storm@cua.dk> | 19841 | 2002-02-11 Kim F. Storm <storm@cua.dk> |
| 19702 | 19842 | ||
| 19703 | * window.c: (Vmode_line_in_non_selected_windows): New variable. | 19843 | * window.c (Vmode_line_in_non_selected_windows): New variable. |
| 19704 | (syms_of_window): DEFVAR_LISP it. | 19844 | (syms_of_window): DEFVAR_LISP it. |
| 19705 | 19845 | ||
| 19706 | * dispextern.h (CURRENT_MODE_LINE_FACE_ID_3): New macro. | 19846 | * dispextern.h (CURRENT_MODE_LINE_FACE_ID_3): New macro. |