about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2023-08-31 00:13:43 -0700
committerKartik K. Agaram <vc@akkartik.com>2023-08-31 00:13:43 -0700
commit502129809057bb2d06453b88ec368bee964556e7 (patch)
tree26e68e088ba4d9f674b60ad8d83258dc5259c8fc
parent1fc11feb28bf336f9a1d74e014ad4c7418001047 (diff)
parent6e54ad55d98ff041db15a1a1157e493d76776dfc (diff)
downloadtext.love-502129809057bb2d06453b88ec368bee964556e7.tar.gz
Merge lines.love
-rw-r--r--file.lua2
-rw-r--r--source_file.lua2
2 files changed, 2 insertions, 2 deletions
diff --git a/file.lua b/file.lua
index d7fcc4e..f7f832b 100644
--- a/file.lua
+++ b/file.lua
@@ -33,7 +33,7 @@ end
 
 function save_to_disk(State)
   local outfile = App.open_for_writing(State.filename)
-  if outfile == nil then
+  if not outfile then
     error('failed to write to "'..State.filename..'"')
   end
   for _,line in ipairs(State.lines) do
diff --git a/source_file.lua b/source_file.lua
index b0e26eb..dbb6f95 100644
--- a/source_file.lua
+++ b/source_file.lua
@@ -45,7 +45,7 @@ end
 
 function save_to_disk(State)
   local outfile = App.open_for_writing(App.save_dir..State.filename)
-  if outfile == nil then
+  if not outfile then
     error('failed to write to "'..State.filename..'"')
   end
   for _,line in ipairs(State.lines) do