diff options
| author | Hilton Chain <hako@ultrarare.space> | 2025-02-27 10:30:38 +0800 |
|---|---|---|
| committer | Hilton Chain <hako@ultrarare.space> | 2025-08-21 19:08:18 +0800 |
| commit | 115accdb26af71c917c9a6ff02073bf9b4ec811c (patch) | |
| tree | 217b624dbce682712d51004cf12c5ead20bafafc | |
| parent | a6598a9019acb2dbf74fb284c2bd3dc132c30bfd (diff) | |
scripts: import: Add two newlines for ‘--insert’ option.
For consistency with ‘insert-expression’.
* guix/scripts/import.scm (guix-import): Add two newlines after inserting.
Change-Id: I55b45ca137d175fdf6ee5c0bb2b6b1ca8385750d
| -rw-r--r-- | guix/scripts/import.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/guix/scripts/import.scm b/guix/scripts/import.scm index a91e0cf6a6..53794d5bbf 100644 --- a/guix/scripts/import.scm +++ b/guix/scripts/import.scm @@ -141,6 +141,7 @@ PROC callback." (let ((port (open-file file "a"))) (pretty-print-with-comments port expr) (newline port) + (newline port) (close-port port))))))))) (import-as-definitions importer args find-and-insert))) ((importer args ...) |
