Skip to content

Commit 80b74a1

Browse files
committed
[scripts] fix double quotes misuse in breakpoint script
1 parent 9c6e36e commit 80b74a1

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/scripts/lnav-moveto-breakpoint.lnav

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55

66
;SELECT
77
CASE
8-
WHEN count(*) = 0 THEN raise_error("Cannot move to breakpoint", "No breakpoints have been set yet")
8+
WHEN count(*) = 0 THEN raise_error('Cannot move to breakpoint', 'No breakpoints have been set yet')
99
ELSE 1
1010
END
1111
FROM lnav_log_breakpoints
1212
UNION ALL
1313
SELECT
1414
CASE
15-
WHEN name != 'log' THEN raise_error("Cannot move to breakpoint", "Breakpoints are only supported in the LOG view")
15+
WHEN name != 'log' THEN raise_error('Cannot move to breakpoint', 'Breakpoints are only supported in the LOG view')
1616
ELSE 1
1717
END
1818
FROM lnav_top_view;
@@ -37,7 +37,7 @@
3737
ORDER BY log_line $line_order
3838
LIMIT 1
3939

40-
;SELECT raise_error("No more breakpoints after here")
40+
;SELECT raise_error('No more breakpoints after here')
4141
WHERE $log_line IS NULL
4242

4343
:switch-to-view log

0 commit comments

Comments
 (0)