about summary refs log tree commit diff stats
path: root/text.lua
diff options
context:
space:
mode:
Diffstat (limited to 'text.lua')
-rw-r--r--text.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/text.lua b/text.lua
index 7cc89f5..e8b4b24 100644
--- a/text.lua
+++ b/text.lua
@@ -1437,8 +1437,8 @@ function Text.keychord_pressed(chord)
   elseif chord == 'M-v' then
     local before_line = Cursor1.line
     local before = snapshot(before_line)
-    local s = App.getClipboardText()
-    for _,code in utf8.codes(s) do
+    local clipboard_data = App.getClipboardText()
+    for _,code in utf8.codes(clipboard_data) do
       local c = utf8.char(code)
       if c == '\n' then
         Text.insert_return()