From 973722ac3afb4f8df1e808be545a23424bb32a0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christopher=20Cot=C3=A9?= Date: Fri, 1 Jul 2022 16:35:57 -0400 Subject: [PATCH] use column 0 for :elixir.string_to_tokens/5 --- lib/watcher.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/watcher.ex b/lib/watcher.ex index 48f2257..0e974e4 100644 --- a/lib/watcher.ex +++ b/lib/watcher.ex @@ -116,7 +116,7 @@ defmodule OpenSCAD.Watcher do end defp string_to_quoted(string, start_line, file, opts) do - case :elixir.string_to_tokens(string, start_line, file, opts) do + case :elixir.string_to_tokens(string, start_line, 0, file, opts) do {:ok, tokens} -> :elixir.tokens_to_quoted(tokens, file, opts)