From 2e3907abd3d3220d4a6301a248ffd871b74c256f Mon Sep 17 00:00:00 2001 From: XeonSquared Date: Tue, 13 Aug 2019 15:31:10 +1000 Subject: [PATCH] made ct.p and ct.P point to the correct functions --- exec/ed.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exec/ed.lua b/exec/ed.lua index 3153c27..55662a0 100644 --- a/exec/ed.lua +++ b/exec/ed.lua @@ -106,8 +106,8 @@ ct.a = ct.append ct.s = ct.substitute ct.d = ct.delete ct.f = ct.filename -ct.p = ct.pasteprevious -ct.P = ct.paste +ct.P = ct.pasteprevious +ct.p = ct.paste ct.readfile(fp)