diff options
| author | Glenn Morris | 2011-03-12 11:19:47 -0800 |
|---|---|---|
| committer | Glenn Morris | 2011-03-12 11:19:47 -0800 |
| commit | 09d9db2c4921cb2eb0974892164dd03d6bffdd80 (patch) | |
| tree | 7165f97f16ea0eaab567db2a45f69d1cdf66bdce /src | |
| parent | 54ce11a161cd756047fccdfc128dc0527692ea06 (diff) | |
| parent | 6efb972c00a9ea8ffa84118199aa59c2d3a3b50e (diff) | |
| download | emacs-09d9db2c4921cb2eb0974892164dd03d6bffdd80.tar.gz emacs-09d9db2c4921cb2eb0974892164dd03d6bffdd80.zip | |
Merge from emacs-23; up to 2010-06-03T22:16:02Z!dann@ics.uci.edu
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 7 | ||||
| -rw-r--r-- | src/fringe.c | 8 | ||||
| -rw-r--r-- | src/unexmacosx.c | 1 |
3 files changed, 8 insertions, 8 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 5976265ef85..a3098114388 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2011-03-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 2 | |||
| 3 | * fringe.c (update_window_fringes): Remove unused variables. | ||
| 4 | |||
| 5 | * unexmacosx.c (copy_data_segment): Also copy __got section. | ||
| 6 | (Bug#8223) | ||
| 7 | |||
| 1 | 2011-03-12 Eli Zaretskii <eliz@gnu.org> | 8 | 2011-03-12 Eli Zaretskii <eliz@gnu.org> |
| 2 | 9 | ||
| 3 | * termcap.c [MSDOS]: Include "msdos.h. | 10 | * termcap.c [MSDOS]: Include "msdos.h. |
diff --git a/src/fringe.c b/src/fringe.c index 82fc38aee8a..ce75df766ee 100644 --- a/src/fringe.c +++ b/src/fringe.c | |||
| @@ -954,18 +954,10 @@ update_window_fringes (struct window *w, int keep_current_p) | |||
| 954 | y < yb && rn < nrows; | 954 | y < yb && rn < nrows; |
| 955 | y += row->height, ++rn) | 955 | y += row->height, ++rn) |
| 956 | { | 956 | { |
| 957 | unsigned indicate_bob_p, indicate_top_line_p; | ||
| 958 | unsigned indicate_eob_p, indicate_bottom_line_p; | ||
| 959 | |||
| 960 | row = w->desired_matrix->rows + rn; | 957 | row = w->desired_matrix->rows + rn; |
| 961 | if (!row->enabled_p) | 958 | if (!row->enabled_p) |
| 962 | row = w->current_matrix->rows + rn; | 959 | row = w->current_matrix->rows + rn; |
| 963 | 960 | ||
| 964 | indicate_bob_p = row->indicate_bob_p; | ||
| 965 | indicate_top_line_p = row->indicate_top_line_p; | ||
| 966 | indicate_eob_p = row->indicate_eob_p; | ||
| 967 | indicate_bottom_line_p = row->indicate_bottom_line_p; | ||
| 968 | |||
| 969 | row->indicate_bob_p = row->indicate_top_line_p = 0; | 961 | row->indicate_bob_p = row->indicate_top_line_p = 0; |
| 970 | row->indicate_eob_p = row->indicate_bottom_line_p = 0; | 962 | row->indicate_eob_p = row->indicate_bottom_line_p = 0; |
| 971 | 963 | ||
diff --git a/src/unexmacosx.c b/src/unexmacosx.c index 7a55498085d..2e46c063e95 100644 --- a/src/unexmacosx.c +++ b/src/unexmacosx.c | |||
| @@ -828,6 +828,7 @@ copy_data_segment (struct load_command *lc) | |||
| 828 | } | 828 | } |
| 829 | else if (strncmp (sectp->sectname, "__la_symbol_ptr", 16) == 0 | 829 | else if (strncmp (sectp->sectname, "__la_symbol_ptr", 16) == 0 |
| 830 | || strncmp (sectp->sectname, "__nl_symbol_ptr", 16) == 0 | 830 | || strncmp (sectp->sectname, "__nl_symbol_ptr", 16) == 0 |
| 831 | || strncmp (sectp->sectname, "__got", 16) == 0 | ||
| 831 | || strncmp (sectp->sectname, "__la_sym_ptr2", 16) == 0 | 832 | || strncmp (sectp->sectname, "__la_sym_ptr2", 16) == 0 |
| 832 | || strncmp (sectp->sectname, "__dyld", 16) == 0 | 833 | || strncmp (sectp->sectname, "__dyld", 16) == 0 |
| 833 | || strncmp (sectp->sectname, "__const", 16) == 0 | 834 | || strncmp (sectp->sectname, "__const", 16) == 0 |