Merge from origin/emacs-30

4f2a21cc2a Don't restrict 'lua-ts-send-file' to 'lua-ts-mode'
This commit is contained in:
Eli Zaretskii 2024-12-07 09:16:18 -05:00
commit 6f6b641975

View file

@ -694,7 +694,7 @@ Calls REPORT-FN directly."
(defun lua-ts-send-file (file)
"Send contents of FILE to the inferior Lua process."
(interactive "f" lua-ts-mode)
(interactive "f")
(with-temp-buffer
(insert-file-contents-literally file)
(lua-ts-send-region (point-min) (point-max))))