X-Git-Url: https://git.hcoop.net/bpt/guile.git/blobdiff_plain/b2cbe8d8a2f06c0ce494c6b1a8874c1842384fe5..1ac5fb45bca1f963ccd654efda3f98604f39f5a0:/guile-readline/ChangeLog?ds=sidebyside diff --git a/guile-readline/ChangeLog b/guile-readline/ChangeLog index 024f78800..a599a6699 100644 --- a/guile-readline/ChangeLog +++ b/guile-readline/ChangeLog @@ -1,3 +1,172 @@ +2007-07-29 Ludovic Courtès + + * Makefile.am (INCLUDES): Add Gnulib includes. + (libguilereadline_v_@LIBGUILEREADLINE_MAJOR@_la_LIBADD): Added + `../lib/libgnu.la'. + +2007-07-15 Ludovic Courtès + + * LIBGUILEREADLINE-VERSION + (LIBGUILEREADLINE_INTERFACE_REVISION): Incremented for release. + +2007-06-26 Ludovic Courtès + + * readline.c (scm_add_history): Free S after invocation of + `add_history ()'. + +2007-01-19 Han-Wen Nienhuys + + * readline.c: terminate option list with NULL. + (scm_init_readline): fix CVS mess-up. + +2006-10-06 Neil Jerram + + * ice-9/readline.scm (new-input-prompt): Renamed from "prompt". + (continuation-prompt): Renamed from "prompt2". + (make-readline-port, readline, set-readline-prompt!): Reflect + above renamings. + (activate-readline): Rename locals "read-hook" and "prompt" to + "repl-read-hook" and "repl-prompt", to disambiguate them from + globals. Save and restore the new-input- and continuation- + prompts around the REPL read call. + +2006-10-05 Kevin Ryde + + * ice-9/readline.scm (filename-completion-function): Export this. + +2006-04-17 Kevin Ryde + + * ice-9/readline.scm: Bump lib file version to libguilereadline-v-18, + matching LIBGUILEREADLINE-VERSION. + +2006-05-15 Kevin Ryde + + * Makefile.am (INCLUDES): Add "-I." to pick up guile-readline-config.h + in snarfer. + +2006-04-18 Rob Browning + + * .cvsignore: Add guile-readline-config.h and + guile-readline-config.h.in. + + * readline.c: Don't include Guile private header _scm.h. + Include new guile-readline-config.h private header. + + * configure.in: Add AC_CONFIG_AUX_DIR([.]) as suggested in the + autotools documentation. Add + AM_CONFIG_HEADER([guile-readline-config.h]) so that guile-readline + will have its own configure-based config.h equivalent. + (HAVE_RL_PRE_INPUT_HOOK): Add documentation template. + (GUILE_SIGWINCH_SA_RESTART_CLEARED): Add documentation template. + +2006-03-12 Neil Jerram + + * ice-9/readline.scm (make-completion-function): New. + +2006-02-06 Marius Vollmer + + * LIBGUILEREADLINE-VERSION: Bumped versions for 1.9 series. + +2006-02-06 Marius Vollmer + + * LIBGUILEREADLINE-VERSION: Bumped versions for 1.8. + +2005-03-02 Marius Vollmer + + * readline.c: Use scm_current_input_port instead of scm_cur_inp. + Use scm_std_select instead of scm_internal_select. + +2004-08-26 Marius Vollmer + + * LIBGUILEREADLINE-VERSION: Bumped versions for the 1.7.1 release. + Added LIBGUILEREADLINE_MAJOR variable for inclusion in the name of + the shared library. + * configure.in: AC_SUBST it. + * Makefile.am: Substitute it into name of library. + * ice-9/readline.scm: Use new name with load-extension. + +2004-08-19 Marius Vollmer + + * readline.c: Avoid the use of discouraged or + deprecated things. + +2004-07-06 Marius Vollmer + + * readline.c: Replaced all uses of deprecated SCM_FALSEP, + SCM_NFALSEP, SCM_BOOL, SCM_NEGATE_BOOL, and SCM_BOOLP with + scm_is_false, scm_is_true, scm_from_bool, and scm_is_bool, + respectively. + +2004-06-16 Rob Browning + + * configure.in: move package and version args to AC_INIT as is now + recommended. This also requires m4_esyscmd to read GUILE-VERSION + given the way AC_INIT handles its args. Also move "foreign" + indication here. + + * Makefile.am: move support for readline.scm to ice-9/ subdir. + + * readline.scm: moved to ./ice-9/ + + * .cvsignore: add ice-9 dir. + + * ice-9/Makefile.am: new file. + + * ice-9/readline.scm: moved here from ../ + + * ice-9/.cvsignore: new file. + +2004-02-15 Mikael Djurfeldt + + * configure.in: Use AC_PROG_LIBTOOL instead of AM_PROG_LIBTOOL. + +2004-02-08 Mikael Djurfeldt + + * Makefile.am (TAGS_FILES): Use this variable instead of + ETAGS_ARGS so that TAGS can be built using separate build + directory. + +2003-05-04 Marius Vollmer + + * configure.in: When checking whether readline clears SA_RESTART, + let readline read from "/dev/null". Otherwise, it might be + stopped when run in the background with job control, say. + Thanks to Michael Talbot-Wilson! + +2003-04-05 Mikael Djurfeldt + + The intended side-effect of the following change is to make the + prompt appear properly when debugging or running Guile in an Emacs + buffer. (The readline library has some prompt magic which we were + expected to do ourselves when we were bold enough to provide our + own redisplay function---but we don't need to do that.) + + * readline.c (redisplay): Removed. (It didn't do anything other + than calling rl_redisplay.) + (scm_init_readline): Don't inititalize rl_redisplay_function. + +2003-03-19 Rob Browning + + * readline.c: add HAVE_CONFIG_H test guarding #include config.h. + + * autogen.sh: add a --force when autoreconfing. We may need to + change this if it doesn't work out... + + * Makefile.am (ice-9/readline.scm): new target -- so readline will + work from the source tree when guile-readline is added to + GUILE_LOAD_PATH. + (all-local): add ice-9/readline.scm. + (clean-local): remove ice-9/readline at clean time. + +2003-02-27 Rob Browning + + * autogen.sh: use autoreconf. + +2003-01-08 Neil Jerram + + * readline.c (scm_readline): Check that scm_cur_outp is an output + port, not an input one. + 2002-12-08 Rob Browning * configure.in (GUILE_EFFECTIVE_VERSION): AC_SUBST. @@ -130,7 +299,7 @@ 2001-08-31 Dirk Herrmann - * readline.scm: `feature?´ is deprecated. Use `provided?´ + * readline.scm: `feature?' is deprecated. Use `provided?' instead. 2001-08-25 Marius Vollmer @@ -162,7 +331,7 @@ 2001-06-14 Marius Vollmer - Thanks to Matthias Köppe! + Thanks to Matthias Köppe! * configure.in: Check for rl_filename_completion_function. * readline.c (s_scm_filename_completion_function): Use @@ -548,3 +717,7 @@ Sun Dec 12 19:56:52 1999 Greg J. Badros * Started guile-readline package. Files are copied from old guile-core package and slightly modified. + +;; Local Variables: +;; coding: utf-8 +;; End: