1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 14:00:21 +02:00

* readline.c (scm_init_readline): Set

rl_basic_word_break_characters.  (Thanks to Ian Grant.)
This commit is contained in:
Mikael Djurfeldt 1998-11-19 04:48:50 +00:00
parent 224822be69
commit 3b2ee8bcdf

View file

@ -370,6 +370,7 @@ scm_init_readline ()
rl_getc_function = current_input_getc;
rl_redisplay_function = redisplay;
rl_completion_entry_function = (Function*) completion_function;
rl_basic_word_break_characters = "\t\n\"'`;()";
#ifdef USE_THREADS
scm_mutex_init (&reentry_barrier_mutex);
#endif