forked from mirrors/jj
revsets: allow underscore in identifiers
This commit is contained in:
parent
0dac2e5ed5
commit
acf3798abc
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
identifier = @{ (ASCII_ALPHANUMERIC | "@" | "/" | ".")+ }
|
||||
identifier = @{ (ASCII_ALPHANUMERIC | "_" | "@" | "/" | ".")+ }
|
||||
symbol = {
|
||||
identifier
|
||||
| literal_string
|
||||
|
|
Loading…
Reference in a new issue