Eli Zaretskii writes: >> From: john muhl >> Cc: 74235@debbugs.gnu.org >> Date: Sat, 09 Nov 2024 14:54:47 -0600 >> >> + (if (or (not lua-ts-inferior-program) >> + (not (executable-find lua-ts-inferior-program))) >> + (user-error "You must set `lua-ts-inferior-program' to use this command") > > The text of user-error should say something about being unable to find > the program, not just about the variable being nil, since you use > executable-find. > > Otherwise, LGTM, thanks. I guess the executable-find check is redundant anyway since comint/process will tell you “Searching for program: No such file or directory, luaz” if you get it wrong. Thanks again.