about summary refs log tree commit diff stats
path: root/log.lua
diff options
context:
space:
mode:
Diffstat (limited to 'log.lua')
-rw-r--r--log.lua8
1 files changed, 6 insertions, 2 deletions
diff --git a/log.lua b/log.lua
index 6bbd0c4..8903e08 100644
--- a/log.lua
+++ b/log.lua
@@ -14,13 +14,17 @@ function log_start(name, stack_frame_index)
 	if stack_frame_index == nil then
 		stack_frame_index = 3
 	end
-	log(stack_frame_index, '\u{250c} ' .. name)
+	-- I'd like to use the unicode character \u{250c} here, but it doesn't work
+	-- in OpenBSD.
+	log(stack_frame_index, '[ u250c ' .. name)
 end
 function log_end(name, stack_frame_index)
 	if stack_frame_index == nil then
 		stack_frame_index = 3
 	end
-	log(stack_frame_index, '\u{2518} ' .. name)
+	-- I'd like to use the unicode character \u{2518} here, but it doesn't work
+	-- in OpenBSD.
+	log(stack_frame_index, '] u2518 ' .. name)
 end
 
 function log_new(name, stack_frame_index)