aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog195
1 files changed, 0 insertions, 195 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 2c2ab0041be..6c92bf7cd88 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,196 +1,3 @@
12003-09-03 Kim F. Storm <storm@cua.dk>
2
3 * xdisp.c (get_window_cursor_type): Partially undo 2002-03-01
4 change (superseded by 2002-08-30 change); the default blink-off
5 cursor is now again "no cursor".
6
72003-09-01 Jason Rumney <jasonr@gnu.org>
8
9 * makefile.w32-in (alloca.o): Remove.
10 (coding.o): Depend on intervals.h
11 (emacs.o, bytecode.o): Depend on window.h
12
132003-09-01 Dave Love <fx@gnu.org>
14
15 * Makefile.in (alloca.o): Remove commands.
16 (coding.o): Depend on intervals.h composite.h window.h.
17 (emacs.o): Depend on window.h keyboard.h keymap.h.
18 (gtkutil.o): Depend on keyboard.h charset.h coding.h.
19 (bytecode.o): Depend on window.h.
20
212003-08-31 Jason Rumney <jasonr@gnu.org>
22
23 * w32term.c (w32_per_char_metric): Allow cached metrics to be
24 returned even when font_type is unknown.
25
26 * xdisp.c (init_iterator): Remove old WINDOWSNT conditional.
27
282003-08-30 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
29
30 * xterm.c (x_term_init): Initialize new fields in x_display_info.
31
32 * xterm.h (struct x_display_info): Add red/green/blue_bits and
33 *_offset.
34
35 * xfns.c (lookup_rgb_color): Use new fields in x_display_info to
36 calculate pixel value.
37
382003-08-29 Gerd Moellmann <gerd.moellmann@t-online.de>
39
40 * xdisp.c (redisplay_internal): Fix change of 2003-04-30. Don't
41 tell redisplay display is accurate when it's actually been paused
42 for pending input.
43
442003-08-29 Richard M. Stallman <rms@gnu.org>
45
46 * dispnew.c (adjust_glyph_matrix): Call window_box
47 whenever W is nonzero.
48
49 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
50 (Fkill_local_variable, Fmake_variable_frame_local)
51 (Flocal_variable_p, Flocal_variable_if_set_p):
52 Use indirect_variable to trace thru variable aliases.
53
54 * config.in: Updated.
55
56 * callint.c (Fcall_interactively): Save and restore
57 Vthis_command, Vthis_original_command, real_this_command,
58 and current_kboard->Vlast_command.
59
60 * abbrev.c (Fexpand_abbrev): Insert before deleting.
61
622003-08-29 Gerd Moellmann <gerd@gnu.org>
63
64 * xfns.c (lookup_rgb_color): Handle TrueColor visuals specially.
65
662003-08-28 David Abrahams <dave@boost-consulting.com> (tiny change)
67
68 * coding.c (decode_coding_iso2022): Initialized local variable c2.
69 (decode_coding_sjis_big5): Likewise.
70
712003-08-27 Jason Rumney <jasonr@gnu.org>
72
73 * w32.c (sys_pipe): Protect against file descriptor overflow.
74
75 * w32fns.c (syms_of_w32fns): Remove non-existent functions.
76
77 * w32term.c (w32_read_socket): Fix WM_MOUSEWHEEL assignment.
78
792003-08-26 Terje Rosten <terjeros@phys.ntnu.no>
80
81 * xfns.c (Vgtk_version_string): New variable.
82 (syms_of_xfns): DEFVAR_LISP it. Provide gtk.
83
842003-08-24 Eli Zaretskii <eliz@elta.co.il>
85
86 * term.c (term_init): Remove `const' from buffer_size's
87 declaration.
88
89 * Makefile.in (msdos.o): Depend on intervals.h.
90
91 * msdos.c: Include intervals.h, since STRING_INTERVALS requires
92 that.
93
942003-08-21 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
95
96 * xterm.h (struct x_display_info): New fields: client_leader_window
97 and Xatom_wm_client_leader.
98
99 * xterm.c (x_initialize): Move call to x_session_initialize to ...
100 (x_term_init): ... here. Initialize client_leader fields in dpyinfo.
101
102 * xsmfns.c (create_client_leader_window): New function.
103 (x_session_initialize): Call create_client_leader_window, take
104 dpyinfo as argument.
105
106 * xfns.c (Fx_create_frame): Set property WM_CLIENT_LEADER.
107
108 * Makefile.in (xsmfns.o): Add more depenedencies.
109
1102003-08-21 Dave Love <fx@gnu.org>
111
112 * m/iris4d.h: Use _MIPS_SZLONG, not _LP64.
113
1142003-08-21 Kenichi Handa <handa@m17n.org>
115
116 * term.c (term_init): Fix previous change; don't rely on the
117 length of `buffer' if TERMINFO is defined.
118
1192003-08-20 Dave Love <fx@gnu.org>
120
121 * atimer.h: Include lisp.h.
122
123 * lisp.h (EMACS_LISP_H): New.
124 (popup_activated_flag): Don't declare.
125
126 * alloca.c: Some merging with gnulib. Change logic and doc
127 concerning (x)malloc/(x)free -- no longer Emacs-specific.
128 [DO_BLOCK_INPUT]: Don't include lisp.h.
129 (xmalloc, xfree): Declare.
130 (malloc): Don't declare.
131
132 * Makefile.in (LWLIB_OPTIONS): Removed (unused).
133 (alloca.o): Remove obsolete stuff concerning alloca.s. Depend on
134 atimer.h, blockinput.h.
135
136 * alloc.c (lisp_align_malloc): Change type of `aligned'.
137
138 * alloca.s: Removed.
139
1402003-08-19 Gerd Moellmann <gerd@gnu.org>
141
142 * s/freebsd.h [__FreeBSD_version >= 400000]: Define TERMINFO,
143 use -lncurses.
144
145 * term.c (term_init): Use a buffer of size 4096 for tgetent since
146 FreeBSD returns something longer than 2044. Abort if the end of
147 the buffer is overwritten.
148
1492003-08-19 Miles Bader <miles@gnu.org>
150
151 * xterm.c (x_term_init): Correctly use result of Ffile_readable_p.
152
1532003-08-19 Gerd Moellmann <gerd@gnu.org>
154
155 * alloc.c (lisp_align_malloc): Check for memory full when
156 allocating ablocks, which also avoids freeing a pointer into an
157 ablocks structure.
158
159 * puresize.h (BASE_PURESIZE): Increase to 1100000.
160
161 * buffer.c (Fmove_overlay): Set overlay's next pointer
162 unconditionally.
163
1642003-08-16 Richard M. Stallman <rms@gnu.org>
165
166 * editfns.c (Fencode_time): Doc fix.
167
1682003-08-16 David Ponce <david@dponce.com>
169
170 * fileio.c (Fwrite_region): Fix conditional expression to issue
171 the right message.
172
1732003-08-16 Juri Linkov <juri@jurta.org> (tiny change)
174
175 * syntax.c (Fforward_word): Argument changed to optional.
176 Set default value to 1.
177
1782003-08-15 Kenichi Handa <handa@m17n.org>
179
180 * xfaces.c (better_font_p): Prefer a real scalable font; i.e. not
181 what autoscaled.
182 (best_matching_font): Once we find a better scalable font, set
183 non_scalable_has_exact_height_p to 1.
184 (try_font_list): Call try_alternative_families to try any family
185 with the given registry.
186
1872003-08-09 Andreas Schwab <schwab@suse.de>
188
189 * alloc.c (mark_object): Handle Lisp_Misc_Save_Value.
190
191 * print.c (print_string): Fix printing of multibyte string with
192 nontrivial printcharfun.
193
1942003-07-31 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> 12003-07-31 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
195 2
196 * xfns.c (xg_set_icon): Rewrite to compile with GTK 2.0 and 2.2. 3 * xfns.c (xg_set_icon): Rewrite to compile with GTK 2.0 and 2.2.
@@ -10705,5 +10512,3 @@ See ChangeLog.9 for earlier changes.
10705 Copyright (C) 2001, 2002 Free Software Foundation, Inc. 10512 Copyright (C) 2001, 2002 Free Software Foundation, Inc.
10706 Copying and distribution of this file, with or without modification, 10513 Copying and distribution of this file, with or without modification,
10707 are permitted provided the copyright notice and this notice are preserved. 10514 are permitted provided the copyright notice and this notice are preserved.
10708
10709;;; arch-tag: 5dcc435f-4038-4141-b3bf-5be51cd76bd4