[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[dmd] 01/01: halt, reboot: Clarify usage line in '--help'.
From: |
Ludovic Courtès |
Subject: |
[dmd] 01/01: halt, reboot: Clarify usage line in '--help'. |
Date: |
Fri, 20 Nov 2015 22:27:54 +0000 |
civodul pushed a commit to branch master
in repository dmd.
commit b0aa61388cc4370a25f178daac48915375c13401
Author: Ludovic Courtès <address@hidden>
Date: Fri Nov 20 23:26:44 2015 +0100
halt, reboot: Clarify usage line in '--help'.
Reported by sebboh on #guix.
* modules/halt.scm (main): Remove "ARGS..." string in 'process-args'
argument.
* modules/reboot.scm (main): Ditto.
---
modules/halt.scm | 4 ++--
modules/reboot.scm | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/modules/halt.scm b/modules/halt.scm
index 7202560..3cf71ab 100644
--- a/modules/halt.scm
+++ b/modules/halt.scm
@@ -1,5 +1,5 @@
;; halt.scm -- Halt or power off the system.
-;; Copyright (C) 2013, 2014 Ludovic Courtès <address@hidden>
+;; Copyright (C) 2013, 2014, 2015 Ludovic Courtès <address@hidden>
;;
;; This file is part of GNU dmd.
;;
@@ -36,7 +36,7 @@
(let ((socket-file default-socket-file)
(command-args '()))
(process-args program-name args
- "ARG..."
+ ""
"Halt or power off the system."
not ;; Fail on unknown args.
(make <option>
diff --git a/modules/reboot.scm b/modules/reboot.scm
index 07e41c4..b366d9e 100644
--- a/modules/reboot.scm
+++ b/modules/reboot.scm
@@ -1,5 +1,5 @@
;; reboot.scm -- Reboot the system.
-;; Copyright (C) 2013, 2014 Ludovic Courtès <address@hidden>
+;; Copyright (C) 2013, 2014, 2015 Ludovic Courtès <address@hidden>
;;
;; This file is part of GNU dmd.
;;
@@ -36,7 +36,7 @@
(let ((socket-file default-socket-file)
(command-args '()))
(process-args program-name args
- "ARG..."
+ ""
"Reboot the system."
not ;; Fail on unknown args.
(make <option>