1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-29 19:30:36 +02:00

fix argument tab-completion

* guile-readline/readline.c (scm_init_readline): Space is a
  word-breaking char too. Fixes tab-completion for args; thanks to Jao
  for the patch!
This commit is contained in:
Andy Wingo 2010-06-02 22:19:03 +02:00
parent 22cf27c815
commit 4255e79fda

View file

@ -1,6 +1,6 @@
/* readline.c --- line editing support for Guile */
/* Copyright (C) 1997,1999,2000,2001, 2002, 2003, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
/* Copyright (C) 1997,1999,2000,2001, 2002, 2003, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -554,7 +554,7 @@ scm_init_readline ()
#else
rl_completion_entry_function = (Function*) completion_function;
#endif
rl_basic_word_break_characters = "\t\n\"'`;()";
rl_basic_word_break_characters = " \t\n\"'`;()";
rl_readline_name = "Guile";
reentry_barrier_mutex = scm_make_mutex ();