mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-23 02:27:28 +08:00
Allow # within string tokens
This means that # must be the first character of the string to start a comment, in line with other shells Fixes #953
This commit is contained in:
parent
fa588db148
commit
4b6639f697
|
@ -116,4 +116,8 @@ try_unbalanced_block 'if false'
|
|||
# BOM checking (see #1518)
|
||||
echo \uFEFF"echo bom_test" | source
|
||||
|
||||
# Comments abutting text (#953)
|
||||
echo not#a#comment
|
||||
echo is # a # comment
|
||||
|
||||
false
|
||||
|
|
|
@ -18,3 +18,5 @@ bar
|
|||
baz
|
||||
psub file was deleted
|
||||
bom_test
|
||||
not#a#comment
|
||||
is
|
||||
|
|
|
@ -138,6 +138,8 @@ int tok_has_next(tokenizer_t *tok)
|
|||
|
||||
/**
|
||||
Tests if this character can be a part of a string. The redirect ^ is allowed unless it's the first character.
|
||||
Hash (#) starts a comment if it's the first character in a token; otherwise it is considered a string character.
|
||||
See #953.
|
||||
*/
|
||||
bool tok_is_string_character(wchar_t c, bool is_first)
|
||||
{
|
||||
|
@ -150,7 +152,6 @@ bool tok_is_string_character(wchar_t c, bool is_first)
|
|||
case L'|':
|
||||
case L'\t':
|
||||
case L';':
|
||||
case L'#':
|
||||
case L'\r':
|
||||
case L'<':
|
||||
case L'>':
|
||||
|
@ -689,7 +690,7 @@ void tok_next(tokenizer_t *tok)
|
|||
}
|
||||
else
|
||||
{
|
||||
/* Not a redirection or pipe, so just a stirng */
|
||||
/* Not a redirection or pipe, so just a string */
|
||||
read_string(tok);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user