We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf5c8c5 commit 1fb0b98Copy full SHA for 1fb0b98
1 file changed
Modules/readline.c
@@ -1404,6 +1404,10 @@ setup_readline(readlinestate *mod_state)
1404
completer_word_break_characters =
1405
strdup(" \t\n`~!@#$%^&*()-=+[{]}\\|;:'\",<>/?");
1406
/* All nonalphanums except '.' */
1407
+
1408
+ if (!completer_word_break_characters) {
1409
+ return -1;
1410
+ }
1411
#ifdef WITH_EDITLINE
1412
// libedit uses rl_basic_word_break_characters instead of
1413
// rl_completer_word_break_characters as complete delimiter
0 commit comments