mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-27 07:41:28 -08:00
* vm-limit.c (check_memory_limits): Fix previous change; accidentally reverted an earlier change.
This commit is contained in:
parent
2493307567
commit
63f9a672cb
2 changed files with 7 additions and 2 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2010-07-25 Ken Brown <kbrown@cornell.edu>
|
||||
|
||||
* vm-limit.c (check_memory_limits): Fix previous change;
|
||||
accidentally reverted an earlier change.
|
||||
|
||||
2010-07-25 Ken Brown <kbrown@cornell.edu>
|
||||
|
||||
* mem-limits.h (BSD4_2) [cygwin]: Don't define here; instead...
|
||||
|
|
|
|||
|
|
@ -173,9 +173,9 @@ static void
|
|||
check_memory_limits (void)
|
||||
{
|
||||
#ifdef REL_ALLOC
|
||||
extern POINTER (*real_morecore) ();
|
||||
extern POINTER (*real_morecore) (SIZE);
|
||||
#endif
|
||||
extern POINTER (*__morecore) ();
|
||||
extern POINTER (*__morecore) (SIZE);
|
||||
|
||||
register POINTER cp;
|
||||
unsigned long five_percent;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue