aboutsummaryrefslogtreecommitdiff
path: root/source/command_line_interface.elna
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2026-07-14 19:42:32 +0200
committerEugen Wissner <belka@caraus.de>2026-07-14 19:42:32 +0200
commit308a2addf655fe45f2098f8542f0ff1290612cd9 (patch)
tree19230bdb673d306d59b32427ad2a3ad5e9850631 /source/command_line_interface.elna
parenta32a61813ebaecf0c1e69fd1481bf09d8c8b1420 (diff)
downloadelna-308a2addf655fe45f2098f8542f0ff1290612cd9.tar.gz
Replace procedure end with return
Diffstat (limited to 'source/command_line_interface.elna')
-rw-r--r--source/command_line_interface.elna6
1 files changed, 2 insertions, 4 deletions
diff --git a/source/command_line_interface.elna b/source/command_line_interface.elna
index b9006f1..54eb87f 100644
--- a/source/command_line_interface.elna
+++ b/source/command_line_interface.elna
@@ -83,9 +83,7 @@ begin
if result <> nil & result^.input = nil then
write_s("Fatal error: no input files.\n");
result := nil
- end;
-
- return result
-end
+ end
+return result
end.