summaryrefslogtreecommitdiff
path: root/src/cmd/move.zig
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2025-08-15 13:45:11 +0200
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2025-08-15 13:45:11 +0200
commitfacf440542fcb4da92ebfdfe0b40deb132268de9 (patch)
treececb682c3c4b28ff1454e81e0eba210cbf98db0b /src/cmd/move.zig
parent6f84a9a1458ff053d6dc7c1a66c1e03deb8e8793 (diff)
Remove left-over "_ = ctx.(...)" assignments.
Diffstat (limited to 'src/cmd/move.zig')
-rw-r--r--src/cmd/move.zig2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/cmd/move.zig b/src/cmd/move.zig
index 9787673..40e745d 100644
--- a/src/cmd/move.zig
+++ b/src/cmd/move.zig
@@ -9,8 +9,6 @@ const CommandContext = types.CommandContext;
pub const Move = struct {
pub fn eval(move: Move, ctx: CommandContext) !CommandStatus {
_ = move;
- _ = ctx.allocator;
- _ = ctx.input_source;
const error_msg = "MOVE command not yet implemented\n";
if (ctx.output_capture) |capture| {