1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 11:50:28 +02:00

*** empty log message ***

This commit is contained in:
Marius Vollmer 2001-06-14 17:43:39 +00:00
parent dcb17187c3
commit 4ff9f8254e
3 changed files with 34 additions and 0 deletions

View file

@ -1,3 +1,11 @@
2001-06-14 Marius Vollmer <mvo@zagadka.ping.de>
* configure.in: Check for header <stdint.h>. Check for uintptr_t
type. Use AC_CHECK_TYPES for this. Do not caus ptrdiff_t to be
`#defined'.
* acconfig.h (ptrdiff_t): Removed.
2001-06-05 Martin Grabmueller <mgrabmue@cs.tu-berlin.de> 2001-06-05 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
* configure.in: Generate examples/box-dynamic-module/Makefile. * configure.in: Generate examples/box-dynamic-module/Makefile.

View file

@ -1,3 +1,16 @@
2001-06-14 Marius Vollmer <mvo@zagadka.ping.de>
Thanks to Matthias Köppe!
* configure.in: Check for rl_filename_completion_function.
* readline.c (s_scm_filename_completion_function): Use
rl_filename_completion_function instead of
filename_completion_function, if we have it.
(scm_init_readline): Use rl_compentry_func_t instead if Function
when _RL_FUNCTION_TYPEDEF is defined.
* readline.h (scm_clear_history): New prototype.
2001-06-07 Dirk Herrmann <D.Herrmann@tu-bs.de> 2001-06-07 Dirk Herrmann <D.Herrmann@tu-bs.de>
* readline.c (current_input_getc): Mark unused parameters with * readline.c (current_input_getc): Mark unused parameters with

View file

@ -1,3 +1,16 @@
2001-06-14 Marius Vollmer <mvo@zagadka.ping.de>
* __scm.h (ptrdiff_t): Typedef to long when configure didn't find
it.
* tags.h: Include <stdint.h> when we have it.
(scm_bits_t): Changed to be a unsigned type. Use uintptr_t when
available. Else use "unsigned long".
(scm_signed_bits_t): New.
* numbers.h (SCM_SRS): Cast shiftee to scm_signed_bits_t.
(SCM_INUM): Cast result to scm_signed_bits_t.
2001-06-13 Thien-Thi Nguyen <ttn@revel.glug.org> 2001-06-13 Thien-Thi Nguyen <ttn@revel.glug.org>
* mkstemp.c: Update path to #include file scmconfig.h. * mkstemp.c: Update path to #include file scmconfig.h.