comparison src/ChangeLog @ 112332:28ca83ef1128

Merge from mainline.
author Paul Eggert <eggert@cs.ucla.edu>
date Mon, 17 Jan 2011 11:24:36 -0800
parents 56d3e9c28eb0 2108d829c749
children 67bea318ed68
comparison
equal deleted inserted replaced
112331:f6578f2bd119 112332:28ca83ef1128
30 Automate syncing from gnulib. 30 Automate syncing from gnulib.
31 * Makefile.in (lib): New macro. 31 * Makefile.in (lib): New macro.
32 (ALL_CFLAGS): Add -I$(lib) -I$(srcdir)/../lib. 32 (ALL_CFLAGS): Add -I$(lib) -I$(srcdir)/../lib.
33 ($(lib)/libgnu.a): New rule. 33 ($(lib)/libgnu.a): New rule.
34 (temacs$(EXEEXT)): Also link $(lib)/libgnu.a. 34 (temacs$(EXEEXT)): Also link $(lib)/libgnu.a.
35
36 * xfns.c (x_real_positions): Fix signedness of local var 'ign'.
37 XGetGeometry wants unsigned int *, not int *, for its last 4 args,
38 so change the type of 'ign' to unsigned int from int.
39
40 * regex.c (analyse_first): Remove unreachable 'continue' statement.
41
42 * xterm.h (struct x_display_info): Remove stray semicolon.
43 The extra semicolon didn't conform to the C standard.
44 Problem reported by Sun cc.
45
46 * lisp.h: Redo flags and XSET slightly to avoid overflow diagnostics.
47 These changes make compilation easier to follow with Sun cc.
48 (ARRAY_MARK_FLAG): Make it signed, so that it can be assigned to
49 EMACS_INT values without provoking overflow diagnostics.
50 (PSEUDOVECTOR_FLAG): Likewise, for consistency.
51 (XSET) [! USE_LSB_TAG]: Use unsigned left shift to avoid overflow
52 diagnostic with signed left shift.
53
54 * fileio.c (make_temp_name): Remove unreachable code.
55
56 * fontset.c (free_realized_fontset): Mark unreachable code with if (0).
57 Previously it was marked by preceding it with "return;", but
58 Sun cc complains about this.
59
60 * coding.c (decode_coding_emacs_mule): Remove unreachable code.
61 This is a typo left over from revno 95090 dated 2009-03-06,
62 which fixed Bug#2370. Caught by Sun cc.
35 63
36 2011-01-15 Martin Rudalics <rudalics@gmx.at> 64 2011-01-15 Martin Rudalics <rudalics@gmx.at>
37 65
38 * window.c (inhibit_point_swap): New variable. 66 * window.c (inhibit_point_swap): New variable.
39 (Fselect_window): If inhibit_point_swap is nonzero, avoid swapping 67 (Fselect_window): If inhibit_point_swap is nonzero, avoid swapping