]> git.eshelyaron.com Git - emacs.git/commit
Check keyword args of make-process
authorHelmut Eller <eller.helmut@gmail.com>
Thu, 3 Aug 2023 06:33:40 +0000 (08:33 +0200)
committerMattias EngdegÄrd <mattiase@acm.org>
Tue, 8 Aug 2023 16:23:00 +0000 (18:23 +0200)
commit3e79fd3d4e810c2ef4cf9925a747c93e036fddca
treea978150f0fbeca9823e3d89d54ea1886558cef65
parentefb3ef0fe07a1fe8c713921ceba74f476c8aa40b
Check keyword args of make-process

The functions make-process and make-network-process have many
keyword args and it's easy to misspell some of them.

Use a compiler macro to warn about some possible mistakes.

* lisp/emacs-lisp/bytecomp.el (bytecomp--check-keyword-args): New
  helper.
  (make-process, make-network-process): Define a compiler macro that
  performs some checks but doesn't anything else.

* test/lisp/emacs-lisp/bytecomp-tests.el: Add some tests.

* test/lisp/emacs-lisp/bytecomp-resources/:
  (warn-make-process-missing-keyword-arg.el,
   warn-make-process-missing-keyword-value.el,
   warn-make-process-repeated-keyword-arg.el,
   warn-make-process-unknown-keyword-arg.el): New test files
lisp/emacs-lisp/bytecomp.el
test/lisp/emacs-lisp/bytecomp-resources/warn-make-process-missing-keyword-arg.el [new file with mode: 0644]
test/lisp/emacs-lisp/bytecomp-resources/warn-make-process-missing-keyword-value.el [new file with mode: 0644]
test/lisp/emacs-lisp/bytecomp-resources/warn-make-process-repeated-keyword-arg.el [new file with mode: 0644]
test/lisp/emacs-lisp/bytecomp-resources/warn-make-process-unknown-keyword-arg.el [new file with mode: 0644]
test/lisp/emacs-lisp/bytecomp-tests.el