about summary refs log tree commit diff stats
path: root/undo.lua
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2022-06-02 16:44:18 -0700
committerKartik K. Agaram <vc@akkartik.com>2022-06-02 16:44:18 -0700
commit22817492a3c5dd33c7d34c0c505b2bac2661d0ac (patch)
tree42750e2703719181875f741629160524540c3702 /undo.lua
parent477216a0517671f4a5e34f4e66061898f22665c3 (diff)
downloadlines.love-22817492a3c5dd33c7d34c0c505b2bac2661d0ac.tar.gz
rename
Diffstat (limited to 'undo.lua')
-rw-r--r--undo.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/undo.lua b/undo.lua
index abf5f33..bc47f05 100644
--- a/undo.lua
+++ b/undo.lua
@@ -33,7 +33,7 @@ function redo_event()
 end
 
 -- Make copies of objects; the rest of the app may mutate them in place, but undo requires immutable histories.
-function snapshot_everything()
+function snapshot()
   -- compare with App.initialize_globals
   local event = {
     screen_top=deepcopy(Screen_top1),