diff options
| author | Yuan Fu | 2023-09-13 21:41:56 -0700 |
|---|---|---|
| committer | Yuan Fu | 2023-09-13 21:41:56 -0700 |
| commit | f13b08be11533c546fed257dcf8e3812a53b672a (patch) | |
| tree | 7b38a3756d3d1e1fd0331d8521caacc5ab2a25ec /src | |
| parent | de6a652a03187a2243f0d581955ae803332ac6df (diff) | |
| download | emacs-f13b08be11533c546fed257dcf8e3812a53b672a.tar.gz emacs-f13b08be11533c546fed257dcf8e3812a53b672a.zip | |
; * src/treesit.c (Ftreesit_parser_set_included_ranges): Minor fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/treesit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/treesit.c b/src/treesit.c index 890091e3419..91d4616253d 100644 --- a/src/treesit.c +++ b/src/treesit.c | |||
| @@ -1657,7 +1657,7 @@ buffer. */) | |||
| 1657 | if (!NILP (ranges)) | 1657 | if (!NILP (ranges)) |
| 1658 | CHECK_CONS (ranges); | 1658 | CHECK_CONS (ranges); |
| 1659 | 1659 | ||
| 1660 | if (Fequal (XTS_PARSER (parser)->last_set_ranges, ranges)) | 1660 | if (!NILP (Fequal (XTS_PARSER (parser)->last_set_ranges, ranges))) |
| 1661 | return Qnil; | 1661 | return Qnil; |
| 1662 | 1662 | ||
| 1663 | treesit_check_range_argument (ranges); | 1663 | treesit_check_range_argument (ranges); |