|
From: | Stefan Monnier |
Subject: | Re: master c69858b3f0: ; * lisp/treesit.el (treesit-ready-p): Guard against empty buffers. |
Date: | Tue, 22 Nov 2022 20:51:40 -0500 |
User-agent: | Gnus/5.13 (Gnus v5.13) |
> - (when (> (position-bytes (1- (point-max))) treesit-max-buffer-size) > + (when (> (position-bytes (max (point-min) (1- (point-max)))) > + treesit-max-buffer-size) I'd expect `treesit-max-buffer-size` to be compared to `buffer-size` rather than to buffer positions. Is it really that important to count bytes rather than characters? Stefan
[Prev in Thread] | Current Thread | [Next in Thread] |