comparison src/ChangeLog @ 52622:22c63c3a5aa1

*** empty log message ***
author Stefan Monnier <monnier@iro.umontreal.ca>
date Thu, 25 Sep 2003 21:13:19 +0000
parents 35e847093f92
children 6b379676c592
comparison
equal deleted inserted replaced
52621:35e847093f92 52622:22c63c3a5aa1
14 setting option succeeds. 14 setting option succeeds.
15 (Fmake_network_process): Doc fix. 15 (Fmake_network_process): Doc fix.
16 16
17 2003-09-23 Dave Love <fx@gnu.org> 17 2003-09-23 Dave Love <fx@gnu.org>
18 18
19 * process.c (Fnetwork_interface_info): Use 19 * process.c (Fnetwork_interface_info): Use HAVE_STRUCT_IFREQ... macros.
20 HAVE_STRUCT_IFREQ... macros.
21 20
22 2003-09-22 Eli Zaretskii <eliz@elta.co.il> 21 2003-09-22 Eli Zaretskii <eliz@elta.co.il>
23 22
24 * term.c (set_tty_color_mode): Use INTEGERP to test whether a 23 * term.c (set_tty_color_mode): Use INTEGERP to test whether a
25 color mode is an integer number (it could be -1). 24 color mode is an integer number (it could be -1).
29 * intervals.c (graft_intervals_into_buffer): Correct the main loop 28 * intervals.c (graft_intervals_into_buffer): Correct the main loop
30 in the case where OVER is longer than UNDER. 29 in the case where OVER is longer than UNDER.
31 30
32 2003-09-22 Masatake YAMATO <jet@gyve.org> 31 2003-09-22 Masatake YAMATO <jet@gyve.org>
33 32
34 * window.c (Fset_window_scroll_bars): Validate the value of 33 * window.c (Fset_window_scroll_bars): Validate the value of
35 `vertical_type'. 34 `vertical_type'.
36 35
37 2003-09-21 Kim F. Storm <storm@cua.dk> 36 2003-09-21 Kim F. Storm <storm@cua.dk>
38 37
39 * frame.c (Vdefault_frame_scroll_bars): New variable. 38 * frame.c (Vdefault_frame_scroll_bars): New variable.
40 (x_set_vertical_scroll_bars): Use it instead of hardcoded values. 39 (x_set_vertical_scroll_bars): Use it instead of hardcoded values.
41 (syms_of_frame): DEFVAR_LISP it, and initialize according to 40 (syms_of_frame): DEFVAR_LISP it, and initialize according to
42 window-system default scroll bar position. 41 window-system default scroll bar position.
43 42
44 * window.c (Fwindow_scroll_bars): Doc fix. 43 * window.c (Fwindow_scroll_bars): Doc fix.
45
46 2003-09-19 Dave Love <fx@gnu.org>
47
48 * alloc.c (GC_MALLOC_CHECK): Move conditional undef after lisp.h.
49 44
50 2003-09-19 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> 45 2003-09-19 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
51 46
52 * xterm.c (x_set_offset): Take window manager decorations 47 * xterm.c (x_set_offset): Take window manager decorations
53 into account. 48 into account.
93 (socket_options): Add `:' prefix to option names. Add optbit field. 88 (socket_options): Add `:' prefix to option names. Add optbit field.
94 (set_socket_option): Remove no_error arg and special handling of s < 0. 89 (set_socket_option): Remove no_error arg and special handling of s < 0.
95 Return 1<<optbit for known option, 0 for unknown. 90 Return 1<<optbit for known option, 0 for unknown.
96 Do not interpret 0 as false for boolean option (only nil). 91 Do not interpret 0 as false for boolean option (only nil).
97 Pass failed option and value to report_file_error. 92 Pass failed option and value to report_file_error.
98 (Fset_network_process_options): Replaced by Fset_network_process_option. 93 (Fset_network_process_options): Replace by Fset_network_process_option.
99 (Fset_network_process_option): New function to set just one option. 94 (Fset_network_process_option): New function to set just one option.
100 (Fmake_network_process): Allow :coding arg to be a cons. 95 (Fmake_network_process): Allow :coding arg to be a cons.
101 Allow :server arg to be an integer specifying backlog size. 96 Allow :server arg to be an integer specifying backlog size.
102 Remove :options arg, and allow options to be specified directly 97 Remove :options arg, and allow options to be specified directly
103 as :KEY, VALUE pairs. Parse these options before binding socket. 98 as :KEY, VALUE pairs. Parse these options before binding socket.
118 * process.c [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h. 113 * process.c [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
119 (Fnetwork_interface_list, Fget_network_interface_info): New defuns. 114 (Fnetwork_interface_list, Fget_network_interface_info): New defuns.
120 (syms_of_process): Defsubr them. 115 (syms_of_process): Defsubr them.
121 116
122 * config.in: Regenerate. 117 * config.in: Regenerate.
123 118
119 2003-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
120
121 * m/sr2k.h (XMARKBIT, XUNMARK): Remove.
122 * m/news-r6.h (XUNMARK): Remove.
123 * m/mips.h (XUNMARK): Remove.
124 * m/mips-siemens.h (XUNMARK): Remove.
125 * m/iris4d.h (XUNMARK): Remove.
126 * m/hp800.h (XMARKBIT, XUNMARK): Remove.
127
124 2003-09-11 Stefan Monnier <monnier@iro.umontreal.ca> 128 2003-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
125 129
126 * lisp.h (VALBITS): Don't remove 1 for the markbit. 130 * lisp.h (VALBITS): Don't remove 1 for the markbit.
127 (union Lisp_Object): Use unsigned int for types. Remove markbit. 131 (union Lisp_Object): Use unsigned int for types. Remove markbit.
128 (MARKBIT): Remove 1 from VALBITS so we still use same old val. 132 (MARKBIT): Remove 1 from VALBITS so we still use same old val.