diff options
| author | Paul Eggert | 2011-03-01 17:52:03 -0800 |
|---|---|---|
| committer | Paul Eggert | 2011-03-01 17:52:03 -0800 |
| commit | ba46f4d85a6938273f52a8cdf7e09d9afee61d7f (patch) | |
| tree | 606ec46b703532d463ccddf287f0053430eb1f4a /src/ChangeLog | |
| parent | d9d0d182da35312ed0d7a9859b9c6a03994d86d8 (diff) | |
| parent | 0dc3e4109e0c41bbf5fdcae0ff1156162719693e (diff) | |
| download | emacs-ba46f4d85a6938273f52a8cdf7e09d9afee61d7f.tar.gz emacs-ba46f4d85a6938273f52a8cdf7e09d9afee61d7f.zip | |
Merge from mainline.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index a8de7268673..388e8c251d1 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,55 @@ | |||
| 1 | 2011-02-27 Chong Yidong <cyd@stupidchicken.com> | ||
| 2 | |||
| 3 | * frame.c (store_frame_param): Don't store value directly in | ||
| 4 | buffer_list and buried_buffer_list; copy the list and remove dead | ||
| 5 | buffers (Bug#7898). | ||
| 6 | |||
| 7 | 2011-02-27 Eli Zaretskii <eliz@gnu.org> | ||
| 8 | |||
| 9 | * msdos.c (readlink) [DJGPP < 2.04]: New stub function. | ||
| 10 | |||
| 11 | * msdos.h: (readlink) [DJGPP < 2.04]: Declare prototype. | ||
| 12 | |||
| 13 | * w32.c (symlink, readlink): New stub functions. | ||
| 14 | |||
| 15 | 2011-02-27 Paul Eggert <eggert@cs.ucla.edu> | ||
| 16 | |||
| 17 | * scroll.c (CHECK_BOUNDS): #define only if GLYPH_DEBUG. | ||
| 18 | This avoids a gcc warning in some configurations. | ||
| 19 | |||
| 20 | * frame.c (x_set_screen_gamma): Rename local to avoid shadowing. | ||
| 21 | |||
| 22 | * frame.h: Avoid gcc -Wmissing-prototypes diagnostics. | ||
| 23 | (set_menu_bar_lines, x_get_resource_string): New decls. | ||
| 24 | * msdos.c (set_menu_bar_lines): Omit decl. | ||
| 25 | |||
| 26 | * dispextern.h (struct glyph): Make u.img_id int, not unsigned. | ||
| 27 | It's always given int values and used as an int. This suppresses | ||
| 28 | a gcc "comparison of unsigned expression >= 0" warning in some | ||
| 29 | configurations. | ||
| 30 | |||
| 31 | * dispnew.c: Rename locals to avoid shadowing. | ||
| 32 | (update_text_area, scrolling_window, update_frame_1): Rename locals. | ||
| 33 | |||
| 34 | 2011-02-26 Paul Eggert <eggert@cs.ucla.edu> | ||
| 35 | |||
| 36 | * dispnew.c: Fix problems uncovered by gcc -Wstrict-prototypes. | ||
| 37 | (copy_glyph_row_contents): Remove; not used. | ||
| 38 | (frame_row_to_window, check_current_matrix_flags): | ||
| 39 | (window_change_signal): Now static, since they're not used elsewhere. | ||
| 40 | (check_current_matrix_flags): Surround with "#if 0", since its | ||
| 41 | only use is in a comment. Maybe both the comment and the "#if 0" | ||
| 42 | stuff should be removed? | ||
| 43 | |||
| 44 | * dispnew.c: Fix problem uncovered by gcc -Wunused-variable. | ||
| 45 | (adjust_frame_glyphs_for_window_redisplay): Make 'w' local to the | ||
| 46 | contexts that actually need it. | ||
| 47 | |||
| 48 | 2011-02-26 Eli Zaretskii <eliz@gnu.org> | ||
| 49 | |||
| 50 | * s/msdos.h (HAVE_LSTAT): Define for DJGPP >= 2.04. | ||
| 51 | (lstat): Define for DJGPP < 2.04. | ||
| 52 | |||
| 1 | 2011-02-25 Paul Eggert <eggert@cs.ucla.edu> | 53 | 2011-02-25 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 54 | ||
| 3 | Simplify symlink portability workaround. | 55 | Simplify symlink portability workaround. |