]> git.eshelyaron.com Git - emacs.git/commit
Recognize shebang lines that pass '-S/--split-string' to 'env'
authorKévin Le Gouguec <kevin.legouguec@gmail.com>
Sun, 12 Nov 2023 09:55:24 +0000 (10:55 +0100)
committerEli Zaretskii <eliz@gnu.org>
Sun, 19 Nov 2023 09:05:26 +0000 (11:05 +0200)
commit53bd2d57f34af1efd88c6d189ab15e6f44866333
treec650031f9d5c3607003fe75c3e746e94d50ffdab
parent779e669bbccb87c9462ae06ad48c0b868ec6c22b
Recognize shebang lines that pass '-S/--split-string' to 'env'

* etc/NEWS: announce the change.

* lisp/files.el (auto-mode-interpreter-regexp): Add optional '-S'
switch to the ignored group capturing the env invocation.
Allow multiple spaces between #!, interpreter and first argument:
empirically, Linux's 'execve' accepts that.  (Bug#66902)

* test/lisp/files-tests.el (files-tests--check-shebang): New helper to
generate a temporary file with a given interpreter line, and assert
that the mode picked by 'set-auto-mode' is derived from an expected
mode.  Write the 'should' form so that failure reports include useful
context; for example:

    (ert-test-failed
     ((should
       (equal (list shebang actual-mode) (list shebang expected-mode)))
      :form
      (equal ("#!/usr/bin/env -S make -f" fundamental-mode)
     ("#!/usr/bin/env -S make -f" makefile-mode))
      :value nil :explanation
      (list-elt 1 (different-atoms fundamental-mode makefile-mode))))

* test/lisp/files-tests.el (files-tests-auto-mode-interpreter): New
test; exercise some aspects of 'interpreter-mode-alist'.
etc/NEWS
lisp/files.el
test/lisp/files-tests.el