diff options
author | Sarah Morgensen <iskarian@mgsn.dev> | 2021-07-31 14:03:18 -0700 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-08-10 17:32:19 +0200 |
commit | 80fc776a614befdae7b2d22f8b154a74e5e679c4 (patch) | |
tree | c293528d4dca3de5ddd0692a3895e2a852bed832 | |
parent | 73177859bc271e65c7d3c0a44dd7d5103ed8a6db (diff) |
etc/committer: Pass command-line arguments to main.
* etc/committer.scm.in: Call main with command line arguments.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rwxr-xr-x | etc/committer.scm.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/committer.scm.in b/etc/committer.scm.in index 16f21f63b9..e81ce16611 100755 --- a/etc/committer.scm.in +++ b/etc/committer.scm.in @@ -383,4 +383,4 @@ modifying." ;; insertions lead to offsets. (new+old+hunks (diff-info))))))) -(main) +(apply main (cdr (command-line))) |