about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/local/pager.nim1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/local/pager.nim b/src/local/pager.nim
index cb3f751e..ebe48a61 100644
--- a/src/local/pager.nim
+++ b/src/local/pager.nim
@@ -321,6 +321,7 @@ proc gotoLine(ctx: JSContext; pager: Pager; val = JS_UNDEFINED): Opt[void]
     var s: string
     ?ctx.fromJS(val, s)
     pager.container.gotoLine(s)
+  return ok()
 
 proc dumpAlerts*(pager: Pager) =
   for msg in pager.alerts:
f='#n74'>74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107