diff options
| author | Paul Eggert | 2011-01-17 11:24:36 -0800 |
|---|---|---|
| committer | Paul Eggert | 2011-01-17 11:24:36 -0800 |
| commit | 15ef8755824eef3336ebb95dbeacb39214f89503 (patch) | |
| tree | 6fa45b0bd14c8af9f1ae202cb9759985a916fbf6 /src/ChangeLog | |
| parent | 3cbecb8f286aa3309f68d9909317e03df4f597d6 (diff) | |
| parent | 717c30e0027175fc8bb849728e5c9b4c3e9b2adf (diff) | |
| download | emacs-15ef8755824eef3336ebb95dbeacb39214f89503.tar.gz emacs-15ef8755824eef3336ebb95dbeacb39214f89503.zip | |
Merge from mainline.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 8f3c4056495..9267a96467c 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -33,6 +33,34 @@ | |||
| 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 | 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 2009-03-06T07:51:52Z!handa@m17n.org, | ||
| 62 | which fixed Bug#2370. Caught by Sun cc. | ||
| 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. |