aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2011-03-01 17:52:03 -0800
committerPaul Eggert2011-03-01 17:52:03 -0800
commitba46f4d85a6938273f52a8cdf7e09d9afee61d7f (patch)
tree606ec46b703532d463ccddf287f0053430eb1f4a /src/ChangeLog
parentd9d0d182da35312ed0d7a9859b9c6a03994d86d8 (diff)
parent0dc3e4109e0c41bbf5fdcae0ff1156162719693e (diff)
downloademacs-ba46f4d85a6938273f52a8cdf7e09d9afee61d7f.tar.gz
emacs-ba46f4d85a6938273f52a8cdf7e09d9afee61d7f.zip
Merge from mainline.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog52
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 @@
12011-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
72011-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
152011-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
342011-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
482011-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
12011-02-25 Paul Eggert <eggert@cs.ucla.edu> 532011-02-25 Paul Eggert <eggert@cs.ucla.edu>
2 54
3 Simplify symlink portability workaround. 55 Simplify symlink portability workaround.