comparison src/ChangeLog @ 265:8efd647ea9ca r20-5b31

Import from CVS: tag r20-5b31
author cvs
date Mon, 13 Aug 2007 10:25:37 +0200
parents 727739f917cb
children 966663fcf606
comparison
equal deleted inserted replaced
264:682d2a9d41a5 265:8efd647ea9ca
1 1998-03-13 P. E. Jareth Hein <jareth@camelot-soft.com>
2
3 * glyphs-x.c: fix for upside-down TIFFs.
4
5 1998-03-14 Kirill M. Katsnelson <kkm@kis.ru>
6
7 * fileio.c (Finsert_file_contents_internal): Removed all DOS_NT
8 specific code; rely on FILE_CODING streams instead.
9 (Fwrite_region_internal): Ditto.
10 (decide_buffer_type): Function removed.
11 (buf_decide_buffer_type): Function removed.
12 (Many places): References to DOS_NT replaced with WINDOWSNT. MSDOS-
13 specific code removed.
14
15 * lread.c (Fload_internal): Removed ugly DOS style re-opening a
16 file in text mode. '\r' is perfectly handled in readevallop().
17
18 * redisplay.c (decode_mode_spec): Made %t decode to "T" unconditionally.
19
20 * s/windowsnt.h (FILE_CODING): Define always.
21
22 1998-03-15 Kirill M. Katsnelson <kkm@kis.ru>
23
24 * s/windowsnt.h: Added prototypes for generally used functions
25 implemented in nt.c
26
27 * fileio.c (Ffile_readable_p): Conditionalized declared never used
28 variables.
29 (Fexpand_file_name): Ditto.
30 (check_executable): Ditto.
31
32 * lread.c (parse_integer): Eliminated a warning resulted from
33 applying unary minus to unsigned int.
34
35 1998-03-15 Oscar Figueiredo <Oscar.Figueiredo@di.epfl.ch>
36
37 * eldap.c: (Fldap_search_internal): Print error information from
38 errno when connection fails
39
40 1998-03-16 Hrvoje Niksic <hniksic@srce.hr>
41
42 * lread.c: New macro, to avoid exposing an lstream to Lisp error
43 handlers.
44 (reader_nextchar): Use it.
45 (read1): Ditto.
46
47 1998-03-15 Kyle Jones <kyle_jones@wonderworks.com>
48
49 * cmds.c (Fforward_char): Dropped support for
50 signal-error-on-buffer-boundary. Added details to
51 doc string.
52
53 (Fbackward_char): Dropped support for
54 signal-error-on-buffer-boundary by way of change to
55 Fforward_char. Added details to doc string.
56
57 Definition of signal-error-on-buffer-boundary moved to
58 lisp/simple.el.
59
60 * window.c (Fscroll_up): Dropped support for
61 signal-error-on-buffer-boundary. Added details to
62 doc string.
63
64 (Fscroll_down): Dropped support for
65 signal-error-on-buffer-boundary. Added details to doc
66 string.
67
68 1998-03-15 Kyle Jones <kyle_jones@wonderworks.com>
69
70 * keydefs.el: Changed keybindings of forward-char,
71 backward, scroll-up and scroll-down to point to their
72 -command counterparts.
73
74 * simple.el: New functions: forwarc-char-command,
75 backwrad-char-command, scroll-up-command,
76 scroll-down-command which work liek their counterparts
77 except that they honor the variable
78 signal-error-on-buffer-boundary.
79
80 Definition of signal-error-on-buffer-boundary received
81 from src/cmds.c.
82
83 defvar declaration added for word-across-newline to avoid
84 byte-compiler warning about the free variable reference.
85
86 1998-03-15 Kyle Jones <kyle_jones@wonderworks.com>
87
88 * redisplay-tty.c (tty_clear_frame): Record that the
89 real location of teh cursor has been moved to 0,0.
90 Failure to do this makes the display code believe the
91 cursor is in a place where it is not.
92
93 1998-03-15 Kyle Jones <kyle_jones@wonderworks.com>
94
95 * console.h: Added set_final_cursor_coords method to console
96 struct.
97
98 * console-tty.h: Added final_cursor_x and final_cursor_y
99 slots to console struct. Added CONSOLE_TTY_FINAL_CURSOR
100 macros to access them.
101
102 * redisplay.c (create_text_block): No longer
103 turn off the cursor if computing a block when
104 cursor_in_echo_area is 0 and the echo area is
105 inactive. Needed so that the cursor will not be
106 frozen in the minibuffer when cursor_in_echo_area
107 is non-zero.
108
109 * redisplay-output.c (redisplay_move_cursor): Don't
110 bail if we're moving the cursor in a selected
111 minibuffer window. Needed so that simple cursor
112 optimization can be done in the minibuffer even when
113 cursor_in_echo_area is non-zero.
114
115 (redraw_cursor_in_window): Set final cursor coordinates
116 as a special case for cursor_in_echo_area != 0, since
117 the buffer switching between minibuffer and echo area
118 buffer seems to confuse the normal cursor positiong
119 code otherwise. Set final cursor coordinates in the
120 general case before calling output_display_line.
121
122 * redisplay-tty.c: New function tty_set_final_cursor_coords.
123
124 (tty_output_end): Set logical cursor position to the final
125 cursor position as specified in CONSOLE_TTY_CURSOR_{X,Y},
126 and then go to it.
127
128 (tty_redisplay_shutdown): Changed code to use
129 tty_set_final_cursor_coords() to go to the bottom
130 left of the screen instead of using cmgoto()
131
132 (console_type_create_redisplay_tty): Declare that tty
133 consoles have the set_final_cursor_coords method.
134
135 1998-03-13 Hrvoje Niksic <hniksic@srce.hr>
136
137 * emacs.c (main_1): Avoid snprintf(); allocate the buffer
138 dynamically.
139
140 1998-03-13 P. E. Jareth Hein <jareth@camelot-soft.com>
141
142 * glyphs-x.c (png_instantiate): Added in override support
143 for png backgrounds.
144
145 1998-03-13 P. E. Jareth Hein <jareth@camelot-soft.com>
146
147 * glyphs-x.c (png_instantiate): Fixed a bug that was causing
148 overruns when attempting to display transparent pngs
149
150 1998-03-13 P. E. Jareth Hein <jareth@camelot-soft.com>
151
152 * glyphs-x.c (png_instantiate): Fix brainfart in error handling code.
153
154 1998-03-13 SL Baur <steve@altair.xemacs.org>
155
156 * emacs.c (main_1): Guard call to snprintf.
157
158 * config.h.in: Add HAVE_SNPRINTF.
159
160 1998-03-13 Kirill M. Katsnelson <kkm@kis.ru>
161
162 * event-stream.c (init_event_stream): Initialize mswindows event
163 loop in stream mode if no other window systems available. Thanks
164 to Darryl Okahata.
165
166 1998-03-04 Kirill M. Katsnelson <kkm@kis.ru>
167
168 * alloc.c (garbage_collect_1): Removed #ifndef WINDOWSNT around
169 mark_profiling_info().
170
171 1998-03-11 SL Baur <steve@altair.xemacs.org>
172
173 * console-tty.c (Fset_console_tty_coding_system): Guard against
174 terminal-coding-system being left unitialized by a locale.
175 From Kazuyuki IENAGA <ienaga@jsys.co.jp>
176
177 1998-03-11 P. E. Jareth Hein <jareth@camelot-soft.com>
178
179 * config.h.in: Added in new feature check HAVE_VSNPRINT to check
180 for safe ways to deal with vsprintf and friends.
181
182 * glyphs-x.c (gif_instantiate): Changed gif support to call external
183 library Giflib 3.1. Altered GIF/JPEG/PNG formats to use new EImage
184 format for dealing with images to better support color handling, and
185 facilitate the change to a device-neutral implementation. Added TIFF
186 support.
187
188 * Makefile.in.in: Removed all gif related files
189
190 * emacs.c (main_1): Removed reference to init_gif_err
191 * symsinit.h: ditto
192
193 * dgif_lib.c: Removed from the source distribution
194 * gif_err.c: ditto
195 * gif_lib.h: ditto
196 * gifalloc.c: ditto
197
198 Mon Mar 09 13:00:55 1998 Andy Piper <andyp@parallax.co.uk>
199
200 * file-coding.c: warning elimination
201
202 * ntplay.c: new file. basic implementation of sound support.
203
204 * redisplay-msw.c (mswindows_update_dc): cachel bug is gone so we
205 don't need this code under cygwin.
206
207 * sheap.c: need large heap slop for byte compiling with three
208 display types.
209
210 * sound.c: eliminate warnings. enable sound under mswindows.
211
212 * s/cygwin32.h: miscellaneous updates for sound support.
213
214 1998-03-09 SL Baur <steve@altair.xemacs.org>
215
216 * config.h.in: Add BITMAPDIR.
217
218 * glyphs-x.c (locate_pixmap_file): Assume BITMAPDIR is a
219 colon-separated path.
220
221 * emacs.c (main_1): Initialize dll support with the path the
222 binary.
223 (make_arg_list_1): Ditto.
224
225 * sysdll.h: Add legalese.
226 * sysdll.c: Ditto.
227
228 * sysdll.c: sysdll.h needs to be included with double quotes not
229 angle brackets.
230 Use RTLD_GLOBAL as an open flag if it exists.
231
232 1998-03-09 Martin Buchholz <Martin Buchholz <martin@xemacs.org>>
233
234 * eldap.c (Fldap_search_internal): call garbage_collect_1 instead
235 of Fgarbage_collect. The two are identical except the latter
236 generates some `fresh' garbage :)
237
238 1998-03-09 SL Baur <steve@altair.xemacs.org>
239
240 * keymap.c: Add symbols for mouse-4 and mouse-5.
241 (define_key_check_and_coerce_keysym): Mouse-4, Mouse-5 keysym support.
242 (syms_of_keymap): Ditto.
243
244 1998-01-26 Hrvoje Niksic <hniksic@srce.hr>
245
246 * marker.c (print_marker): Print marker's lheader.uid.
247 (Fbuffer_has_markers_at): New function, synched with FSFmacs 20.2.
248 (Fbuffer_has_markers_at): Disabled by default.
249
250 1998-01-25 Hrvoje Niksic <hniksic@srce.hr>
251
252 * sound.c (Fplay_sound_file): Place the result of continuable
253 error back to FILE.
254
255 1998-03-09 SL Baur <steve@altair.xemacs.org>
256
257 * emacs.c, config.h.in: New DLL support.
258 * sysdll.h, sysdll.c: New files.
259 * dll.c: renamed from dlopen.c, use interface defined in sysdll.c.
260 From William Perry <wmperry@aventail.com>
261
262 * eldap.h: Fix copyright.
263 * eldap.c: Ditto.
264
265 1998-03-08 SL Baur <steve@altair.xemacs.org>
266
267 * Makefile.in.in: Add dependencies for process-unix.o.
268
269 1998-03-08 Kyle Jones <kyle_jones@wonderworks.com>
270
271 * glyphs-x.c (write_lisp_string_to_temp_file):
272 Don't explicitly initialize conversion_out_dynarr, because
273 doing so may cause it to be put into read-only space
274 and modifying it later would make XEmacs crash.
275
1 1998-03-07 Kyle Jones <kyle_jones@wonderworks.com> 276 1998-03-07 Kyle Jones <kyle_jones@wonderworks.com>
2 277
3 * events.h: Add do_backspace_mapping parameter to 278 * events.h: Add do_backspace_mapping parameter to
4 function prototype of character_to_event. 279 function prototype of character_to_event.
5 280