comparison src/ChangeLog @ 91073:4bc33ffdda1a

Merge from emacs--devo--0 Patches applied: * emacs--devo--0 (patch 902-908) - Update from CVS - Merge from emacs--rel--22 * emacs--rel--22 (patch 131-137) - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 261-262) - Update from CVS Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-278
author Miles Bader <miles@gnu.org>
date Sat, 27 Oct 2007 09:12:07 +0000
parents 4b09bb044f38 b210bba3f477
children 880960b70474
comparison
equal deleted inserted replaced
91072:74ab3ea909f9 91073:4bc33ffdda1a
1 2007-10-26 Martin Rudalics <rudalics@gmx.at>
2
3 * window.c (window_min_size_2): Don't count header-line.
4
5 2007-10-26 Dan Nicolaescu <dann@ics.uci.edu>
6
7 * frame.h (struct frame): Move all bit fields after the first bit
8 field to take advantage of the available space. Group all the
9 chars together to reduce wasted space due to padding.
10
11 2007-10-26 Juanma Barranquero <lekktu@gmail.com>
12
13 * minibuf.c (Fread_minibuffer, Feval_minibuffer): Reflow docstrings.
14
15 * alloc.c (spare_memory, stack_copy, stack_copy_size, ignore_warnings)
16 (Vdead, dont_register_blocks, staticvec, staticidx, interval_block)
17 (n_interval_blocks, init_strings, check_string_bytes, check_sblock)
18 (init_float, free_float, n_cons_blocks, init_cons, all_vectors)
19 (n_vectors, symbol_block, symbol_block_index, symbol_free_list)
20 (n_symbol_blocks, init_symbol, marker_block, marker_free_list)
21 (n_marker_blocks, init_marker, valid_pointer_p, make_pure_float)
22 (last_marked, mark_object_loop_halt): Make static.
23
24 * frame.c (syms_of_frame) <delete-frame-functions>:
25 Fix typo in docstring.
26
27 2007-10-25 Juanma Barranquero <lekktu@gmail.com>
28
29 * w32.c (init_environment): Fix tiny memory leak.
30 (w32_get_resource): Remove unused variable `ok'.
31
32 2007-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
33
34 Make `window-system' into a keyboard-local variable (rather than
35 frame-local as done originally by multi-tty).
36
37 * keyboard.h (struct kboard): Add Vwindow_system.
38 * keyboard.c (init_kboard): Set a default for Vwindow_system.
39 (mark_kboards): Mark Vwindow_system.
40
41 * dispnew.c (syms_of_display) <window-system>: Declare terminal-local.
42 (init_display): Don't set the obsolete `window-system' frame-param.
43
44 * xterm.c (x_term_init):
45 * w32term.c (w32_create_terminal):
46 * term.c (init_tty): Set Vwindow_system.
47 * macterm.c (mac_create_terminal): Set a keyboard (missing piece of the
48 multi-tty merge maybe?), copied from w32term.c. Set Vwindow_system.
49
50 * xfns.c (Fx_create_frame, x_create_tip_frame):
51 * w32fns.c (Fx_create_frame, x_create_tip_frame):
52 * macfns.c (Fx_create_frame):
53 Don't set the obsolete `window-system' frame-param.
54
55 * frame.h (Qwindow_system): Remove.
56 * frame.c (Qwindow_system): Remove. In `syms_of_frame' as well.
57 (Fmake_terminal_frame): Don't set obsolete `window-system' frame-param.
58
59 2007-10-24 Richard Stallman <rms@gnu.org>
60
61 * frame.c (x_figure_window_size): For fullscreen case,
62 set USPosition | PPosition without clobbering rest of window_prompting.
63
64 * keyboard.c (Fcurrent_idle_time): Doc fix.
65
66 * print.c (Fwith_output_to_temp_buffer): Doc fix.
67
68 2007-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
69
70 * process.c (unwind_request_sigio): Only define if __ultrix__.
71
72 * callproc.c (child_setup): Remove spurious *.
73
74 * lisp.h (Fget_text_property): Declare.
75 (have_menus_p): Declare it here rather than in sys-dep header files.
76 * macterm.h (have_menus_p):
77 * msdos.h (have_menus_p):
78 * xterm.h (have_menus_p): Remove.
79
80 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
81 (Fmake_variable_frame_local): Just check the variable's const-ness
82 rather than checking nil or t.
83
84 2007-10-22 Jason Rumney <jasonr@gnu.org>
85
86 * w32fns.c: Include math.h.
87 (w32_abort): Declaration moved to nt/config.nt.
88
89 * s/ms-w32.h (HAVE_STDLIB_H): Define.
90 (abort): Redefinition moved to nt/config.nt.
91
92 * m/windowsnt.h: Remove.
93
94 2007-10-22 Juanma Barranquero <lekktu@gmail.com>
95
96 * emacs.c (Fdump_emacs): Fix typo in message.
97 (syms_of_emacs) <kill-emacs-hook>: Fix typo in docstring.
98 <installation-directory>: Reflow docstring.
99
100 2007-10-22 Juri Linkov <juri@jurta.org>
101
102 * minibuf.c: Allow minibuffer default to be a list of default values.
103 With empty input use the first element of this list as returned default.
104 (string_to_object)
105 (read_minibuf_noninteractive): If defalt is cons, set val to its car.
106 (read_minibuf): If defalt is cons, set histstring to its car.
107 (Fread_string): If default_value is cons, set val to its car.
108 (Fread_buffer): If def is cons, use its car.
109 (Fcompleting_read): If defalt is cons, set val to its car.
110
111 2007-10-21 Michael Albinus <michael.albinus@gmx.de>
112
113 * fileio.c (Fcopy_file): Call file name handler with preserve_uid_gid.
114
115 2007-10-20 Juanma Barranquero <lekktu@gmail.com>
116
117 * doc.c (Fdocumentation): Check for advice in all cases.
118
1 2007-10-19 Chong Yidong <cyd@stupidchicken.com> 119 2007-10-19 Chong Yidong <cyd@stupidchicken.com>
2 120
3 * Makefile.in [HAVE_LIBRESOLV]: Add -lresolv to linker flags. 121 * Makefile.in [HAVE_LIBRESOLV]: Add -lresolv to linker flags.
4 122
5 2007-10-19 Richard Stallman <rms@gnu.org> 123 2007-10-19 Richard Stallman <rms@gnu.org>
1009 1127
1010 2007-08-29 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change) 1128 2007-08-29 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
1011 1129
1012 * term.c (tty_insert_glyphs): Add missing first parameter. 1130 * term.c (tty_insert_glyphs): Add missing first parameter.
1013 1131
1014 2007-08-29 Karoly Lorentey <karoly@lorentey.hu> 1132 2007-08-29 K,Aa(Broly L$,1 q(Brentey <karoly@lorentey.hu>
1015 1133
1016 * buffer.c (Fbuffer_list, Fbury_buffer): 1134 * buffer.c (Fbuffer_list, Fbury_buffer):
1017 Take frame->buried_buffer_list into account. 1135 Take frame->buried_buffer_list into account.
1018 1136
1019 * cm.c (current_tty): New variable, for cmputc(). 1137 * cm.c (current_tty): New variable, for cmputc().