aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKaroly Lorentey2006-12-03 12:36:08 +0000
committerKaroly Lorentey2006-12-03 12:36:08 +0000
commitd0104e754a241cf83811fef30195d41201de533c (patch)
tree6a5a31760801bd70649d0f9b132f61c46fac8445 /src
parent19739b34866e6a4789d842961470123b50158612 (diff)
parentab785936c82ac81edb8b20ac27c0558bc04797e5 (diff)
downloademacs-d0104e754a241cf83811fef30195d41201de533c.tar.gz
emacs-d0104e754a241cf83811fef30195d41201de533c.zip
Merged from emacs@sv.gnu.org.
Patches applied: * emacs@sv.gnu.org/emacs--devo--0--patch-486 Update from CVS * emacs@sv.gnu.org/emacs--devo--0--patch-487 Merge from gnus--rel--5.10 * emacs@sv.gnu.org/emacs--devo--0--patch-488 Update from CVS * emacs@sv.gnu.org/emacs--devo--0--patch-489 Merge from gnus--rel--5.10 * emacs@sv.gnu.org/gnus--rel--5.10--patch-156 Merge from emacs--devo--0 * emacs@sv.gnu.org/gnus--rel--5.10--patch-157 Update from CVS * emacs@sv.gnu.org/gnus--rel--5.10--patch-158 Update from CVS * emacs@sv.gnu.org/gnus--rel--5.10--patch-159 Update from CVS * emacs@sv.gnu.org/gnus--rel--5.10--patch-160 Update from CVS git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-587
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog17
-rw-r--r--src/m/amdx86-64.h9
-rw-r--r--src/ralloc.c2
-rw-r--r--src/window.c2
4 files changed, 25 insertions, 5 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 4118fc6f2d8..27a229b0f68 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,16 @@
12006-10-29 Mark Davies <mark@mcs.vuw.ac.nz> (tiny change)
2
3 * ralloc.c (relinquish): Use a long for excess space counter to
4 handle 64-bit case correctly.
5
62006-10-29 Jeramey Crawford <jeramey@jeramey.com>
7
8 * m/amdx86-64.h: Add defines for OpenBSD x86-64.
9
102006-10-29 Juanma Barranquero <lekktu@gmail.com>
11
12 * window.c (Fdisplay_buffer): Fix typo in docstring.
13
12006-10-27 Ben North <ben@redfrontdoor.org> (tiny change) 142006-10-27 Ben North <ben@redfrontdoor.org> (tiny change)
2 15
3 * w32term.c (x_draw_glyph_string_foreground): Set background mode 16 * w32term.c (x_draw_glyph_string_foreground): Set background mode
@@ -431,7 +444,7 @@
431 avoid confusing redisplay by placing the cursor outside the visible 444 avoid confusing redisplay by placing the cursor outside the visible
432 window area. 445 window area.
433 446
4342006-09-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> 4472006-09-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
435 448
436 * xterm.c (x_initialize): Don't install Xt event timer here. 449 * xterm.c (x_initialize): Don't install Xt event timer here.
437 (x_timeout_atimer_activated_flag): New var. 450 (x_timeout_atimer_activated_flag): New var.
@@ -2176,7 +2189,7 @@
2176 * xdisp.c (display_tool_bar_line): Restore entire tool-bar 2189 * xdisp.c (display_tool_bar_line): Restore entire tool-bar
2177 geometry when backtracking in case last image doesn't fit on line. 2190 geometry when backtracking in case last image doesn't fit on line.
2178 2191
21792006-05-18 MIYOSHI Masanori <miyoshi@meadowy.org> (tiny change) 21922006-05-18 MIYOSHI Masanori <miyoshi@meadowy.org> (tiny change)
2180 2193
2181 * xdisp.c (display_tool_bar_line): Don't adjust tool-bar height by 2194 * xdisp.c (display_tool_bar_line): Don't adjust tool-bar height by
2182 more than height of one frame default line. 2195 more than height of one frame default line.
diff --git a/src/m/amdx86-64.h b/src/m/amdx86-64.h
index 3a1ace91b41..419fa131692 100644
--- a/src/m/amdx86-64.h
+++ b/src/m/amdx86-64.h
@@ -118,7 +118,14 @@ Boston, MA 02110-1301, USA. */
118#undef LIB_STANDARD 118#undef LIB_STANDARD
119#define LIB_STANDARD -lgcc -lc -lgcc /usr/lib/crtn.o 119#define LIB_STANDARD -lgcc -lc -lgcc /usr/lib/crtn.o
120 120
121#else /* !__FreeBSD__ */ 121#elif defined(__OpenBSD__)
122
123#undef START_FILES
124#define START_FILES pre-crt0.o /usr/lib/crt0.o /usr/lib/crtbegin.o
125#undef LIB_STANDARD
126#define LIB_STANDARD -lgcc -lc -lgcc /usr/lib/crtend.o
127
128#else /* !__OpenBSD__ && !__FreeBSD__ */
122 129
123#undef START_FILES 130#undef START_FILES
124#define START_FILES pre-crt0.o /usr/lib64/crt1.o /usr/lib64/crti.o 131#define START_FILES pre-crt0.o /usr/lib64/crt1.o /usr/lib64/crti.o
diff --git a/src/ralloc.c b/src/ralloc.c
index fea9ea5d0a8..83a26dd35d6 100644
--- a/src/ralloc.c
+++ b/src/ralloc.c
@@ -330,7 +330,7 @@ static void
330relinquish () 330relinquish ()
331{ 331{
332 register heap_ptr h; 332 register heap_ptr h;
333 int excess = 0; 333 long excess = 0;
334 334
335 /* Add the amount of space beyond break_value 335 /* Add the amount of space beyond break_value
336 in all heaps which have extend beyond break_value at all. */ 336 in all heaps which have extend beyond break_value at all. */
diff --git a/src/window.c b/src/window.c
index 0233c6bf79e..e996fc5c597 100644
--- a/src/window.c
+++ b/src/window.c
@@ -3590,7 +3590,7 @@ See `same-window-buffer-names' and `same-window-regexps'. */)
3590DEFUN ("display-buffer", Fdisplay_buffer, Sdisplay_buffer, 1, 3, 3590DEFUN ("display-buffer", Fdisplay_buffer, Sdisplay_buffer, 1, 3,
3591 "BDisplay buffer: \nP", 3591 "BDisplay buffer: \nP",
3592 doc: /* Make BUFFER appear in some window but don't select it. 3592 doc: /* Make BUFFER appear in some window but don't select it.
3593BUFFER must be the name of an existing buffer, or, when called from Lisp, 3593BUFFER must be the name of an existing buffer, or, when called from Lisp,
3594a buffer. 3594a buffer.
3595If BUFFER is shown already in some window, just use that one, 3595If BUFFER is shown already in some window, just use that one,
3596unless the window is the selected window and the optional second 3596unless the window is the selected window and the optional second