ad4b0d72400e29e774004a9d311222085b29a4a2
[bpt/emacs.git] / src / ChangeLog
1 2013-06-30 Paul Eggert <eggert@cs.ucla.edu>
2
3 * intervals.c (get_local_map): Actually clip POSITION (Bug#14753).
4
5 2013-06-30 Eli Zaretskii <eliz@gnu.org>
6
7 * intervals.c (get_local_map): Instead of aborting, clip POSITION
8 to the valid range of values. (Bug#14753)
9
10 * xdisp.c (Fmove_point_visually): Invalidate the cursor position
11 when moving point by using the current glyph matrix. This avoids
12 the need to force redisplay when this function is called in a
13 loop.
14
15 2013-06-29 Paul Eggert <eggert@cs.ucla.edu>
16
17 Fix minor problems found by static checking.
18 * coding.c (encode_inhibit_flag, inhibit_flag): New functions.
19 Redo the latter's body to sidestep GCC parenthesization warnings.
20 (setup_coding_system, detect_coding, detect_coding_system): Use them.
21 * coding.c (detect_coding, detect_coding_system):
22 * coding.h (struct undecided_spec):
23 Use bool for boolean.
24 * image.c (QCmax_width, QCmax_height): Now static.
25 * xdisp.c (Fmove_point_visually): Remove unused local.
26
27 2013-06-29 Eli Zaretskii <eliz@gnu.org>
28
29 * xdisp.c (Fmove_point_visually): New function.
30
31 2013-06-28 Kenichi Handa <handa@gnu.org>
32
33 * coding.h (define_coding_undecided_arg_index): New enum.
34 (coding_attr_index): New members
35 coding_attr_undecided_inhibit_null_byte_detection,
36 coding_attr_undecided_inhibit_iso_escape_detection,
37 coding_attr_undecided_prefer_utf_8.
38 (undecided_spec): New struct.
39 (struct coding_system): New member `undecided' of the member
40 `spec'.
41
42 * coding.c (setup_coding_system): Handle CODING->spec.undecided.
43 (detect_coding): Likewise.
44 (detect_coding_system): Likewise.
45 (Fdefine_coding_system_internal): New coding system properties
46 :inhibit-null-byte-detection, :inhibit-iso-escape-detection, and
47 :prefer-utf-8.
48 (syms_of_coding): Adjusted for coding_arg_undecided_max.
49
50 2013-06-28 Kenichi Handa <handa@gnu.org>
51
52 * coding.h (define_coding_undecided_arg_index): New enum.
53 (coding_attr_index): New members
54 coding_attr_undecided_inhibit_null_byte_detection,
55 coding_attr_undecided_inhibit_iso_escape_detection,
56 coding_attr_undecided_prefer_utf_8.
57 (undecided_spec): New struct.
58 (struct coding_system): New member `undecided' of the member
59 `spec'.
60
61 * coding.c (setup_coding_system): Handle CODING->spec.undecided.
62 (detect_coding): Likewise.
63 (detect_coding_system): Likewise.
64 (Fdefine_coding_system_internal): New coding system properties
65 :inhibit-null-byte-detection, :inhibit-iso-escape-detection, and
66 :prefer-utf-8.
67 (syms_of_coding): Adjust for coding_arg_undecided_max.
68
69 2013-06-28 Paul Eggert <eggert@cs.ucla.edu>
70
71 * image.c (x_from_xcolors): Remove unused local.
72
73 2013-06-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
74
75 Defer image data transfer between X client and server until actual
76 display happens.
77
78 * dispextern.h (struct image) [HAVE_X_WINDOWS]: New members `ximg'
79 and `mask_img'.
80
81 * image.c (Destroy_Image): Remove.
82 (x_clear_image_1): New arg `flags' instead of 3 bools `pixmap_p',
83 `mask_p', and `colors_p'. All uses changed.
84 (x_clear_image_1) [HAVE_X_WINDOWS]: Destroy `ximg' and `mask_img'.
85 (CLEAR_IMAGE_PIXMAP, CLEAR_IMAGE_MASK, CLEAR_IMAGE_COLORS): New
86 macros for `flags' arg to x_clear_image_1.
87 (postprocess_image, xpm_load_image, x_build_heuristic_mask)
88 (png_load_body): Use x_clear_image_1 instead of Free_Pixmap.
89 (ZPixmap, XGetImage) [HAVE_NS]: Remove.
90 (image_get_x_image_or_dc, image_unget_x_image_or_dc)
91 (image_get_x_image, image_unget_x_image): New functions or macros.
92 (image_background, image_background_transparent, x_to_xcolors)
93 (x_build_heuristic_mask): Use image_get_x_image_or_dc instead of
94 XGetImage or CreateCompatibleDC. Use image_unget_x_image_or_dc
95 instead of Destroy_Image.
96 (image_create_x_image_and_pixmap, image_put_x_image): New functions.
97 (xpm_load_image, x_from_xcolors, x_build_heuristic_mask, pbm_load)
98 (png_load_body, jpeg_load_body, tiff_load, gif_load)
99 (imagemagick_load_image, svg_load_image): Use them instead of
100 x_create_x_image_and_pixmap, and x_put_x_image followed by
101 x_destroy_x_image, respectively.
102 (xpm_load) [HAVE_XPM && !HAVE_NTGUI]: Use XpmReadFileToImage and
103 XpmCreateImageFromBuffer instead of XpmReadFileToPixmap and
104 XpmCreatePixmapFromBuffer. Create pixmaps. Fill background and
105 background_transparent fields.
106 (image_sync_to_pixmaps) [HAVE_X_WINDOWS]: New function.
107 (prepare_image_for_display, x_disable_image) [HAVE_X_WINDOWS]: Use it.
108
109 2013-06-27 Paul Eggert <eggert@cs.ucla.edu>
110
111 Do not tickle glib SIGCHLD handling if Cygwin (Bug#14569).
112 This mostly consists of undoing recent changes.
113 * callproc.c (Fcall_process):
114 * process.c (create_process):
115 Do not worry about catching SIGCHLD here, undoing previous change.
116 * nsterm.m (ns_term_init): Re-catch SIGCHLD, undoing previous change.
117 * process.c, process.h (catch_child_signal):
118 No longer extern if !NS_IMPL_GNUSTEP, undoing 06-22 change.
119 * process.c (catch_child_handler): Don't worry about being called
120 lazily and do not assume caller has blocked SIGCHLD, undoing
121 previous change. Move first-time stuff back to
122 init_process_emacs, undoing 06-22 change. If CYGWIN, do not
123 tickle glib, as that causes Cygwin bootstrap to fail. Do not
124 set lib_child_handler if it's already initialized, which may
125 help avoid problems on GNUStep.
126
127 2013-06-23 Paul Eggert <eggert@cs.ucla.edu>
128
129 A more-conservative workaround for Cygwin SIGCHLD issues (Bug#14569).
130 * callproc.c (Fcall_process):
131 * process.c (create_process):
132 Make sure SIGCHLD is caught before we fork,
133 since Emacs startup no arranges to catch SIGCHLD.
134 * process.c (lib_child_handler): Initialize to null, not to
135 dummy_handler.
136 (catch_child_signal): Allow self to be called lazily.
137 Do nothing if it's already been called.
138 Assume caller has blocked SIGCHLD (all callers do now).
139 * emacs.c (main): Do not catch SIGCHLD here; defer it until
140 just before it's really needed.
141 * nsterm.m (ns_term_init): No need to re-catch SIGCHLD here,
142 since it hasn't been caught yet.
143
144 2013-06-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
145
146 * image.c (compute_image_size): New function to implement
147 :max-width and :max-height.
148 (imagemagick_load_image): Use it.
149
150 2013-06-23 Paul Eggert <eggert@cs.ucla.edu>
151
152 Try to avoid malloc SEGVs on Cygwin (Bug#14569).
153 * callproc.c, process.h (block_child_signal, unblock_child_signal):
154 Now extern.
155 * emacs.c (main): Catch SIGCHLD just before initializing gfilenotify.
156 * process.c (catch_child_signal): Block SIGCHLD while futzing with
157 the SIGCHLD handler, since the code is not atomic and (due to glib)
158 signals may be arriving now.
159 * sysdep.c (init_signals): Do not catch child signals here;
160 'main' now does that later, at a safer time.
161
162 2013-06-22 Paul Eggert <eggert@cs.ucla.edu>
163
164 Clean up SIGCHLD handling a bit (Bug#14569).
165 * process.c, process.h (catch_child_signal):
166 Now always extern, even if !NS_IMPL_GNUSTEP.
167 * process.c (catch_child_signal): Move glib tickler here from
168 init_process_emacs, so that it's done earlier in Emacs
169 initialization. Also move the noninteractive && !initialized
170 check here from init_process_emacs. This is all a bit cleaner for
171 GNUish platforms, and I hope it works around the Cygwin bug.
172 * sysdep.c (init_signals): Invoke catch_child_signal here, so
173 that glib signal handling is tickled before glib creates threads.
174
175 * process.c (wait_reading_process_output): Avoid int overflow
176 when reading more than 2 GiB total from a process.
177
178 2013-06-21 Paul Eggert <eggert@cs.ucla.edu>
179
180 * process.c (create_process): Handle a couple more cases,
181 i.e., work even if new_argv and wait_child_setup[i] are cached.
182 Use Fcall_process's style for volatile vars.
183
184 2013-06-21 Andreas Schwab <schwab@linux-m68k.org>
185
186 * process.c (create_process): Mark PROCESS volatile.
187
188 2013-06-21 Paul Eggert <eggert@cs.ucla.edu>
189
190 Use C99-style flexible array members if available.
191 This avoids some subtle aliasing issues, which typically
192 aren't a problem with GCC but may be a problem elsewhere.
193 * alloc.c (sdata): New typedef, replacing the old struct sdata.
194 It is a struct if GC_CHECK_STRING_BYTES, a union otherwise.
195 In either case, it uses a flexible array member rather than
196 the old struct hack. All uses changed.
197 (SDATA_NBYTES, sweep_strings) [!GC_CHECK_STRING_BYTES]:
198 Adjust to sdata reorganization.
199 * alloc.c (VBLOCK_BYTES_MIN, allocate_vectorlike, Fgarbage_collect):
200 Use offsetof (struct, flex_array_member), not sizeof (struct), as
201 that ports better to pre-C99 non-GCC.
202 * chartab.c (Fmake_char_table, make_sub_char_table, copy_char_table):
203 Use CHAR_TABLE_STANDARD_SLOTS rather than its definition,
204 as the latter has changed.
205 * conf_post.h (FLEXIBLE_ARRAY_MEMBER): Move here from w32.c,
206 and port better to pre-C99 GCC.
207 * image.c (struct xpm_cached_color):
208 * lisp.h (struct Lisp_Vector, struct Lisp_Bool_Vector)
209 (struct Lisp_Char_Table, struct Lisp_Sub_Char_Table):
210 Use FLEXIBLE_ARRAY_MEMBER.
211 * lisp.h (string_bytes) [GC_CHECK_STRING_BYTES]:
212 Move decl to top level so it gets checked against implementation.
213 (CHAR_TABLE_STANDARD_SLOTS): Adjust to struct Lisp_Char_Table change.
214 * w32.c (FLEXIBLE_ARRAY_MEMBER): Move to conf_post.h.
215
216 2013-06-20 Paul Eggert <eggert@cs.ucla.edu>
217
218 * syntax.c: Integer cleanups.
219 (SYNTAX_FLAGS_COMMENT_STYLEC): Return a boolean, not 0-or-2.
220 All uses that need 0-or-2 changed to:
221 (SYNTAX_FLAGS_COMMENT_STYLEC2): New macro, with the same semantics
222 as the old SYNTAX_FLAGS_COMMENT_STYLEC.
223 (struct lisp_parse_state, syntax_prefix_flag_p, update_syntax_table)
224 (char_quoted, prev_char_comend_first, back_comment)
225 (Finternal_describe_syntax_value, skip_chars, skip_syntaxes)
226 (in_classes, forw_comment, scan_lists, scan_sexps_forward):
227 Use bool for boolean.
228 (update_syntax_table, skip_chars, skip_syntaxes):
229 Prefer int to unsigned when either will do.
230 (back_comment): Return boolean success flag, like forw_comment,
231 instead of positive-or-minus-1 (which might have overflowed int anyway).
232 Don't stuff ptrdiff_t into int.
233 (syntax_spec_code, syntax_code_spec): Now const.
234 (Fmatching_paren, scan_lists, scan_sexps_forward):
235 Use enum syntaxcode for syntax code.
236 (Fmatching_paren): Check that arg is a character, not just an integer.
237 (Fstring_to_syntax): Don't assume 0377 fits in enum syntaxcode.
238 (Finternal_describe_syntax_value): Omit no-longer-needed
239 comparison to 0.
240 (skip_chars): Use char, not unsigned char, when the distinction
241 doesn't matter.
242 (forw_comment, scan_lists): Prefer A |= B to A = A || B when B's cheap.
243 * bytecode.c (exec_byte_code):
244 * syntax.c (syntax_spec_code, Fchar_syntax)
245 (Finternal_describe_syntax_value, skip_chars, skip_syntaxes)
246 (init_syntax_once):
247 * syntax.h (SYNTAX_WITH_FLAGS):
248 Omit unnecessary casts.
249
250 2013-06-20 Eli Zaretskii <eliz@gnu.org>
251
252 * w32fns.c (w32_wnd_proc): Don't compute the header line and mode
253 line dimensions here, to avoid race conditions with the main
254 thread. (Bug#14062, bug#14630, bug#14669)
255
256 * w32term.c (w32_draw_window_cursor): Compute the header line and
257 mode line dimensions here.
258 <w32_system_caret_window, w32_system_caret_hdr_height>:
259 <w32_system_caret_mode_height>: New variables.
260
261 * w32term.h: Declare them.
262
263 2013-06-20 Paul Eggert <eggert@cs.ucla.edu>
264
265 * alloc.c (die): Move "assertion failed" string here ...
266 * lisp.h (eassert): ... from here. Also, suppress evaluation of
267 COND when SUPPRESS_CHECKING. This shrinks the executable text
268 size by 0.8% to 2.2% when configured with --enable-checking,
269 depending on optimization flags (GCC 4.8.1 x86-64).
270
271 * floatfns.c (Flog10): Move to Lisp (marked obsolete there).
272
273 2013-06-20 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
274
275 * floatfns.c (Flog) [HAVE_LOG2]: Use log2 if available and if the
276 base is 2; this is more accurate.
277
278 2013-06-19 Juanma Barranquero <lekktu@gmail.com>
279
280 * sound.c (string_default): Move to !WINDOWSNT section.
281 (Fplay_sound_internal) [WINDOWSNT]: Remove i_result to avoid warning.
282
283 2013-06-19 Paul Eggert <eggert@cs.ucla.edu>
284
285 * sound.c: Integer cleanups.
286 Remove unnecessary forward decls.
287 (struct sound_device): The 'file' member is now a Lisp_Object, not
288 a char *, so that we needn't invoke alloca on a huge size.
289 (Fplay_sound_internal): Adjust to this.
290 (string_default): New function.
291 (vox_open, vox_init, alsa_open, alsa_configure, alsa_init):
292 Use it to adjust to the struct sound_device change.
293 (parse_sound, wav_init, au_init, alsa_init): Use bool for booleans.
294 (be2hs) [0]: Remove.
295
296 * syntax.c (skip_chars): Don't use uninitialized storage
297 when searching a multibyte buffer for characters that are not in a
298 unibyte string that contains non-ASCII characters.
299
300 2013-06-18 Jan Djärv <jan.h.d@swipnet.se>
301
302 * process.c: Include xgselect.h if HAVE_GLIB. Include glib.h
303 if HAVE_GLIB && ! WINDOWSNT (Bug#14654).
304
305 2013-06-18 Paul Eggert <eggert@cs.ucla.edu>
306
307 * conf_post.h: Add comments for INLINE, EXTERN_INLINE, etc.
308
309 2013-06-18 Kenichi Handa <handa@gnu.org>
310
311 * font.c (Ffont_spec): Signal an error for an invalid font name
312 (Bug#14648).
313
314 2013-06-18 Paul Eggert <eggert@cs.ucla.edu>
315
316 Porting fixes for merged specpdl and backtrace stacks (Bug#14643).
317 In particular this ports to 32-bit sparc Sun cc.
318 * eval.c (init_eval_once, grow_specpdl): Allocate a specbinding
319 array with a dummy element at specpdl[-1], so that its address can
320 be taken portably.
321 (unbind_to): Do not copy the binding; not needed, now that we
322 copy old_value in the one place where the copy is needed.
323 * fileio.c (Fwrite_region): Use ptrdiff_t, not int, for specpdl count.
324 * lisp.h (BITS_PER_PTRDIFF_T): Remove; no longer needed.
325 (union specbinding): Rename from struct specbinding. Redo layout
326 to avoid the need for 'ptrdiff_t nargs : BITS_PER_PTRDIFF_T - 1;',
327 which is not portable. With Sun C 5.12 32-bit sparc, the
328 declaration causes nargs to be an unsigned bitfield, a behavior
329 that the C standard allows; but Emacs wants nargs to be signed.
330 The overall type is now a union of structures rather than a
331 structure of union of structures, and the 'kind' member is now a
332 bitfield, so that the overall type doesn't grow. All uses changed.
333 * process.c (Fmake_serial_process): Remove unnecessary initialization.
334
335 2013-06-17 Paul Eggert <eggert@cs.ucla.edu>
336
337 * frame.c (x_report_frame_params): Cast parent_desc to uintptr_t.
338 Needed if HAVE_NTGUI. Reported by Juanma Barranquero.
339
340 * nsfont.m (ns_registry_to_script): Parenthesize while expression.
341
342 2013-06-17 Eli Zaretskii <eliz@gnu.org>
343
344 * w32fns.c (w32_wnd_proc): Don't call WINDOW_HEADER_LINE_HEIGHT
345 unless we know that the window w's frame is a frame object.
346 Another attempt at solving bug#14062 and bug#14630.
347
348 2013-06-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
349
350 * textprop.c (property_set_type): New enum.
351 (add_properties): Allow appending/prepending text properties.
352 (add_text_properties_1): Factored out of Fadd_text_properties.
353 (Fadd_text_properties): Moved all the code into
354 add_text_properties_1.
355 (Fadd_face_text_property): New function that calls
356 add_text_properties_1.
357
358 2013-06-17 Paul Eggert <eggert@cs.ucla.edu>
359
360 Move functions from lisp.h to individual modules when possible.
361 From a suggestion by Andreas Schwab in <http://bugs.gnu.org/11935#68>.
362 * alloc.c (XFLOAT_INIT, set_symbol_name):
363 * buffer.c (CHECK_OVERLAY):
364 * chartab.c (CHECK_CHAR_TABLE, set_char_table_ascii)
365 (set_char_table_parent):
366 * coding.c (CHECK_NATNUM_CAR, CHECK_NATNUM_CDR):
367 * data.c (BOOLFWDP, INTFWDP, KBOARD_OBJFWDP, OBJFWDP, XBOOLFWD)
368 (XKBOARD_OBJFWD, XINTFWD, XOBJFWD, CHECK_SUBR, set_blv_found)
369 (blv_value, set_blv_value, set_blv_where, set_blv_defcell)
370 (set_blv_valcell):
371 * emacs.c (setlocale) [!HAVE_SETLOCALE]:
372 * eval.c (specpdl_symbol, specpdl_old_value, specpdl_where)
373 (specpdl_arg, specpdl_func, backtrace_function, backtrace_nargs)
374 (backtrace_args, backtrace_debug_on_exit):
375 * floatfns.c (CHECK_FLOAT):
376 * fns.c (CHECK_HASH_TABLE, CHECK_LIST_END)
377 (set_hash_key_and_value, set_hash_next, set_hash_next_slot)
378 (set_hash_hash, set_hash_hash_slot, set_hash_index)
379 (set_hash_index_slot):
380 * keymap.c (CHECK_VECTOR_OR_CHAR_TABLE):
381 * marker.c (CHECK_MARKER):
382 * textprop.c (CHECK_STRING_OR_BUFFER):
383 * window.c (CHECK_WINDOW_CONFIGURATION):
384 Move here from lisp.h, and make these functions static rather than
385 extern inline.
386 * buffer.c (Qoverlayp):
387 * data.c (Qsubrp):
388 * fns.c (Qhash_table_p):
389 * window.c (Qwindow_configuration_p):
390 Now static.
391 * lisp.h: Remove the abovementioned defns and decls.
392
393 Use functions, not macros, for XINT etc. (Bug#11935).
394 In lisp.h, prefer functions to function-like macros, and
395 constants to object-like macros, when either will do. This:
396 . simplifies use, as there's no more need to worry about
397 arguments' side effects being evaluated multiple times.
398 . makes the code easier to debug on some platforms.
399 However, when using gcc -O0, keep using function-like macros
400 for a few critical operations, for performance reasons.
401 This sort of thing isn't needed with gcc -Og, but -Og
402 is a GCC 4.8 feature and isn't widely-enough available yet.
403 * alloc.c (gdb_make_enums_visible) [USE_LSB_TAG]:
404 Remove enum lsb_bits; no longer needed.
405 (allocate_misc, free_misc): Don't use XMISCTYPE as an lvalue.
406 * buffer.c (Qoverlap):
407 * data.c (Qsubrp):
408 * fns.c (Qhash_table_p):
409 Now extern, so lisp.h can use these symbols.
410 * dispextern.h: Include character.h, for MAX_CHAR etc.
411 (GLYPH, GLYPH_CHAR, GLYPH_FACE, SET_GLYPH_CHAR, SET_GLYPH_FACE)
412 (SET_GLYPH, GLYPH_CODE_CHAR, GLYPH_CODE_FACE)
413 (SET_GLYPH_FROM_GLYPH_CODE, GLYPH_MODE_LINE_FACE, GLYPH_CHAR_VALID_P)
414 (GLYPH_CODE_P): Move here from lisp.h.
415 (GLYPH_CHAR, GLYPH_FACE, GLYPH_CODE_CHAR, GLYPH_CODE_FACE)
416 (GLYPH_CHAR_VALID_P, GLYPH_CODE_P): Now functions, not macros.
417 (GLYPH_MODE_LINE_FACE): Now enums, not macros.
418 * eval.c (Fautoload): Cast XUNTAG output to intptr_t, since
419 XUNTAG now returns void *.
420 * lisp.h (lisp_h_XLI, lisp_h_XIL, lisp_h_CHECK_LIST_CONS)
421 (lisp_h_CHECK_NUMBER CHECK_SYMBOL, lisp_h_CHECK_TYPE)
422 (lisp_h_CONSP, lisp_h_EQ, lisp_h_FLOATP, lisp_h_INTEGERP)
423 (lisp_h_MARKERP, lisp_h_MISCP, lisp_h_NILP)
424 (lisp_h_SET_SYMBOL_VAL, lisp_h_SYMBOL_CONSTANT_P)
425 (lisp_h_SYMBOL_VAL, lisp_h_SYMBOLP, lisp_h_VECTORLIKEP)
426 (lisp_h_XCAR, lisp_h_XCDR, lisp_h_XCONS, lisp_h_XHASH)
427 (lisp_h_XPNTR, lisp_h_XSYMBOL):
428 New macros, renamed from their sans-lisp_h_ counterparts.
429 (XLI, XIL, CHECK_LIST_CONS, CHECK_NUMBER CHECK_SYMBOL)
430 (CHECK_TYPE, CONSP, EQ, FLOATP, INTEGERP, MARKERP)
431 (MISCP, NILP, SET_SYMBOL_VAL, SYMBOL_CONSTANT_P, SYMBOL_VAL, SYMBOLP)
432 (VECTORLIKEP, XCAR, XCDR, XCONS, XHASH, XPNTR, XSYMBOL):
433 If compiling via GCC without optimization, define these as macros
434 in addition to inline functions.
435 To disable this, compile with -DINLINING=0.
436 (LISP_MACRO_DEFUN, LISP_MACRO_DEFUN_VOID): New macros.
437 (check_cons_list) [!GC_CHECK_CONS_LIST]: Likewise.
438 (make_number, XFASTINT, XINT, XTYPE, XUNTAG): Likewise, but
439 hand-optimize only in the USE_LSB_TAG case, as GNUish hosts do that.
440 (INTMASK, VALMASK): Now macros, since static values cannot be
441 accessed from extern inline functions.
442 (VALMASK): Also a constant, for benefit of old GDB.
443 (LISP_INT_TAG_P): Remove; no longer needed as the only caller
444 is INTEGERP, which can fold it in.
445 (XLI, XIL, XHASH, XTYPE,XINT, XFASTINT, XUINT)
446 (make_number, XPNTR, XUNTAG, EQ, XCONS, XVECTOR, XSTRING, XSYMBOL)
447 (XFLOAT, XPROCESS, XWINDOW, XTERMINAL, XSUBR, XBUFFER, XCHAR_TABLE)
448 (XSUB_CHAR_TABLE, XBOOL_VECTOR, make_lisp_ptr, CHECK_TYPE)
449 (CHECK_STRING_OR_BUFFER, XCAR, XCDR, XSETCAR, XSETCDR, CAR, CDR)
450 (CAR_SAFE, CDR_SAFE, STRING_MULTIBYTE, SDATA, SSDATA, SREF, SSET)
451 (SCHARS, STRING_BYTES, SBYTES, STRING_SET_CHARS, STRING_COPYIN, AREF)
452 (ASIZE, ASET, CHAR_TABLE_REF_ASCII, CHAR_TABLE_REF)
453 (CHAR_TABLE_SET, CHAR_TABLE_EXTRA_SLOTS, SYMBOL_VAL, SYMBOL_ALIAS)
454 (SYMBOL_BLV, SYMBOL_FWD, SET_SYMBOL_VAL, SET_SYMBOL_ALIAS)
455 (SET_SYMBOL_BLV, SET_SYMBOL_FWD, SYMBOL_NAME, SYMBOL_INTERNED_P)
456 (SYMBOL_INTERNED_IN_INITIAL_OBARRAY_P, SYMBOL_CONSTANT_P)
457 (XHASH_TABLE, HASH_TABLE_P, CHECK_HASH_TABLE, HASH_KEY, HASH_VALUE)
458 (HASH_NEXT, HASH_HASH, HASH_INDEX, HASH_TABLE_SIZE)
459 (XMISC, XMISCANY, XMARKER, XOVERLAY, XSAVE_VALUE, XFWDTYPE)
460 (XINTFWD, XBOOLFWD, XOBJFWD, XBUFFER_OBJFWD, XKBOARD_OBJFWD)
461 (XFLOAT_DATA, XFLOAT_INIT, NILP, NUMBERP, NATNUMP)
462 (RANGED_INTEGERP, CONSP, FLOATP, MISCP, STRINGP, SYMBOLP)
463 (INTEGERP, VECTORLIKEP, VECTORP, OVERLAYP)
464 (MARKERP, SAVE_VALUEP, AUTOLOADP, INTFWDP, BOOLFWDP, OBJFWDP)
465 (BUFFER_OBJFWDP, KBOARD_OBJFWDP, PSEUDOVECTOR_TYPEP)
466 (PSEUDOVECTORP, WINDOW_CONFIGURATIONP, PROCESSP, WINDOWP)
467 (TERMINALP, SUBRP, COMPILEDP, BUFFERP, CHAR_TABLE_P)
468 (SUB_CHAR_TABLE_P, BOOL_VECTOR_P, FRAMEP, IMAGEP, ARRAYP)
469 (CHECK_LIST, CHECK_LIST_CONS, CHECK_LIST_END, CHECK_STRING)
470 (CHECK_STRING_CAR, CHECK_CONS, CHECK_SYMBOL, CHECK_CHAR_TABLE)
471 (CHECK_VECTOR, CHECK_VECTOR_OR_STRING, CHECK_ARRAY)
472 (CHECK_VECTOR_OR_CHAR_TABLE, CHECK_BUFFER, CHECK_WINDOW)
473 (CHECK_WINDOW_CONFIGURATION, CHECK_PROCESS, CHECK_SUBR)
474 (CHECK_NUMBER, CHECK_NATNUM, CHECK_MARKER, XFLOATINT)
475 (CHECK_FLOAT, CHECK_NUMBER_OR_FLOAT, CHECK_OVERLAY)
476 (CHECK_NUMBER_CAR, CHECK_NUMBER_CDR, CHECK_NATNUM_CAR)
477 (CHECK_NATNUM_CDR, FUNCTIONP, SPECPDL_INDEX, LOADHIST_ATTACH)
478 Now functions.
479 (check_cons_list) [!GC_CHECK_CONS_LIST]: New empty function.
480 (LISP_MAKE_RVALUE, TYPEMASK): Remove; no longer needed.
481 (VALMASK): Define in one place rather than in two, merging the
482 USE_LSB_TAG parts; this is simpler.
483 (aref_addr, gc_aset, MOST_POSITIVE_FIXNUM, MOST_NEGATIVE_FIXNUM)
484 (max, min, struct Lisp_String, UNSIGNED_CMP, ASCII_CHAR_P):
485 Move up, to avoid use before definition.
486 Also include "globals.h" earlier, for the same reason.
487 (make_natnum): New function.
488 (XUNTAG): Now returns void *, not intptr_t, as this means fewer casts.
489 (union Lisp_Fwd, BOOLFWDP, BOOL_VECTOR_P, BUFFER_OBJFWDP, BUFFERP)
490 (CHAR_TABLE_P, CHAR_TABLE_REF_ASCII, CONSP, FLOATP, INTEGERP, INTFWDP)
491 (KBOARD_OBJFWDP, MARKERP, MISCP, NILP, OBJFWDP, OVERLAYP, PROCESSP)
492 (PSEUDOVECTORP, SAVE_VALUEP, STRINGP, SUB_CHAR_TABLE_P, SUBRP, SYMBOLP)
493 (VECTORLIKEP, WINDOWP, Qoverlayp, char_table_ref, char_table_set)
494 (char_table_translate, Qarrayp, Qbufferp, Qbuffer_or_string_p)
495 (Qchar_table_p, Qconsp, Qfloatp, Qintegerp, Qlambda, Qlistp, Qmarkerp)
496 (Qnil, Qnumberp, Qsubrp, Qstringp, Qsymbolp, Qvectorp)
497 (Qvector_or_char_table_p, Qwholenump, Ffboundp, wrong_type_argument)
498 (initialized, Qhash_table_p, extract_float, Qprocessp, Qwindowp)
499 (Qwindow_configuration_p, Qimage): New forward declarations.
500 (XSETFASTINT): Simplify by rewriting in terms of make_natnum.
501 (STRING_COPYIN): Remove; unused.
502 (XCAR_AS_LVALUE, XCDR_AS_LVALUE): Remove these macros, replacing with ...
503 (xcar_addr, xcdr_addr): New functions. All uses changed.
504 (IEEE_FLOATING_POINT): Now a constant, not a macro.
505 (GLYPH, GLYPH_CHAR, GLYPH_FACE, SET_GLYPH_CHAR, SET_GLYPH_FACE)
506 (SET_GLYPH, GLYPH_CODE_CHAR, GLYPH_CODE_FACE)
507 (SET_GLYPH_FROM_GLYPH_CODE, GLYPH_MODE_LINE_FACE, GLYPH_CHAR_VALID_P)
508 (GLYPH_CODE_P): Move to dispextern.h, to avoid define-before-use.
509 (TYPE_RANGED_INTEGERP): Simplify.
510 (Qsubrp, Qhash_table_p, Qoverlayp): New extern decls.
511 (setlocale, fixup_locale, synchronize_system_messages_locale)
512 (synchronize_system_time_locale) [!HAVE_SETLOCALE]:
513 Now empty functions, not macros.
514 (functionp): Return bool, not int.
515 * window.c (Qwindow_configuration_p): Now extern,
516 so window.h can use it.
517 * window.h (Qwindowp): Move decl back to lisp.h.
518
519 2013-06-15 Eli Zaretskii <eliz@gnu.org>
520
521 * xdisp.c (Fline_pixel_height): New function, required for solving
522 bug #14567.
523
524 2013-06-15 Paul Eggert <eggert@cs.ucla.edu>
525
526 * fns.c (Fcopy_sequence): Simplify XTYPE calculation.
527
528 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
529
530 * lread.c (syms_of_lread):
531 * fns.c (Fprovide): Adjust to new format of after-load-alist.
532
533 2013-06-13 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
534
535 * fileio.c (Fdo_auto_save): Trap errors in auto-save-hook. (Bug#14479)
536
537 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
538
539 * fileio.c (expand_file_name): Doc fix.
540
541 2013-06-11 Paul Eggert <eggert@cs.ucla.edu>
542
543 Tickle glib by waiting for Emacs itself, not for process 0 (Bug#14569).
544 * process.c (init_process_emacs) [HAVE_GLIB && !WINDOWSNT]:
545 Wait for self, not for 0. This can't hurt on GNU or similar
546 system, and may help with Cygwin.
547
548 * keyboard.c: Don't use PROP (...) as an lvalue.
549 (parse_tool_bar_item) [!USE_GTK && !HAVE_NS]:
550 Use set_prop (A, B), not PROP (A) = B.
551
552 2013-06-10 Eli Zaretskii <eliz@gnu.org>
553
554 * xdisp.c (get_it_property): Use it->window instead of generating
555 a Lisp object from it->w.
556
557 2013-06-09 Eli Zaretskii <eliz@gnu.org>
558
559 * xdisp.c (get_it_property): If it->object is a buffer, pass to
560 get-char-property the window that is being rendered, instead of
561 the buffer, to support window-specific overlays. (Bug#14575)
562 (compute_display_string_pos): When W is NULL, use the current
563 buffer as the object to pass to get-char-property.
564 (Fcurrent_bidi_paragraph_direction): Assign NULL to the window
565 pointer member of the bidi iterator, since no window is pertinent
566 to this function.
567
568 2013-06-08 Eli Zaretskii <eliz@gnu.org>
569
570 * bidi.c (bidi_fetch_char): Accept additional argument, the window
571 being displayed, and pass it to compute_display_string_pos.
572 (bidi_level_of_next_char, bidi_resolve_explicit_1)
573 (bidi_paragraph_init): All callers changed.
574
575 * xdisp.c (init_from_display_pos, init_iterator)
576 (handle_single_display_spec, next_overlay_string)
577 (get_overlay_strings_1, reseat_1, reseat_to_string)
578 (push_prefix_prop, Fcurrent_bidi_paragraph_direction):
579 Set bidi_it.w member from it->w.
580 (compute_display_string_pos): Accept additional argument, the
581 window being displayed, and pass it to Fget_char_property.
582 (Bug#14575)
583
584 * dispextern.h (struct bidi_it): New member w, the window being
585 displayed.
586 (compute_display_string_pos): Adjust prototype.
587
588 2013-06-08 Jan Djärv <jan.h.d@swipnet.se>
589
590 * xgselect.c: Remove unneeded include xterm.h.
591
592 * process.c (wait_reading_process_output): Check for NS before GLIB.
593 GLIB may be linked in due to rsvg, but ns_select must be called.
594
595 * xgselect.c (xg_select): Remove call to window_system_available
596 and g_main_context_pending at the top, so Gdk events (i.e. file
597 notify) are processed when Emacs is started with -nw.
598
599 2013-06-07 Eli Zaretskii <eliz@gnu.org>
600
601 * Makefile.in (ctagsfiles1, ctagsfiles2): Don't include *.m files.
602 (ctagsfiles3): New variable, includes only *.m files.
603 (TAGS): Use an explicit language name in the regular expressions,
604 to avoid transformation of '/SOMETHING' by MSYS to
605 'c:\MSYS\SOMETHING'.
606
607 2013-06-07 Richard Copley <rcopley@gmail.com> (tiny change)
608
609 * epaths.in: Fix commentary to PATH_SITELOADSEARCH.
610
611 2013-06-06 Eli Zaretskii <eliz@gnu.org>
612
613 * xdisp.c (note_mouse_highlight): When mouse-highlight is off,
614 still need to set the mouse pointer shape and activate help-echo.
615 (Bug#14558)
616
617 2013-06-06 Paul Eggert <eggert@cs.ucla.edu>
618
619 A few porting etc. fixes for the new file monitor code.
620 See the thread containing
621 <http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00109.html>.
622 * gfilenotify.c (dir_monitor_callback, Fgfile_add_watch)
623 (Fgfile_rm_watch): Don't assume EMACS_INT is the same width as a pointer.
624 (dir_monitor_callback, Fgfile_rm_watch):
625 Use assq_no_quit instead of Fassoc, for speed.
626 (dir_monitor_callback, Fgfile_rm_watch):
627 eassert that the monitor is a fixnum.
628 (dir_monitor_callback): No need for CDR_SAFE.
629 Simplify building of lisp with alternative tails.
630 (Fgfile_add_watch, Fgfile_rm_watch):
631 Do not assume glib functions set errno reliably on failure.
632 (Fgfile_add_watch): Check that the monitor survives the XIL trick,
633 and signal an error otherwise.
634 (Fgfile_rm_watch): Prefer CONSP to !NILP.
635 Use Fdelq instead of Fdelete, for speed.
636
637 2013-06-05 Eli Zaretskii <eliz@gnu.org>
638
639 * xdisp.c (handle_tool_bar_click): When mouse-highlight is off,
640 don't insist on being invoked on a highlighted tool-bar button.
641 Avoids losing tool-bar functionality when mouse-highlight is nil.
642 (note_tool_bar_highlight, note_mode_line_or_margin_highlight):
643 Don't highlight when mouse-highlight is nil.
644 (note_mouse_highlight): When mouse-highlight is nil, don't return
645 right away; instead, run tool-bar and mode-line highlight
646 subroutine, clear any existing highlight, and revert the mouse
647 pointer to its default shape. (Bug#14558)
648
649 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
650
651 * lisp.mk (lisp): Add prog-mode.el.
652
653 2013-06-05 Paul Eggert <eggert@cs.ucla.edu>
654
655 Chain glib's SIGCHLD handler from Emacs's (Bug#14474).
656 * process.c (dummy_handler): New function.
657 (lib_child_handler): New static var.
658 (handle_child_signal): Invoke it.
659 (catch_child_signal): If a library has set up a signal handler,
660 save it into lib_child_handler.
661 (init_process_emacs): If using glib and not on Windows, tickle glib's
662 child-handling code so that it initializes its private SIGCHLD handler.
663 * syssignal.h (SA_SIGINFO): Default to 0.
664 * xterm.c (x_term_init): Remove D-bus hack that I installed on May
665 31; it should no longer be needed now.
666
667 2013-06-05 Michael Albinus <michael.albinus@gmx.de>
668
669 * emacs.c (main) [HAVE_GFILENOTIFY]: Call globals_of_gfilenotify.
670
671 * gfilenotify.c (globals_of_gfilenotify): New function.
672 (syms_of_gfilenotify): Move global initialization there.
673
674 * lisp.h (globals_of_gfilenotify) [HAVE_GFILENOTIFY]: Add prototype.
675
676 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
677
678 * keymap.c (Fcurrent_active_maps, Fdescribe_buffer_bindings):
679 * keyboard.c (menu_bar_items, tool_bar_items):
680 * doc.c (Fsubstitute_command_keys): Voverriding_terminal_local_map does
681 not override local keymaps any more.
682
683 2013-06-04 Eli Zaretskii <eliz@gnu.org>
684
685 * window.c (Fpos_visible_in_window_p): Doc fix. (Bug#14540)
686
687 2013-06-03 Eli Zaretskii <eliz@gnu.org>
688
689 * w32console.c (initialize_w32_display): Return the dimensions of
690 the console window via 2 additional arguments, not via the current
691 frame. This avoids crashes due to overrunning the bounds of
692 frame's decode_mode_spec_buffer, which is not resized following
693 the change of the frame dimensions from the initial 10x10.
694
695 * w32term.h (w32_initialize_display_info): Adjust prototype.
696
697 * term.c (init_tty): Take dimensions of the frame from the values
698 returned by initialize_w32_display.
699
700 * Makefile.in (GFILENOTIFY_CFLAGS, GFILENOTIFY_LIBS): New variables.
701 (ALL_CFLAGS): Add $(GFILENOTIFY_CFLAGS).
702 (LIBES): Add $(GFILENOTIFY_LIBS).
703
704 * w32inevt.c (handle_file_notifications): Add dummy implementation
705 for !HAVE_W32NOTIFY.
706
707 * w32term.c: Wrap code with HAVE_W32NOTIFY.
708
709 2013-06-03 Jan Djärv <jan.h.d@swipnet.se>
710
711 * xgselect.c: Replace #if defined ... with #ifdef HAVE_GLIB.
712
713 * process.c (wait_reading_process_output): Call xg_select if HAVE_GLIB.
714
715 * Makefile.in (XGSELOBJ): New, xgselect.o if GLib is used, or empty.
716
717 2013-06-03 Paul Eggert <eggert@cs.ucla.edu>
718
719 Fix minor problems found by static checking.
720 * data.c (pure_write_error):
721 Use xsignal2, not Fsignal, as Fsignal might return.
722 * eval.c (set_backtrace_debug_on_exit): Now static.
723 (backtrace_p, backtrace_top, backtrace_next, record_in_backtrace):
724 No longer inline. EXTERN_INLINE is needed only for functions
725 defined in .h files. Reindent function header as per GNU style.
726 (backtrace_p, backtrace_top, backtrace_next):
727 Mark EXTERNALLY_VISIBLE so they don't get optimized away by the
728 compiler or linker. Add extern decls to pacify gcc -Wall.
729 * frame.c, frame.h (Qgeometry, Qworkarea, Qmm_size, Qframes, Qsource):
730 Now static.
731 * frame.c (free_monitors): Define only on platforms that need it.
732 * nsterm.m (ns_term_init):
733 * process.c (catch_child_signal):
734 Don't worry about whether SIGCHLD is defined, as SIGCHLD is
735 defined on all porting targets these days.
736 * process.c, process.h (catch_child_signal):
737 Make it extern only if NS_IMPL_GNUSTEP is defined.
738
739 2013-06-03 Eli Zaretskii <eliz@gnu.org>
740
741 * w32.c (gettimeofday): Make the signature identical to prototype
742 in nt/inc/sys/time.h.
743
744 2013-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
745
746 * eval.c (backtrace_p, backtrace_top, backtrace_next): Export them to
747 .gdbinit.
748
749 * keyboard.c (safe_run_hooks_error): Improve error message.
750
751 * data.c (pure_write_error): Add `object' argument.
752 * puresize.h (CHECK_IMPURE): Use it.
753
754 2013-06-03 Michael Albinus <michael.albinus@gmx.de>
755
756 * Makefile.in (NOTIFY_OBJ): New variable.
757 (base_obj): Replace inotify.o by $(NOTIFY_OBJ).
758
759 * emacs.c (main): Use HAVE_W32NOTIFY to wrap respective code.
760 Call syms_of_gfilenotify.
761
762 * gfilenotify.c: New file.
763
764 * keyboard.c (Qfile_notify): New variable. Replaces Qfile_inotify
765 and Qfile_w32notify.
766 (top): Wrap respective code by HAVE_GFILENOTIFY, HAVE_INOTIFY,
767 HAVE_W32NOTIFY and USE_FILE_NOTIFY.
768
769 * lisp.h: Declare syms_of_gfilenotify.
770
771 * termhooks.h (e): Wrap enum by USE_FILE_NOTIFY.
772
773 2013-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
774
775 Merge the specpdl and backtrace stacks. Make the structure of the
776 specpdl entries more obvious via a tagged union of structs.
777 * lisp.h (BITS_PER_PTRDIFF_T): New constant.
778 (enum specbind_tag): New enum.
779 (struct specbinding): Make it a tagged union of structs.
780 Add a case for backtrace records.
781 (specpdl_symbol, specpdl_old_value, specpdl_where, specpdl_arg)
782 (specpdl_func, backtrace_function, backtrace_nargs, backtrace_args)
783 (backtrace_debug_on_exit): New accessors.
784 (struct backtrace): Remove.
785 (struct catchtag): Remove backlist field.
786 * data.c (let_shadows_buffer_binding_p, let_shadows_global_binding_p):
787 Move to eval.c.
788 (Flocal_variable_p): Speed up the common case where the binding is
789 already loaded.
790 * eval.c (backtrace_list): Remove.
791 (set_specpdl_symbol, set_specpdl_old_value): Remove.
792 (set_backtrace_args, set_backtrace_nargs)
793 (set_backtrace_debug_on_exit, backtrace_p, backtrace_top)
794 (backtrace_next): New functions.
795 (Fdefvaralias, Fdefvar): Adjust to new specpdl format.
796 (unwind_to_catch, internal_lisp_condition_case)
797 (internal_condition_case, internal_condition_case_1)
798 (internal_condition_case_2, internal_condition_case_n): Don't bother
799 with backtrace_list any more.
800 (Fsignal): Adjust to new backtrace format.
801 (grow_specpdl): Move up.
802 (record_in_backtrace): New function.
803 (eval_sub, Ffuncall): Use it.
804 (apply_lambda): Adjust to new backtrace format.
805 (let_shadows_buffer_binding_p, let_shadows_global_binding_p): Move from
806 data.c.
807 (specbind): Adjust to new specpdl format. Simplify.
808 (record_unwind_protect, unbind_to): Adjust to new specpdl format.
809 (Fbacktrace_debug, Fbacktrace, Fbacktrace_frame): Adjust to new
810 backtrace format.
811 (mark_backtrace): Remove.
812 (mark_specpdl, get_backtrace, backtrace_top_function): New functions.
813 * xdisp.c (redisplay_internal): Use record_in_backtrace.
814 * alloc.c (Fgarbage_collect): Use record_in_backtrace.
815 Use mark_specpdl.
816 * profiler.c (record_backtrace): Use get_backtrace.
817 (handle_profiler_signal): Use backtrace_top_function.
818 * .gdbinit (xbacktrace, hookpost-backtrace): Use new backtrace
819 accessor functions.
820
821 2013-06-02 Jan Djärv <jan.h.d@swipnet.se>
822
823 * process.h (catch_child_signal): Declare.
824
825 * process.c (catch_child_signal): New function.
826 (init_process_emacs): Call it.
827
828 * nsterm.m: Include process.h if NS_IMPL_GNUSTEP.
829 (ns_menu_bar_is_hidden, menu_will_open_state): Define only if
830 NS_IMPL_COCOA.
831 (x_set_cursor_type): Remove declaration.
832 (ns_update_begin): Only use r and bp if NS_IMPL_COCOA.
833 (ns_update_end, ns_focus, ns_unfocus): Remove GNUStep specific code.
834 (x_set_window_size): Remove 3 pixels from toolbar if NS_IMPL_GNUSTEP.
835 (ns_get_color): Use F suffix on float.
836 (ns_color_to_lisp, ns_query_color): Use EmacsCGFloat.
837 (ns_get_rgb_color): Remove.
838 (x_set_frame_alpha): Move view inside NS_IMPL_COCOA.
839 (note_mouse_movement): x and y are CGFloat.
840 (ns_draw_fringe_bitmap): Remove unused rowY.
841 Change #if to COCOA && >= 10_6.
842 (ns_draw_window_cursor): Remove unused overspill.
843 (ns_draw_underwave): width and x are EamcsCGFloat.
844 (ns_draw_box): thickness is CGFloat.
845 (ns_dumpglyphs_image): Change #if to COCOA && >= 10_6.
846 (ns_send_appdefined): When NS_IMPL_GNUSTEP, redirect to main thread
847 if not in main thread.
848 (ns_get_pending_menu_title, ns_check_menu_open)
849 (ns_check_pending_open_menu): Put inside #if COCOA && >= 10_5.
850 (ns_term_init): Call catch_child_signal if NS_IMPL_GNUSTEP && SIGCHLD.
851 (sendFromMainThread:): New method.
852 (changeFont:): size is CGFloat.
853 (keyDown:): Check for Delete when NS_IMPL_GNUSTEP.
854 Disable warning about permanent text.
855 (characterIndexForPoint:): Adjust return type depending on GNUStep
856 version.
857 (mouseDown:): delta is CGFloat.
858 (updateFrameSize): Remove unised variable f.
859 (initFrameFromEmacs): Move toggleButton inside NS_IMPL_COCOA.
860 Cast float to EmacsCGFloat.
861 (windowWillUseStandardFrame:defaultFrame:): Set maximized_height
862 also to -1 when restoring.
863 (windowDidExitFullScreen:): Put call to updateCollectionBehaviour
864 inside NS_IMPL_COCOA.
865 (toggleFullScreen:): Put call to toggleFullScreen inside
866 NS_IMPL_COCOA. Cast float to EmacsCGFloat.
867 (setPosition:portion:whole:): por is CGFloat.
868 (getMouseMotionPart:window:x:y:): Add F suffix to float.
869 (mouseDown:): Use CGFloat.
870 (mouseDragged:): Remove unised variable edge.
871 (EmacsDocument): Implement for NS_IMPL_GNUSTEP.
872
873 * nsterm.h (EmacsCGFloat): Typedef for OSX and GNUStep when the size
874 of CGFloat differs.
875 (EmacsApp): New variable nextappdefined. Declare sendFromMainThread
876 when NS_IMPL_GNUSTEP.
877 (EmacsDocument): Declare when NS_IMPL_GNUSTEP.
878 (EmacsView): Remove unlockFocusNeedsFlush, add windowDidMove.
879 (EmacsToolbar): Add clearAll. Add tag argument to
880 addDisplayItemWithImage.
881 (EmacsSavePanel, EmacsOpenPanel): Remove getFilename and getDirectory.
882
883 * nsselect.m (ns_get_local_selection): Remove unused variable type.
884
885 * nsmenu.m (ns_update_menubar): Make static.
886 (x_activate_menubar): Surround with ifdef NS_IMPL_COCOA
887 (fillWithWidgetValue:): Add cast to SEL for setAction.
888 (addSubmenuWithTitle:forFrame:): Add cast to SEL for action.
889 (update_frame_tool_bar): Update code for GNUStep.
890 (clearAll): New method.
891 (addDisplayItemWithImage:idx:tag:helpText:enabled:): Handle new tag
892 argument. Call insertItemWithItemIdentifier when NS_IMPL_GNUSTEP.
893 Move identifierToItem setObject and activeIdentifiers addObject before
894 call to insertItemWithItemIdentifier.
895 (validateVisibleItems): Fix indentation.
896 (toolbarAllowedItemIdentifiers:): Return activeIdentifiers.
897 (initWithContentRect:styleMask:backing:defer:): Add ClosableWindow and
898 UtilityWindow to aStyle, remove call to setStyleMask.
899
900 * nsimage.m (setXBMColor:, getPixelAtX:Y:): Use EmacsCGFloat.
901
902 * nsfont.m (ns_attribute_fvalue, ns_spec_to_descriptor)
903 (ns_charset_covers, ns_get_covering_families, nsfont_open):
904 Use F suffix on floats.
905 (ns_char_width): Returns CGFloat.
906 (ns_ascii_average_width): w is CGFloat instead of float.
907 (nsfont_draw): cbuf and c are unsigned. Cast to char* in call to
908 DPSxshow.
909 (ns_glyph_metrics): CGFloat instead of float.
910
911 * nsfns.m (x_set_foreground_color, x_set_background_color):
912 Use EmacsCGFloat.
913 (ns_implicitly_set_icon_type, Fx_create_frame): Make static,
914 remove unused variables.
915 (Fns_read_file_name): Keep track if panel is for save.
916 Use ns_filename_from_panel/ns_directory_from_panel.
917 (Fns_list_services): delegate only used for COCOA.
918 (Fns_convert_utf8_nfd_to_nfc): Remove warning for GNUStep.
919 Just return the input if GNUStep.
920 (x_screen_planes): Remove.
921 (Fxw_color_values): Use EmacsCGFloat
922 (Fns_display_monitor_attributes_list): Only get screen number for
923 Cocoa.
924 (getDirectory, getFilename): Removed from EmacsOpenPanel and
925 EmacsSavePanel.
926 (EmacsOpenPanel:ok:): Use ns_filename_from_panel and
927 ns_directory_from_panel.
928
929 2013-06-01 Paul Eggert <eggert@cs.ucla.edu>
930
931 * process.c (handle_child_signal): Also use WCONTINUED.
932 This is so that list-processes doesn't mistakenly list the process
933 as stopped, when the process has actually been continued and is
934 now running.
935
936 2013-05-31 Paul Eggert <eggert@cs.ucla.edu>
937
938 Don't let D-bus autolaunch mess up SIGCHLD handling (Bug#14474).
939 * xterm.c (x_term_init): Inhibit D-Bus autolaunch if D-Bus is
940 not already configured.
941
942 * fileio.c (Finsert_file_contents): Remove unused local (Bug#8447).
943
944 2013-05-29 Eli Zaretskii <eliz@gnu.org>
945
946 * Makefile.in (mostlyclean): Remove *.res files.
947
948 2013-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
949
950 * fileio.c (Finsert_file_contents): Preserve undo info when reverting
951 a buffer (bug#8447).
952
953 2013-05-27 Eli Zaretskii <eliz@gnu.org>
954
955 * xdisp.c (pos_visible_p): When CHARPOS is displayed frrom a
956 display vector, and we backtrack, handle the case that the
957 previous character position is also displayed from a display
958 vector or covered by a display string or image. (Bug#14476)
959
960 2013-05-25 Jan Djärv <jan.h.d@swipnet.se>
961
962 * xfns.c (Qgeometry, Qworkarea, Qmm_size, Qframes, Qsource): Remove.
963 (struct MonitorInfo, free_monitors): Remove.
964 (x_make_monitor_attribute_list): Call make_monitor_attribute_list.
965 (Fx_display_monitor_attributes_list): Call make_monitor_attribute_list.
966 (syms_of_xfns): Remove DEFSYM for Qgeometry, Qworkarea, Qmm_size,
967 Qframes, Qsource.
968
969 * nsfns.m (Qgeometry, Qworkarea, Qmm_size, Qframes, Qsource): Remove.
970 (struct MonitorInfo, free_monitors): Remove.
971 (ns_screen_name): Make static.
972 (ns_make_monitor_attribute_list): Call make_monitor_attribute_list.
973 (syms_of_nsfns): Remove DEFSYM for Qgeometry, Qworkarea, Qmm_size,
974 Qframes, Qsource.
975
976 * frame.h (Qgeometry, Qworkarea, Qmm_size, Qframes, Qsource): Declare.
977 (struct MonitorInfo): New struct.
978 (free_monitors, make_monitor_attribute_list): Declare.
979
980 * frame.c (Qgeometry, Qworkarea, Qmm_size, Qframes, Qsource):
981 New Lisp_Object:s.
982 (free_monitors, make_monitor_attribute_list): New functions.
983 (syms_of_frame): DEFSYM Qgeometry, Qworkarea, Qmm_size, Qframes,
984 Qsource.
985
986 2013-05-25 Xue Fuqiao <xfq.free@gmail.com>
987
988 * callproc.c (call_process): Refine the doc string. (Bug#14045)
989
990 2013-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
991
992 * keyboard.c: Apply keyboard decoding only to events that come directly
993 from the tty, not from unread-command-events (bug#14368).
994 (read_event_from_main_queue): New function, extracted from read_char).
995 (read_decoded_char): Remove.
996 (read_decoded_event_from_main_queue): New function to replace it.
997 (read_char): Use it.
998 (read_key_sequence): Use read_char rather than read_decoded_char.
999
1000 * keyboard.c (read_decoded_char): Don't decode under w32 (bug#14403).
1001
1002 2013-05-22 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
1003
1004 * casetab.c (init_casetab_once): Fix last change (bug#14424).
1005
1006 2013-05-22 Kenichi Handa <handa@gnu.org>
1007
1008 The following changes are to fix the setting of
1009 buffer-file-coding-system on, for instance, C-x RET c unix RET
1010 _FILE_OF_DOS_EOL_TYPE_ RET.
1011
1012 * coding.h (struct coding_system): New member detected_utf8_chars.
1013
1014 * coding.c (detect_coding_utf_8): Count characters and check EOL
1015 format. Include CATEGORY_MASK_UTF_8_AUTO in detect_info->found if
1016 BOM is there.
1017 (setup_coding_system): Do not initialize coding->head_ascii.
1018 (check_ascii): Do not set coding->eol_seen but update it. Do not
1019 call adjust_coding_eol_type here.
1020 (detect_coding): Fix detection of BOM for utf-8 and utf-16.
1021 If the eol-type of CODING is already specified, adjust the eol type
1022 of the found coding-system.
1023 (decode_coding_gap): Cancel previous change. Utilize the
1024 character numbers counted by detect_coding_utf_8. Fix detection
1025 of BOM for utf-8.
1026
1027 2013-05-21 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
1028
1029 * search.c (looking_at_1): Only set last_thing_searched if the match
1030 changed the match-data (bug#14281).
1031
1032 2013-05-21 Dmitry Antipov <dmantipov@yandex.ru>
1033
1034 * xdisp.c (reseat_at_previous_visible_line_start):
1035 Already declared in dispextern.h, so remove it here.
1036 (move_it_vertically_backward): Likewise.
1037
1038 2013-05-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1039
1040 * xfns.c (check_x_display_info): Don't use XINT for terminal object.
1041 (Fx_display_pixel_width, Fx_display_pixel_height)
1042 (Fx_display_mm_width, Fx_display_mm_height):
1043 Mention `display-monitor-attributes-list' in docstrings.
1044
1045 * nsfns.m (ns_get_screen): Remove function. All uses removed.
1046 (check_ns_display_info): Sync with check_x_display_info in xfns.c.
1047 (Fx_server_max_request_size, Fx_server_vendor, Fx_server_version)
1048 (Fx_display_screens, Fx_display_mm_width, Fx_display_mm_height)
1049 (Fx_display_backing_store, Fx_display_visual_class)
1050 (Fx_display_save_under, Fx_close_connection, Fxw_display_color_p)
1051 (Fx_display_grayscale_p, Fx_display_pixel_width)
1052 (Fx_display_pixel_height, Fx_display_planes)
1053 (Fx_display_color_cells): Sync args and docstrings with xfns.c.
1054 (Fx_display_screens): Don't confuse X11 screens with NS screens.
1055 (Fx_display_mm_width, Fx_display_mm_height)
1056 (Fx_display_pixel_width, Fx_display_pixel_width): Return width or
1057 height for all physical monitors as in X11.
1058
1059 * nsterm.m (x_display_pixel_width, x_display_pixel_height):
1060 Return pixel width or height for all physical monitors as in X11.
1061
1062 2013-05-18 Paul Eggert <eggert@cs.ucla.edu>
1063
1064 Port --enable-gcc-warnings to clang.
1065 * bytecode.c (exec_byte_code):
1066 * regex.c:
1067 Redo diagnostic pragmas to pacify clang, too.
1068 * dbusbind.c (xd_retrieve_arg): Do not use uninitialized variable.
1069 * editfns.c (Fencode_time):
1070 * fileio.c (file_accessible_directory_p):
1071 * font.c (font_unparse_xlfd):
1072 Use '&"string"[index]' instead of '"string" + (index)'.
1073 * undo.c (user_error): Remove; unused.
1074
1075 2013-05-16 Eli Zaretskii <eliz@gnu.org>
1076
1077 * insdel.c (insert_1_both): Document the arguments, instead of
1078 referring to insert_1, which no longer exists.
1079
1080 * xdisp.c (message_dolog): If the *Messages* buffer is shown in
1081 some window, increment windows_or_buffers_changed, so that
1082 *Messages* display in that window is updated. (Bug#14408)
1083
1084 * w32.c: Include epaths.h.
1085 (init_environment): Use cmdproxy.exe without leading directories.
1086 Support emacs.exe in src; point SHELL to cmdproxy in ../nt in that
1087 case.
1088 (gettimeofday): Adjust signature and return value to Posix
1089 expectations.
1090
1091 * unexw32.c (open_output_file): Delete the existing emacs.exe
1092 before creating it, to break the hard link to the versioned
1093 executable.
1094
1095 * Makefile.in (EMACS_MANIFEST, CM_OBJ, TEMACS_POST_LINK)
1096 (ADDSECTION, EMACS_HEAPSIZE, MINGW_TEMACS_POST_LINK)
1097 (FIRSTFILE_OBJ): New variables.
1098 (W32_RES): Rename to EMACSRES. All users changed.
1099 (base_obj): Use $(CM_OBJ).
1100 (ALLOBJS): Use $(FIRSTFILE_OBJ).
1101 (emacs$(EXEEXT)): Depend on $(ADDSECTION).
1102 (temacs$(EXEEXT)): Use $(TEMACS_POST_LINK), and move
1103 $(W32_RES_LINK) before $(LIBES).
1104 (emacs.res): Depend on $(EMACS_MANIFEST). Put emacs.rc in nt.
1105
1106 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
1107
1108 * makefile.w32-in (DOC): Use just "DOC".
1109
1110 * Makefile.in (bootstrap-clean): DOC-* doesn't exist any more.
1111
1112 * process.c: Export default filters and sentinels to Elisp.
1113 (Qinternal_default_process_sentinel, Qinternal_default_process_filter):
1114 New constants.
1115 (pset_filter, pset_sentinel, make_process, Fset_process_filter)
1116 (Fset_process_sentinel, Fformat_network_address):
1117 Default to them instead of nil.
1118 (server_accept_connection): Sentinels can't be nil any more.
1119 (read_and_dispose_of_process_output): New function, extracted from
1120 read_process_output.
1121 (read_process_output): Use it; filters can't be nil.
1122 (Finternal_default_process_filter): New function, extracted from
1123 read_process_output.
1124 (exec_sentinel_unwind): Remove function.
1125 (exec_sentinel): Don't zilch sentinel while running.
1126 (status_notify): Sentinels can't be nil.
1127 (Finternal_default_process_sentinel): New function extracted from
1128 status_notify.
1129 (setup_process_coding_systems): Default filter is not nil any more.
1130 (syms_of_process): Export new Elisp functions and initialize
1131 new constants.
1132 * lisp.h (make_lisp_proc): New function.
1133
1134 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
1135
1136 * regex.c (regex_compile) [\=, \>, \<]: Don't forget to set laststart.
1137
1138 2013-05-14 Eli Zaretskii <eliz@gnu.org>
1139
1140 * w32fns.c (w32_wnd_proc): Don't call WINDOW_HEADER_LINE_HEIGHT
1141 unless we know that the window w is a leaf window.
1142 Another attempt at solving bug#14062.
1143
1144 2013-05-14 Jan Djärv <jan.h.d@swipnet.se>
1145
1146 * nsfont.m (ns_spec_to_descriptor): Retain and autorelease
1147 fdesc (Bug#14375).
1148
1149 2013-05-12 Paul Eggert <eggert@cs.ucla.edu>
1150
1151 * image.c (gif_load): Check that subimages fit (Bug#14345).
1152
1153 2013-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
1154
1155 * lread.c (skip_dyn_eof): New function.
1156 (read1): Use it to skip the end of a file in response to #@00.
1157
1158 * doc.c (get_doc_string): Slightly relax the sanity checking.
1159
1160 2013-05-09 Jan Djärv <jan.h.d@swipnet.se>
1161
1162 * nsfns.m: Include IOGraphicsLib.h if Cocoa.
1163 (Qgeometry, Qworkarea, Qmm_size, Qframes, Qsource): Declare.
1164 (MonitorInfo): New struct.
1165 (free_monitors, ns_screen_name, ns_make_monitor_attribute_list)
1166 (Fns_display_monitor_attributes_list): New functions.
1167 (display-usable-bounds): Remove.
1168 (syms_of_nsfns): DEFSYM Qgeometry, Qworkarea, Qmm_size, Qframes and
1169 Qsource.
1170
1171 2013-05-09 Paul Eggert <eggert@cs.ucla.edu>
1172
1173 * xterm.h (GTK_PREREQ): Remove, replacing with GTK_CHECK_VERSION.
1174 (GTK_CHECK_VERSION): New macro, if not already defined.
1175 All uses of GTK_PREREQ, GTK_MAJOR_VERSION, etc.
1176 replaced by GTK_CHECK_VERSION.
1177
1178 2013-05-08 Paul Eggert <eggert@cs.ucla.edu>
1179
1180 * xterm.h (GTK_PREREQ): New macro.
1181 All simple uses of GTK_MAJOR_VERSION and GTK_MINOR_VERSION changed
1182 to use this macro instead, for consistency and clarity.
1183
1184 2013-05-08 Eli Zaretskii <eliz@gnu.org>
1185
1186 * xdisp.c (row_for_charpos_p): New function, with code of
1187 cursor_row_p, but accepts an additional argument CHARPOS instead
1188 of using a hardcoded PT.
1189 (cursor_row_p): Call row_for_charpos_p with 2nd argument PT.
1190 (row_containing_pos): Call row_for_charpos_p instead of partially
1191 doing the same. Fixes cursor positioning under longlines-mode
1192 when longlines-show-effect includes more than one newline, when
1193 moving the cursor vertically up.
1194
1195 2013-05-08 Juanma Barranquero <lekktu@gmail.com>
1196
1197 * makefile.w32-in (ACL_H): New macro.
1198 ($(BLD)/fileio.$(O)): Update dependencies.
1199
1200 2013-05-07 Paul Eggert <eggert@cs.ucla.edu>
1201
1202 Use Gnulib ACL implementation, for benefit of Solaris etc. (Bug#14295)
1203 * Makefile.in (LIB_ACL): New macro.
1204 (LIBACL_LIBS): Remove.
1205 (LIBES): Use LIB_ACL, not LIBACL_LIBS.
1206 * fileio.c: Include <acl.h>.
1207 Use HAVE_ACL_SET_FILE rather than HAVE_POSIX_ACL.
1208 (ACL_NOT_WELL_SUPPORTED): Remove. All uses replaced by
1209 !acl_errno_valid.
1210 (Fcopy_file) [!WINDOWSNT]: Use qcopy_acl instead of rolling
1211 it ourselves.
1212
1213 * unexelf.c: Don't assume ElfW (Half) fits in int.
1214 (entry_address, find_section, unexec): Use ptrdiff_t, not int,
1215 when dealing with ElfW (Half) values, since they can exceed 2**31
1216 on 64-bit OpenBSD hosts. Problem reported privately by Han Boetes.
1217 (entry_address): Omit unused NUM arg. All uses changed.
1218
1219 2013-05-07 Juri Linkov <juri@jurta.org>
1220
1221 * callint.c (Fcall_interactively): Set `visargs[i]' for code 'n'
1222 to the string converted from number with `Fnumber_to_string'.
1223 (Bug#14254)
1224
1225 2013-05-07 Paul Eggert <eggert@cs.ucla.edu>
1226
1227 * xfns.c (x_get_net_workarea): Define only if !GTK || GTK<3.4.
1228 This fixes a problem introduced by my previous change.
1229
1230 2013-05-07 Glenn Morris <rgm@gnu.org>
1231
1232 * lread.c (readchar): Don't read from a dead buffer. (Bug#14280)
1233
1234 2013-05-07 Jan Djärv <jan.h.d@swipnet.se>
1235
1236 * xfns.c: Move misplaced ifndef USE_GTK from previous checkin.
1237
1238 2013-05-07 Paul Eggert <eggert@cs.ucla.edu>
1239
1240 Static checking by GCC 4.8.0.
1241 * xfns.c (x_get_net_workarea, struct MonitorInfo, free_monitors)
1242 (x_get_monitor_for_frame, x_make_monitor_attribute_list)
1243 (x_get_monitor_attributes_fallback)
1244 (x_get_monitor_attributes_xinerama)
1245 (x_get_monitor_attributes_xrandr, x_get_monitor_attributes):
1246 Define only if USE_GTK.
1247 (free_monitors): Define only if HAVE_XINERAMA || HAVE_XRANDR.
1248 (x_get_monitor_attributes_fallback): Omit unused locals.
1249 (x_get_monitor_attributes_xinerama, Fx_display_monitor_attributes_list):
1250 Use double, not float, to avoid mixed-mode floating point arithmetic.
1251
1252 2013-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1253 Jan Djärv <jan.h.d@swipnet.se>
1254
1255 * Makefile.in (XRANDR_LIBS, XRANDR_CFLAGS, XINERAMA_LIBS)
1256 (XINERAMA_CFLAGS): New macros.
1257 (ALL_CFLAGS, LIBES): Use them.
1258
1259 * xfns.c: Include <X11/extensions/Xrandr.h> if HAVE_XRANDR, and
1260 include <X11/extensions/Xinerama.h> if HAVE_XINERAMA.
1261 (Qgeometry, Qworkarea, Qmm_size, Qframes, Qsource): New variables.
1262 (syms_of_xfns): DEFSYM them.
1263 (struct MonitorInfo): New struct.
1264 (x_get_net_workarea, free_monitors, x_get_monitor_for_frame)
1265 (x_make_monitor_attribute_list, x_get_monitor_attributes_fallback)
1266 (x_get_monitor_attributes_xrandr, x_get_monitor_attributes)
1267 (x_get_monitor_attributes_xinerama): New functions.
1268 (Fx_display_monitor_attributes_list): New primitive.
1269 (syms_of_xfns): Defsubr it.
1270
1271 * xterm.h (x_display_info): Add Xatom_net_workarea and
1272 Xatom_net_current_desktop.
1273
1274 * xterm.c (x_term_init): Initialize dpyinfo->Xatom_net_workarea
1275 and dpyinfo->Xatom_net_current_desktop.
1276
1277 2013-05-06 Eli Zaretskii <eliz@gnu.org>
1278
1279 * xdisp.c (pos_visible_p): Use the special code for finding the
1280 beginning of a display property or overlay for any "replacing"
1281 display property, not just for display strings. This solves
1282 incorrect reporting of position by posn-at-point. (Bug#14241)
1283
1284 2013-05-06 Paul Eggert <eggert@cs.ucla.edu>
1285
1286 * unexelf.c: Fix some 32-bit integer problems, notably when debugging.
1287 Include <limits.h>, <stdbool.h>, <intprops.h>, <verify.h>.
1288 Verify that ElfW (Half) fits in int.
1289 (fatal): Use same signature as lisp.h.
1290 (UNEXELF_DEBUG): New macro, replacing DEBUG, so that people can
1291 configure and build with -DUNEXELF_DEBUG without worrying about
1292 other modules that use DEBUG.
1293 (DEBUG_LOG) [UNEXELF_DEBUG]: New macro. All debug code that prints
1294 possibly-wide integers now uses it instead of plain fprintf.
1295 (entry_address): New function, which avoids problems with 32-bit
1296 overflow on 64-bit hosts.
1297 (OLD_SECTION_H, NEW_SECTION_H, NEW_PROGRAM_H): Use it.
1298 (round_up): Don't assume the remainder fits in int.
1299 (find_section): Use bool for boolean. Simplify debug code.
1300 (unexec): Don't assume file sizes fit in int or size_t.
1301 Omit unnecessary trailing newline in 'fatal' format.
1302 Use strerror rather than outputting decimal error number.
1303 Remove unused code when emacs is not defined;
1304 this file relies on Emacs now.
1305 Don't assume e_phnum and e_shnum are positive.
1306
1307 * regex.c: Fix problems when DEBUG is defined.
1308 (extract_number, extract_number_and_incr): Define regardless of
1309 whether DEBUG is defined; that's simpler and makes the code less
1310 likely to go stale in the normal case when DEBUG is not defined.
1311 Return int rather than taking an int * arg. All callers changed.
1312 (DEBUG_PRINT1, DEBUG_PRINT2, DEBUG_PRINT3, DEBUG_PRINT4):
1313 Remove, replacing with ...
1314 (DEBUG_PRINT): New macro. All callers changed.
1315 (DEBUG_COMPILES_ARGUMENTS): New macro.
1316 (print_fastmap, print_partial_compiled_pattern) [DEBUG]:
1317 (print_compiled_pattern, print_double_string) [DEBUG]:
1318 Use prototype rather than old-style definition.
1319 (print_partial_compiled_pattern, print_compiled_pattern) [DEBUG]:
1320 (ENSURE_FAIL_STACK, PUSH_FAILURE_REG) [DEBUG]:
1321 (POP_FAILURE_REG_OR_COUNT, PUSH_FAILURE_POINT) [DEBUG]:
1322 (POP_FAILURE_POINT, re_match_2_internal) [DEBUG]:
1323 Don't assume ptrdiff_t, size_t, and long are the same width as int.
1324 (POINTER_TO_OFFSET): Return ptrdiff_t, not regoff_t.
1325 This matters only when DEBUG is defined.
1326
1327 2013-05-05 Eli Zaretskii <eliz@gnu.org>
1328
1329 * xdisp.c (set_iterator_to_next): Set the
1330 ignore_overlay_strings_at_pos_p flag only if we are _really_
1331 iterating over an overlay string, as indicated by the
1332 current.overlay_string_index member. (Bug#14306)
1333
1334 2013-05-05 Jan Djärv <jan.h.d@swipnet.se>
1335
1336 * nsmenu.m (ns_update_menubar): Move initialization of submenuTitle
1337 to where it is used, to avoid autorelease issues (Bug#14050).
1338
1339 2013-05-05 Paul Eggert <eggert@cs.ucla.edu>
1340
1341 `write-region-inhibit-fsync' defaults to noninteractive (Bug#14273).
1342 * fileio.c (syms_of_fileio): Implement this.
1343 * filelock.c (create_lock_file): If symbolic links don't work, so
1344 we use a regular file as a lock file, do not fsync the lock file;
1345 it's not needed.
1346
1347 2013-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
1348
1349 * minibuf.c (Fread_minibuffer, Feval_minibuffer): Move to Elisp.
1350 (syms_of_minibuf): Adjust accodingly.
1351 * lread.c (Fread):
1352 * callint.c (Fcall_interactively): Adjust calls accordingly.
1353
1354 2013-05-04 Eli Zaretskii <eliz@gnu.org>
1355
1356 * dispextern.h (WINDOW_WANTS_HEADER_LINE_P): Verify that
1357 w->contents is a buffer before computing everything else.
1358 Use parentheses to disambiguate last part of the condition.
1359
1360 * w32fns.c (w32_wnd_proc): Remove temporary code used to trap
1361 assertion violations. (Bug#14062)
1362
1363 2013-05-01 David Reitter <david.reitter@gmail.com>
1364
1365 * nsfns.m (ns_tooltip): Initialize.
1366
1367 2013-04-28 Eli Zaretskii <eliz@gnu.org>
1368
1369 * coding.c (decode_coding_gap): Don't remove the character before
1370 a newline unless it's a CR character. (Bug#14287)
1371
1372 2013-04-28 Dan Nicolaescu <dann@gnu.org>
1373
1374 * dispextern.h (struct face): Move enum face_underline_type
1375 earlier so that bitfields can be in the same word.
1376
1377 2013-04-28 Jan Djärv <jan.h.d@swipnet.se>
1378
1379 * nsfns.m (handlePanelKeys): New function.
1380 (EmacsOpenPanel:performKeyEquivalent:)
1381 (EmacsSavePanel:performKeyEquivalent:): Call handlePanelKeys to handle
1382 arrows/function/control and copy/paste keys (Bug#14296).
1383
1384 2013-04-27 Juri Linkov <juri@jurta.org>
1385
1386 * callint.c (Fcall_interactively): Call `Qread_number' for
1387 interactive code letter `n' instead of using duplicate code.
1388 (Bug#14254)
1389
1390 2013-04-27 Paul Eggert <eggert@cs.ucla.edu>
1391
1392 * systime.h (make_timeval): Declare as 'const'.
1393
1394 2013-04-27 Kenichi Handa <handa@gnu.org>
1395
1396 * font.c (font_open_entity): Always open a font of manageable
1397 size.
1398
1399 2013-04-26 Paul Eggert <eggert@cs.ucla.edu>
1400
1401 Port better to AIX (Bug#14258).
1402 * lisp.h (ENUM_BF) [__IBMC__]: Make it 'unsigned int' here, too,
1403 to pacify AIX xlc.
1404
1405 2013-04-24 Kenichi Handa <handa@gnu.org>
1406
1407 * coding.c (decode_coding_iso_2022): When an invalid escape
1408 sequence is encountered, reset the invocation and designation
1409 status to the safest one.
1410
1411 2013-04-22 Paul Eggert <eggert@cs.ucla.edu>
1412
1413 * Makefile.in (bootstrap-clean): Remove stamp-h1 too.
1414 Without this fix, "make distclean" leaves stamp-h1 behind.
1415
1416 2013-04-20 Erik Charlebois <erikcharlebois@gmail.com>
1417
1418 * w32fns.c (w32_fullscreen_rect): New function to compute the
1419 window rectangle for the given fullscreen mode.
1420 (w32_wnd_proc): When in a fullscreen mode, WM_WINDOWPOSCHANGING no
1421 longer tunes the window size. This keeps the window's edges flush
1422 with the screen and allows the taskbar to hide itself in fullboth.
1423
1424 * w32term.c (w32fullscreen_hook): 'fullboth' now shows without
1425 window decorations and uses the entire screen.
1426
1427 * w32term.h (w32_fullscreen_rect) Add prototype.
1428 (struct w32_output): Replace normal_width, normal_height,
1429 normal_top, and normal_left members with a single normal_placement
1430 struct.
1431 (FRAME_NORMAL_WIDTH, FRAME_NORMAL_HEIGHT, FRAME_NORMAL_TOP):
1432 Remove macros.
1433 (FRAME_NORMAL_PLACEMENT): New macro.
1434
1435 2013-04-16 Juanma Barranquero <lekktu@gmail.com>
1436
1437 * minibuf.c (Ftest_completion): Silence compiler warning.
1438
1439 2013-04-15 Eli Zaretskii <eliz@gnu.org>
1440
1441 * w32fns.c (w32_wnd_proc): Add more assertions to investigate
1442 bug#14062.
1443
1444 * frame.h (WINDOW_FRAME): Protect macro and its argument with
1445 parentheses.
1446
1447 * dispextern.h (CURRENT_MODE_LINE_HEIGHT)
1448 (CURRENT_HEADER_LINE_HEIGHT, WINDOW_WANTS_MODELINE_P)
1449 (WINDOW_WANTS_HEADER_LINE_P): Protect macro arguments with
1450 parentheses where appropriate.
1451
1452 2013-04-14 Paul Eggert <eggert@cs.ucla.edu>
1453
1454 * keyboard.c (timer_start_idle): Remove no-longer-used local.
1455
1456 2013-04-14 Eli Zaretskii <eliz@gnu.org>
1457
1458 * buffer.c (syms_of_buffer) <left-margin-width, right-margin-width>
1459 <left-fringe-width, right-fringe-width, fringes-outside-margins>:
1460 Mention in the doc string that setting these variables takes
1461 effect only after a call to set-window-buffer. (Bug#14200)
1462
1463 2013-04-13 Eli Zaretskii <eliz@gnu.org>
1464
1465 * indent.c (Fvertical_motion): Don't consider display strings on
1466 overlay strings as display strings on the buffer position we
1467 started from. This prevents vertical cursor motion from jumping
1468 more than one line when there's an overlay string with a display
1469 property at end of line.
1470 Reported by Karl Chen <Karl.Chen@quarl.org> in
1471 http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00362.html.
1472
1473 2013-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
1474
1475 * window.c (select_window): `record_buffer' even if window is
1476 already selected (bug#14191).
1477
1478 2013-04-11 Eli Zaretskii <eliz@gnu.org>
1479
1480 * window.c (Fwindow_end): Test more flags, including the buffer's
1481 last_overlay_modified flag, to determine whether the window's
1482 display is really up-to-date. Prevents the function from
1483 returning a stale value. (Bug#14170)
1484 (Fwindow_line_height): Fix the test for up-to-date-ness of the
1485 current matrix.
1486
1487 2013-04-10 Eli Zaretskii <eliz@gnu.org>
1488
1489 * frame.c (do_switch_frame): Mark the TTY frame we switch to as
1490 garbaged only if it is not already the top frame on its TTY.
1491 This prevents flickering due to constant redrawing of TTY frames when
1492 there are GUI frames open in the same session. (Bug#13864)
1493
1494 2013-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
1495
1496 * keyboard.c (timer_start_idle): Call internal-timer-start-idle instead
1497 of marking the idle timers directly.
1498
1499 2013-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
1500
1501 * minibuf.c (Ftest_completion): Ignore non-string/symbol keys in hash
1502 tables (bug#14054).
1503
1504 2013-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
1505
1506 * window.c (select_window): Don't record_buffer while the invariant is
1507 temporarily broken (bug#14161).
1508
1509 * fns.c (Fdelq): Don't assume !NILP => CONSP.
1510
1511 2013-04-07 Eli Zaretskii <eliz@gnu.org>
1512
1513 * fileio.c (ACL_NOT_WELL_SUPPORTED): Define macro for WINDOWSNT.
1514
1515 2013-04-07 Romain Francoise <romain@orebokech.com>
1516
1517 Ignore additional platform-specific ACL errors (Bug#13702).
1518 * fileio.c (ACL_NOT_WELL_SUPPORTED): New macro copied from gnulib.
1519 (Fcopy_file, Fset_file_acl) [HAVE_POSIX_ACL]: Use it.
1520
1521 2013-03-31 Jan Djärv <jan.h.d@swipnet.se>
1522
1523 * nsterm.m (ns_mouse_position): Use NS_FRAME_P instead of checking
1524 f->output_data.ns.
1525
1526 2013-04-07 Paul Eggert <eggert@cs.ucla.edu>
1527
1528 Fix --enable-profiling bug introduced by 2013-02-25 change (Bug#13783).
1529 This bug was introduced by my 2013-02-25 change that simplified
1530 data_start configuration. Without this change, on GNU/Linux
1531 an Emacs configured with --enable-profiling fails immediately
1532 due to a profiler signal.
1533 * Makefile.in: Compile with $(PROFILING_CFLAGS), but do not link
1534 with these flags. On platforms where special flags are needed
1535 when linking temacs, the flags are now in LD_SWITCH_SYSTEM_TEMACS.
1536 (ALL_CFLAGS): Remove $(PROFILING_CFLAGS).
1537 (.c.o, .m.o): Compile with $(PROFILING_CFLAGS).
1538
1539 2013-04-07 Dmitry Antipov <dmantipov@yandex.ru>
1540
1541 Get rid of some platform-specific functions examining window
1542 system and its capabilities. This is a partial rework of the
1543 2013-04-05 change.
1544 * lisp.h (have_menus_p): Remove prototype. This function is
1545 replaced with platform-independent window_system_available.
1546 (check_window_system): Move to...
1547 * frame.h (decode_window_system_frame, window_system_available):
1548 ...here, add new prototypes.
1549 * frame.c (window_system_available, decode_window_system_frame):
1550 New functions.
1551 (check_window_system): Platform-independent now.
1552 * xterm.h (x_in_use): Remove declaration.
1553 (check_x_frame):
1554 * w32term.h (check_x_frame):
1555 * nsterm.h (check_x_frame): Remove prototypes. This function
1556 is replaced with platform-independent decode_window_system_frame.
1557 * msdos.c (have_menus_p): Remove.
1558 * nsfns.m (check_window_system, have_menus_p, check_ns_frame):
1559 Remove platform-specific functions. Use check_window_system,
1560 decode_window_system_frame and check_ns_display_info where
1561 appropriate. Minor style and comment tweaks.
1562 * w32fns.c (w32_in_use, check_window_system, have_menus_p)
1563 (check_x_frame): Likewise.
1564 * xfns.c (x_in_use, check_window_system, have_menus_p, check_x_frame):
1565 Likewise.
1566 * fileio.c, fns.c, font.c, fontset.c, image.c, menu.c, nsmenu.m:
1567 * nsselect.m, nsterm.m, w32font.c, w32menu.c, xfaces.c, xgselect.c:
1568 * xmenu.c, xselect.c: All related users changed.
1569
1570 2013-04-03 Kenichi Handa <handa@gnu.org>
1571
1572 The following changes is to optimize the code for reading UTF-8
1573 files.
1574
1575 * coding.c (check_ascii): Rename from detect_ascii. Return value
1576 changed. Check EOL format. Do not call adjust_coding_eol_type
1577 here.
1578 (check_utf_8): New function.
1579 (adjust_coding_eol_type): Do nothing if already adjusted.
1580 (detect_coding): Compare the return value of check_ascii with
1581 coding->src_bytes. Call adjust_coding_eol_type if necessary.
1582 (decode_coding_gap): Optimize for valid UTF-8.
1583
1584 2013-03-21 Kenichi Handa <handa@gnu.org>
1585
1586 * coding.c (syms_of_coding): Cancel previous change.
1587
1588 * insdel.c (insert_from_gap): Fix previous change.
1589
1590 2013-04-05 Dmitry Antipov <dmantipov@yandex.ru>
1591
1592 Consistently use platform-specific function to detect window system.
1593 * lisp.h (check_window_system): New prototype. This function is
1594 going to replace check_x, check_w32 and check_ns.
1595 (have_menus_p): Mention msdos.c in comment.
1596 * fontset.c (check_window_system_func): Remove. Adjust all users.
1597 * fontset.h (check_window_system_func): Remove prototype.
1598 * nsterm.h (check_ns):
1599 * xterm.h (check_x):
1600 * w32term.h (check_w32): Likewise.
1601 * menu.c (Fx_popup_menu): Use check_window_system.
1602 * msdos.c (check_window_system): Define for MS-DOS.
1603 * nsfns.m (check_window_system): Define for NS. Adjust all users.
1604 * w32fns.c (check_window_system): Likewise for MS-Windows.
1605 * xfns.c (check_window_system): Likewise for X.
1606 * font.c, frame.c, nsmenu.m, nsselect.m, nsterm.m, w32menu.c:
1607 * xfaces.c, xmenu.c: Use check_window_system where appropriate.
1608
1609 2013-04-02 Paul Eggert <eggert@cs.ucla.edu>
1610
1611 Prefer < to > in range checks such as 0 <= i && i < N.
1612 This makes it easier to visualize quantities on a number line.
1613 This patch doesn't apply to all such range checks,
1614 only to the range checks affected by the 2013-03-24 change.
1615 This patch reverts most of the 2013-03-24 change.
1616 * alloc.c (xpalloc, Fgarbage_collect):
1617 * ccl.c (ccl_driver, resolve_symbol_ccl_program):
1618 * character.c (string_escape_byte8):
1619 * charset.c (read_hex):
1620 * data.c (cons_to_unsigned):
1621 * dispnew.c (update_frame_1):
1622 * doc.c (Fsubstitute_command_keys):
1623 * doprnt.c (doprnt):
1624 * editfns.c (hi_time, decode_time_components):
1625 * fileio.c (file_offset):
1626 * fns.c (larger_vector, make_hash_table, Fmake_hash_table):
1627 * font.c (font_intern_prop):
1628 * frame.c (x_set_alpha):
1629 * gtkutil.c (get_utf8_string):
1630 * indent.c (check_display_width):
1631 * keymap.c (Fkey_description):
1632 * lisp.h (FIXNUM_OVERFLOW_P, vcopy):
1633 * lread.c (read1):
1634 * minibuf.c (read_minibuf_noninteractive):
1635 * process.c (wait_reading_process_output):
1636 * search.c (Freplace_match):
1637 * window.c (get_phys_cursor_glyph):
1638 * xdisp.c (redisplay_internal):
1639 * xsmfns.c (smc_save_yourself_CB):
1640 Prefer < to > for range checks.
1641 * dispnew.c (sit_for): Don't mishandle NaNs.
1642 This fixes a bug introduced in the 2013-03-24 change.
1643 * editfns.c (decode_time_components): Don't hoist comparison.
1644 This fixes another bug introduced in the 2013-03-24 change.
1645
1646 2013-03-31 Dmitry Antipov <dmantipov@yandex.ru>
1647
1648 * frame.h (struct frame): Drop scroll_bottom_vpos
1649 member becaue all real users are dead long ago.
1650 (FRAME_SCROLL_BOTTOM_VPOS): Remove.
1651 * xdisp.c (redisplay_internal): Adjust user.
1652
1653 2013-03-30 Darren Ho <darren.hoo@gmail.com> (tiny change)
1654
1655 * nsmenu.m (showAtX:Y:for:): setLevel to
1656 NSPopUpMenuWindowLevel (Bug#13998).
1657
1658 2013-03-30 Jan Djärv <jan.h.d@swipnet.se>
1659
1660 * nsterm.h (ns_get_pending_menu_title, ns_check_menu_open)
1661 (ns_check_pending_open_menu): Declare.
1662
1663 * nsmenu.m (ns_update_menubar): Correct NSTRACE.
1664 (x_activate_menubar): Update the menu with title that matches
1665 ns_get_pending_menu_title, and call
1666 ns_check_pending_openmenu (Bug#12698).
1667 (menuWillOpen:): New method.
1668 (menuNeedsUpdate:): Add check for ! COCOA || OSX < 10.5 (Bug#12698).
1669
1670 * nsterm.m (menu_will_open_state, menu_mouse_point)
1671 (menu_pending_title): New varaibles.
1672 (ns_get_pending_menu_title, ns_check_menu_open)
1673 (ns_check_pending_open_menu): New functions.
1674
1675 2013-03-29 Dmitry Antipov <dmantipov@yandex.ru>
1676
1677 * indent.c (current_column_bol_cache): Remove leftover which is not
1678 used in Fmove_to_column any more.
1679 (current_column, scan_for_column): Adjust users.
1680 * keyboard.c (last_point_position_buffer, last_point_position_window):
1681 Remove leftovers which are not used for recording undo any more.
1682 (command_loop_1, syms_of_keyboard): Adjust users.
1683 * xdisp.c (last_max_ascent): Remove leftover which is not used in
1684 redisplay_window any more.
1685 (move_it_to): Adjust user.
1686
1687 2013-03-29 Juanma Barranquero <lekktu@gmail.com>
1688
1689 * makefile.w32-in ($(BLD)/filelock.$(O), $(BLD)/filelock.$(O)):
1690 Update dependencies.
1691
1692 2013-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
1693
1694 * lisp.h (save_type, XSAVE_POINTER, set_save_pointer, XSAVE_INTEGER)
1695 (set_save_integer, XSAVE_OBJECT, XSAVE_VALUE): Move to avoid
1696 forward references.
1697
1698 2013-03-28 Dmitry Antipov <dmantipov@yandex.ru>
1699
1700 * window.h (struct window): Replace hchild, vchild and buffer slots
1701 with the only contents slot. This is possible because each valid
1702 window may have either the child window (in vertical or horizontal
1703 combination) or buffer to display (for the leaf window). Using that,
1704 a lof of operations to traverse and/or change window hierarchies may
1705 be simplified. New member horizontal is used to distinguish between
1706 horizontal and vertical combinations of internal windows.
1707 (WINDOW_LEAF_P, WINDOW_HORIZONTAL_COMBINATION_P)
1708 (WINDOW_VERTICAL_COMBINATION_P): New macros.
1709 (WINDOW_VALID_P, WINDOW_LIVE_P): Adjust to match struct window changes.
1710 * window.c (wset_hchild, wset_vchild): Remove. Adjust all users.
1711 Use contents slot, not buffer, where appropriate.
1712 (wset_combination): New function.
1713 (wset_buffer): Add eassert.
1714 (Fframe_first_window): Simplify the loop reaching first window.
1715 (Fwindow_buffer): Use WINDOW_LEAF_P.
1716 (Fwindow_top_child): Use WINDOW_VERTICAL_COMBINATION_P.
1717 (Fwindow_left_child): Use WINDOW_HORIZONTAL_COMBINATION_P.
1718 (unshow_buffer): Convert initial debugging check to eassert.
1719 (replace_window, recombine_windows, Fdelete_other_windows_internal)
1720 (make_parent_window, window_resize_check, window_resize_apply)
1721 (resize_frame_windows, Fsplit_window_internal, Fdelete_window_internal)
1722 (Fset_window_configuration, delete_all_child_windows, save_window_save):
1723 Adjust to match struct window changes.
1724 (window_loop): Check for broken markers in CHECK_ALL_WINDOWS.
1725 (mark_window_cursors_off, count_windows, get_leaf_windows)
1726 (foreach_window_1): Simplify the loop.
1727 * alloc.c (mark_object): Do not check for the leaf window because
1728 internal windows has no glyph matrices anyway.
1729 * dispnew.c (clear_window_matrices, showing_window_margins_p)
1730 (allocate_matrices_for_window_redisplay, fake_current_matrices)
1731 (allocate_matrices_for_frame_redisplay, free_window_matrices)
1732 (build_frame_matrix_from_window_tree, mirror_make_current)
1733 (frame_row_to_window, mirror_line_dance, check_window_matrix_pointers)
1734 (update_window_tree, set_window_update_flags): Simplify the loop.
1735 (sync_window_with_frame_matrix_rows): Enforce live window.
1736 Use contents slot, not buffer, where appropriate.
1737 * frame.c (set_menu_bar_lines_1): Use WINDOW_VERTICAL_COMBINATION_P
1738 and WINDOW_HORIZONTAL_COMBINATION_P.
1739 (make_frame_visible_1): Simplify the loop.
1740 Use contents slot, not buffer, where appropriate.
1741 * xdisp.c (hscroll_window_tree, mark_window_display_accurate)
1742 (redisplay_windows, redisplay_mode_lines, update_cursor_in_window_tree)
1743 (expose_window_tree): Likewise.
1744 Use contents slot, not buffer, where appropriate.
1745 * textprop.c (get_char_property_and_overlay): Add CHECK_LIVE_WINDOW
1746 to avoid deleted windows. Use contents slot instead of buffer.
1747 * buffer.c, dispextern.h, editfns.c, fileio.c, font.c, fringe.c:
1748 * indent.c, insdel.c, keyboard.c, keymap.c, minibuf.c, msdos.c:
1749 * nsfns.m, nsmenu.m, nsterm.m, print.c, w32fns.c, w32menu.c, xfaces.c:
1750 * xfns.c, xmenu.c: Use contents slot, not buffer, where appropriate.
1751
1752 2013-03-28 Eli Zaretskii <eliz@gnu.org>
1753
1754 * w32fns.c (w32_wnd_proc) [ENABLE_CHECKING]: Add code to help
1755 identify the reasons for assertion violations in bug#14062 and
1756 similar ones.
1757 (Fx_show_tip): Fix compilation error under
1758 "--enable-check-lisp-object-type". (Bug#14073)
1759
1760 * image.c (g_error_free) [WINDOWSNT]: Add DEF_IMGLIB_FN.
1761 Reported by <rzl24ozi@gmail.com>.
1762
1763 2013-03-28 Dmitry Antipov <dmantipov@yandex.ru>
1764
1765 * xdisp.c (with_echo_area_buffer_unwind_data): Save window
1766 start marker...
1767 (unwind_with_echo_area_buffer): ...to restore it here.
1768 This is needed to ensure that...
1769 (redisplay_window): ...both window markers are valid here,
1770 which is verified by eassert.
1771 * editfns.c (save_excursion_save): Do not assume that
1772 selected_window always displays the buffer.
1773 * buffer.c (Fbuffer_swap_text): Adjust window start markers.
1774 Fix comment.
1775
1776 2013-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
1777
1778 * casetab.c (init_casetab_once): Don't abuse the ascii eqv table for
1779 the upcase table.
1780
1781 2013-03-27 rzl24ozi <rzl24ozi@gmail.com> (tiny changes)
1782
1783 * image.c [WINDOWSNT]: Fix calls to DEF_IMGLIB_FN for SVG function.
1784
1785 2013-03-27 Eli Zaretskii <eliz@gnu.org>
1786
1787 * w32proc.c (IsValidLocale) [__GNUC__]: Don't declare prototype,
1788 since MinGW's w32api headers do. This avoids compiler warnings.
1789
1790 * w32.c (FSCTL_GET_REPARSE_POINT) [_MSC_VER || _W64]: Don't define
1791 if already defined.
1792
1793 2013-03-26 Eli Zaretskii <eliz@gnu.org>
1794
1795 * w32.c (_REPARSE_DATA_BUFFER): Condition by _MSVC and _W64.
1796
1797 2013-03-26 Jan Djärv <jan.h.d@swipnet.se>
1798
1799 * gtkutil.c (style_changed_cb): Check if frame is live and an
1800 X frame (Bug#14038).
1801
1802 2013-03-26 Eli Zaretskii <eliz@gnu.org>
1803
1804 * w32.c (_PROCESS_MEMORY_COUNTERS_EX) [_WIN32_WINNT < 0x0500]:
1805 Define only for _WIN32_WINNT less than 0x0500.
1806 (_ANONYMOUS_UNION, _ANONYMOUS_STRUCT) [!_W64]: Don't define for
1807 MinGW64.
1808 Move inclusion of time.h before sys/time.h, so that MinGW64 could
1809 see its own definitions of 'struct timeval' and 'struct timezone'.
1810
1811 Fix incompatibilities between MinGW.org and MinGW64 headers.
1812 * w32term.c (WCRANGE, GLYPHSET): Don't define if _W64 is defined.
1813
1814 * w32.c (REPARSE_DATA_BUFFER): Guard with
1815 MAXIMUM_REPARSE_DATA_BUFFER_SIZE being defined.
1816
1817 2013-03-25 Jan Djärv <jan.h.d@swipnet.se>
1818
1819 * xterm.c: Include X11/XKBlib.h
1820 (XTring_bell): Use XkbBell if HAVE_XKB (Bug#14041).
1821
1822 2013-03-24 Andreas Schwab <schwab@linux-m68k.org>
1823
1824 * alloc.c (xpalloc, Fgarbage_collect): Reorder conditions that are
1825 written backwards.
1826 * blockinput.h (input_blocked_p): Likewise.
1827 * bytecode.c (exec_byte_code): Likewise.
1828 * callproc.c (call_process_kill, call_process_cleanup)
1829 (Fcall_process): Likewise.
1830 * ccl.c (ccl_driver, resolve_symbol_ccl_program)
1831 (Fccl_execute_on_string): Likewise.
1832 * character.c (string_escape_byte8): Likewise.
1833 * charset.c (read_hex): Likewise.
1834 * cm.c (calccost): Likewise.
1835 * data.c (cons_to_unsigned): Likewise.
1836 * dired.c (directory_files_internal, file_name_completion):
1837 Likewise.
1838 * dispnew.c (scrolling_window, update_frame_1, Fsleep_for)
1839 (sit_for): Likewise.
1840 * doc.c (Fsubstitute_command_keys): Likewise.
1841 * doprnt.c (doprnt): Likewise.
1842 * editfns.c (hi_time, decode_time_components, Fformat): Likewise.
1843 * emacsgtkfixed.c: Likewise.
1844 * fileio.c (file_offset, Fwrite_region): Likewise.
1845 * floatfns.c (Fexpt, fmod_float): Likewise.
1846 * fns.c (larger_vector, make_hash_table, Fmake_hash_table):
1847 Likewise.
1848 * font.c (font_intern_prop): Likewise.
1849 * frame.c (x_set_alpha): Likewise.
1850 * gtkutil.c (get_utf8_string): Likewise.
1851 * indent.c (check_display_width): Likewise.
1852 * intervals.c (create_root_interval, rotate_right, rotate_left)
1853 (split_interval_right, split_interval_left)
1854 (adjust_intervals_for_insertion, delete_node)
1855 (interval_deletion_adjustment, adjust_intervals_for_deletion)
1856 (merge_interval_right, merge_interval_left, copy_intervals)
1857 (set_intervals_multibyte_1): Likewise.
1858 * keyboard.c (gobble_input, append_tool_bar_item): Likewise.
1859 * keymap.c (Fkey_description): Likewise.
1860 * lisp.h (FIXNUM_OVERFLOW_P, vcopy): Likewise.
1861 * lread.c (openp, read_integer, read1, string_to_number):
1862 Likewise.
1863 * menu.c (ensure_menu_items): Likewise.
1864 * minibuf.c (read_minibuf_noninteractive): Likewise.
1865 * print.c (printchar, strout): Likewise.
1866 * process.c (create_process, Faccept_process_output)
1867 (wait_reading_process_output, read_process_output, send_process)
1868 (wait_reading_process_output): Likewise.
1869 * profiler.c (make_log, handle_profiler_signal): Likewise.
1870 * regex.c (re_exec): Likewise.
1871 * regex.h: Likewise.
1872 * search.c (looking_at_1, Freplace_match): Likewise.
1873 * sysdep.c (get_child_status, procfs_ttyname)
1874 (procfs_get_total_memory): Likewise.
1875 * systime.h (EMACS_TIME_VALID_P): Likewise.
1876 * term.c (dissociate_if_controlling_tty): Likewise.
1877 * window.c (get_phys_cursor_glyph): Likewise.
1878 * xdisp.c (init_iterator, redisplay_internal, redisplay_window)
1879 (try_window_reusing_current_matrix, try_window_id, pint2hrstr):
1880 Likewise.
1881 * xfns.c (Fx_window_property): Likewise.
1882 * xmenu.c (set_frame_menubar): Likewise.
1883 * xselect.c (x_get_window_property, x_handle_dnd_message):
1884 Likewise.
1885 * xsmfns.c (smc_save_yourself_CB): Likewise.
1886 * xterm.c (x_scroll_bar_set_handle): Likewise.
1887
1888 2013-03-24 Dmitry Antipov <dmantipov@yandex.ru>
1889
1890 * xfaces.c (Finternal_face_x_get_resource): Allow 3rd (frame) argument
1891 to be optional or nil. Adjust comment and convert it to docstring.
1892 * xselect.c (Fx_send_client_event): Rename to Fx_send_client_message.
1893 * frame.c (display_x_get_resource, Fx_get_resource): Break long line.
1894
1895 2013-03-24 Paul Eggert <eggert@cs.ucla.edu>
1896
1897 Static checking by GCC 4.8-20130319.
1898 * image.c (gif_load): Assume pass < 3 to pacify GCC.
1899 * process.c (Fset_process_datagram_address)
1900 (Fmake_network_process): Check get_lisp_to_sockaddr_size return value.
1901 * xdisp.c (get_char_face_and_encoding):
1902 (get_glyph_face_and_encoding): Ensure that *CHAR2B is initialized.
1903 (get_glyph_face_and_encoding): Prepare face before possibly using it.
1904 (get_per_char_metric): Don't use CHAR2B if it might not be initialized.
1905
1906 2013-03-24 Ken Brown <kbrown@cornell.edu>
1907
1908 * w32fns.c (emacs_abort) [CYGWIN]: Define `_open' as a macro to
1909 fix compilation on 64-bit Cygwin, where underscores are not
1910 automatically prepended.
1911
1912 * w32term.c (w32_initialize): Silence compiler warning.
1913
1914 2013-03-23 Eli Zaretskii <eliz@gnu.org>
1915
1916 * w32term.c (w32fullscreen_hook): Use FRAME_NORMAL_WIDTH,
1917 FRAME_NORMAL_HEIGHT, and FRAME_PREV_FSMODE, instead of static
1918 variables, to save and restore frame dimensions.
1919 Use FRAME_NORMAL_LEFT and FRAME_NORMAL_TOP to restore frame position
1920 after returning from a 'fullscreen' configuration.
1921 use SendMessage instead of PostMessage to send the SC_RESTORE message,
1922 to avoid races between the main thread and the input thread.
1923
1924 * w32term.h (struct w32_output): New members normal_width,
1925 normal_height, normal_top, normal_left, and prev_fsmode.
1926 (FRAME_NORMAL_WIDTH, FRAME_NORMAL_HEIGHT, FRAME_NORMAL_TOP)
1927 (FRAME_NORMAL_LEFT, FRAME_PREV_FSMODE): New macros to access these
1928 members of a frame.
1929
1930 * w32term.c (w32fullscreen_hook): Record last value of the frame's
1931 'fullscreen' parameter. Always record previous width and height
1932 of the frame, except when switching out of maximized modes, so
1933 that they could be restored correctly, instead of resetting to the
1934 default frame dimensions. Send SC_RESTORE command to the frame,
1935 unless we are going to send SC_MAXIMIZE, to restore the frame
1936 resize hints in the mouse pointer shown by the window manager.
1937 (Bug#14032)
1938
1939 * frame.c (get_frame_param): Now extern for WINDOWSNT as well.
1940
1941 * lisp.h (get_frame_param): Adjust conditions for prototype
1942 declaration.
1943
1944 2013-03-22 Ken Brown <kbrown@cornell.edu>
1945
1946 * unexcw.c: Drop unneeded inclusion of w32common.h.
1947 (report_sheap_usage): Declare.
1948 (read_exe_header): Add magic numbers for x86_64.
1949 (fixup_executable): Fix printf format specifier for unsigned long
1950 argument.
1951
1952 2013-03-22 Dmitry Antipov <dmantipov@yandex.ru>
1953
1954 * frame.h (struct frame): Put menu_bar_window under #ifdef
1955 because this member is not needed when X toolkit is in use.
1956 (fset_menu_bar_window):
1957 * dispnew.c (clear_current_matrices, clear_desired_matrices)
1958 (free_glyphs, update_frame):
1959 * xdisp.c (expose_frame): Likewise.
1960 (display_menu_bar): Likewise. Remove redundant eassert.
1961 * window.h (WINDOW_MENU_BAR_P): Always define to 0 if X
1962 toolkit is in use.
1963
1964 2013-03-21 Paul Eggert <eggert@cs.ucla.edu>
1965
1966 Use functions and constants to manipulate Lisp_Save_Value objects.
1967 This replaces code that used macros and strings and token-pasting.
1968 The change makes the C source a bit easier to follow,
1969 and shrinks the Emacs executable a bit.
1970 * alloc.c: Verify some properties of Lisp_Save_Value's representation.
1971 (make_save_value): Change 1st arg from string to enum. All callers
1972 changed.
1973 (INTX): Remove.
1974 (mark_object): Use if, not #if, for GC_MARK_STACK.
1975 * lisp.h (SAVE_VALUEP, XSAVE_VALUE, XSAVE_POINTER, XSAVE_INTEGER)
1976 (XSAVE_OBJECT): Now functions, not macros.
1977 (STRING_BYTES_BOUND): Now just a macro, not a constant too;
1978 the constant was never used.
1979 (SAVE_SLOT_BITS, SAVE_VALUE_SLOTS, SAVE_TYPE_BITS, SAVE_TYPE_INT_INT)
1980 (SAVE_TYPE_INT_INT_INT, SAVE_TYPE_OBJ_OBJ, SAVE_TYPE_OBJ_OBJ_OBJ)
1981 (SAVE_TYPE_OBJ_OBJ_OBJ_OBJ, SAVE_TYPE_PTR_INT, SAVE_TYPE_PTR_OBJ)
1982 (SAVE_TYPE_PTR_PTR, SAVE_TYPE_PTR_PTR_OBJ, SAVE_TYPE_MEMORY):
1983 New constants.
1984 (struct Lisp_Save_Value): Replace members area, type0, type1, type2,
1985 type3 with a single member save_type. All uses changed.
1986 (save_type, set_save_pointer, set_save_integer): New functions.
1987 * print.c (PRINTX): Remove.
1988
1989 * alloc.c: Remove redundant static declarations.
1990
1991 2013-03-20 Dmitry Antipov <dmantipov@yandex.ru>
1992
1993 * window.h (struct window): Convert left_col, top_line, total_lines
1994 and total_cols from Lisp_Objects to integers. Adjust comments.
1995 (wset_left_col, wset_top_line, wset_total_cols, wset_total_lines):
1996 Remove.
1997 (WINDOW_TOTAL_COLS, WINDOW_TOTAL_LINES, WINDOW_LEFT_EDGE_COL)
1998 (WINDOW_TOP_EDGE_LINE): Drop Lisp_Object to integer conversion.
1999 * dispnew.c, frame.c, w32fns.c, window.c, xdisp.c, xfns.c:
2000 Adjust users where appropriate.
2001
2002 2013-03-20 Dmitry Antipov <dmantipov@yandex.ru>
2003
2004 * frame.h (struct frame): Drop resx and resy because the same data is
2005 available from window system-specific output context. Adjust users.
2006 (default_pixels_per_inch_x, default_pixels_per_inch_y):
2007 New functions to provide defaults when no window system available.
2008 (FRAME_RES_X, FRAME_RES_Y): New macros.
2009 (NUMVAL): Move from xdisp.c.
2010 * font.c (font_pixel_size, font_find_for_lface, font_open_for_lface)
2011 (Ffont_face_attributes, Fopen_font):
2012 * image.c (gs_load):
2013 * w32font.c (fill_in_logfont):
2014 * xdisp.c (calc_pixel_width_or_height):
2015 * xfaces.c (Fx_family_fonts, set_lface_from_font): Use them.
2016 * xsettings.c (apply_xft_settings): Drop frame loop and adjust comment.
2017
2018 2013-03-20 Kenichi Handa <handa@gnu.org>
2019
2020 * coding.c (syms_of_coding): Initialize disable_ascii_optimization
2021 to 1 (temporary workaround until a bug related to ASCII
2022 optimization is fixed).
2023
2024 2013-03-19 Dmitry Antipov <dmantipov@yandex.ru>
2025
2026 * window.c (Fwindow_combination_limit, Fset_window_combination_limit):
2027 Signal error if window is not internal. Adjust docstring.
2028 (delete_all_child_windows): Use combination_limit to save the buffer.
2029 (Fset_window_configuration): Adjust accordingly.
2030 * print.c (syms_of_print): Initialize debugging output not here...
2031 (init_print_once): ...but in a new function here.
2032 * lisp.h (init_print_once): Add prototype.
2033 * emacs.c (main): Add call to init_print_once. Adjust comments.
2034
2035 2013-03-18 Dmitry Antipov <dmantipov@yandex.ru>
2036
2037 * window.c (window_resize_check, window_resize_apply)
2038 (window_from_coordinates, recombine_windows, set_window_buffer)
2039 (make_parent_window, Fwindow_resize_apply, resize_frame_windows)
2040 (Fsplit_window_internal, Fdelete_window_internal)
2041 (freeze_window_starts): Use bool for booleans.
2042 * window.h (window_frame_coordinates, resize_frame_windows)
2043 (freeze_window_starts, set_window_buffer): Adjust prototypes.
2044
2045 2013-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
2046
2047 * dispnew.c (bitch_at_user): Use `user-error'.
2048
2049 2013-03-17 Ken Brown <kbrown@cornell.edu>
2050
2051 * dispextern.h (RGB_PIXEL_COLOR): Move here from image.c. Use it
2052 as return type of image_background. (Bug#13981)
2053 * image.c (RGB_PIXEL_COLOR): Move to dispextern.h.
2054
2055 2013-03-16 Jan Djärv <jan.h.d@swipnet.se>
2056
2057 * nsterm.m (updateFrameSize:): Change resize increments if needed.
2058 (ns_select): Don't return with result uninitialized.
2059
2060 * nsterm.h (EmacsSavePanel, EmacsOpenPanel): Add getFilename
2061 and getDirectory.
2062
2063 * nsfns.m (ns_filename_from_panel, ns_directory_from_panel):
2064 New functions.
2065 (Fns_read_file_name): ret is BOOL. If ! dir_only_p, don't choose
2066 directories. If filename is nil, get directory name (Bug#13932).
2067 Use getFilename and getDirectory.
2068 (getFilename, getDirectory): New methods for EmacsSavePanel and
2069 EmacsOpenPanel.
2070 (ok:): In EmacsOpenPanel, if we can't choose directories, just return.
2071
2072 2013-03-15 Paul Eggert <eggert@cs.ucla.edu>
2073
2074 * coding.c (decode_coding_gap): Fix typo caught by static checking.
2075
2076 2013-03-15 Kenichi Handa <handa@gnu.org>
2077
2078 * insdel.c (insert_from_gap): New arg text_at_gap_tail.
2079 (adjust_after_replace): Make it back to static. Delete the third
2080 arg text_at_gap_tail. Cancel the code for handling it.
2081
2082 * coding.h (struct coding_system): New member eol_seen.
2083
2084 * coding.c (detect_ascii): New function.
2085 (detect_coding): Set coding->head_ascii and coding->eol_seen only
2086 when the source bytes are actually scanned. On detecting for
2087 coding_category_utf_8_auto, call detect_ascii instead of scanning
2088 source bytes directly.
2089 (produce_chars): Call insert_from_gap with the new arg 0.
2090 (encode_coding): Likewise.
2091 (decode_coding_gap): Control ASCII optimization by the variable
2092 disable_ascii_optimization instead of #ifndef .. #endif.
2093 Deccode EOL format according to coding->eol_seen.
2094 (syms_of_coding): Declare disable-ascii-optimization as a Lisp
2095 variable.
2096
2097 * lisp.h (adjust_after_replace): Cancel externing it.
2098 (insert_from_gap): Adjust prototype.
2099
2100 2013-03-15 Eli Zaretskii <eliz@gnu.org>
2101
2102 * w32term.c (w32fullscreen_hook): Swap FULLSCREEN_BOTH and
2103 FULLSCREEN_MAXIMIZED. (Bug#13935)
2104
2105 2013-03-15 Dmitry Antipov <dmantipov@yandex.ru>
2106
2107 * region-cache.c (find_cache_boundary, move_cache_gap)
2108 (insert_cache_boundary, delete_cache_boundaries, set_cache_region):
2109 Simplify debugging check and convert to eassert. Adjust comment.
2110 (pp_cache): Put under ENABLE_CHECKING.
2111
2112 2013-03-14 Eli Zaretskii <eliz@gnu.org>
2113
2114 * w32term.c (w32_read_socket) <WM_WINDOWPOSCHANGED>: Remove old
2115 and incorrect code. Treat WM_WINDOWPOSCHANGED like WM_ACTIVATE
2116 and WM_ACTIVATEAPP.
2117 (w32fullscreen_hook): If the frame is visible, reset
2118 f->want_fullscreen flag after changing the frame size. If the
2119 frame is not visible, set f->want_fullscreen to FULLSCREEN_WAIT.
2120 (Bug#13953)
2121
2122 2013-03-13 Daniel Colascione <dancol@dancol.org>
2123
2124 * emacs.c (main): Call syms_of_cygw32 on CYGWIN non-NTGUI builds
2125 too so that these builds can use Cygwin's file conversion
2126 functions. (We've been building and linking cygw32.o all along
2127 and just not using it.)
2128
2129 2013-03-13 Paul Eggert <eggert@cs.ucla.edu>
2130
2131 File synchronization fixes (Bug#13944).
2132 * Makefile.in (LIB_FDATASYNC): New macro.
2133 (LIBES): Use it.
2134 * conf_post.h (BSD_SYSTEM, BSD_SYSTEM_AHB): Remove; no longer needed.
2135 * fileio.c (Fwrite_region, write_region_inhibit_fsync):
2136 Don't worry about HAVE_FSYNC, since a substitute fsync is
2137 available if the system lacks one.
2138 (Fwrite_regin): Retry fsync if interrupted.
2139
2140 2013-03-13 Eli Zaretskii <eliz@gnu.org>
2141
2142 * w32term.c (w32_read_socket): If the Emacs frame is being
2143 activated, call w32fullscreen_hook, to make sure the new frame
2144 dimensions are in effect. (Bug#13937)
2145
2146 2013-03-13 Dmitry Antipov <dmantipov@yandex.ru>
2147
2148 * xdisp.c (init_iterator): Simplify because both character and byte
2149 positions are either specified or -1. Add eassert. Adjust comment.
2150 * window.c (Fscroll_other_window): Use SET_PT_BOTH because both
2151 character and byte positions can be obtained from marker.
2152
2153 2013-03-13 Paul Eggert <eggert@cs.ucla.edu>
2154
2155 Static checking by Sun C 5.12.
2156 * alloc.c (buffer_memory_full) [REL_ALLOC]:
2157 * bytecode.c (exec_byte_code):
2158 * dispnew.c (init_display):
2159 * eval.c (error):
2160 * fileio.c (Fsubstitute_in_file_name):
2161 * keyboard.c (Fevent_convert_list):
2162 * keymap.c (Fsingle_key_description):
2163 * term.c (maybe_fatal, fatal):
2164 * xfns.c (Fx_display_backing_store, Fx_display_visual_class):
2165 * xsmfns.c (Fhandle_save_session):
2166 Omit unreachable code.
2167 * keymap.c (map_keymap_char_table_item): Cast void * to
2168 a function pointer type; the C Standard requires this.
2169
2170 * sysdep.c: Remove a use of BSD_SYSTEM, which I'm trying to phase out.
2171 Include <sys/param.h> unconditionally, as that works elsewhere and
2172 is simpler here. Include <sys/sysctl.h> if DARWIN_OS ||
2173 __FreeBSD__, not if BSD_SYSTEM, since it's needed only for Darwin
2174 and FreeBSD now.
2175
2176 See ChangeLog.12 for earlier changes.
2177
2178 ;; Local Variables:
2179 ;; coding: utf-8
2180 ;; End:
2181
2182 Copyright (C) 2011-2013 Free Software Foundation, Inc.
2183
2184 This file is part of GNU Emacs.
2185
2186 GNU Emacs is free software: you can redistribute it and/or modify
2187 it under the terms of the GNU General Public License as published by
2188 the Free Software Foundation, either version 3 of the License, or
2189 (at your option) any later version.
2190
2191 GNU Emacs is distributed in the hope that it will be useful,
2192 but WITHOUT ANY WARRANTY; without even the implied warranty of
2193 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2194 GNU General Public License for more details.
2195
2196 You should have received a copy of the GNU General Public License
2197 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.