Skip to content

Commit c77d758

Browse files
author
Rik
committed
Fix autocompletion of readline with directory names starting with '@' (bug #60640)
Don't insert quoting character before a directory name that begins with '@'. * input.cc (input_system::initialize): Remove '@' from list of characters passed to set_filename_quote_characters().
1 parent 3185983 commit c77d758

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libinterp/corefcn/input.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ input_system::initialize (bool line_editing)
437437

438438
command_editor::set_basic_quote_characters (R"(")");
439439

440-
command_editor::set_filename_quote_characters (" \t\n\\\"'@<>=;|&()#$`?*[!:{");
440+
command_editor::set_filename_quote_characters (" \t\n\\\"'<>=;|&()#$`?*[!:{");
441441

442442
command_editor::set_completer_quote_characters (R"('")");
443443

0 commit comments

Comments
 (0)