From 6e1e44adb4b908e95ac6d5ffeafae306f4acb9c8 Mon Sep 17 00:00:00 2001 From: Garrett Mills Date: Mon, 2 Mar 2026 23:35:29 -0600 Subject: [PATCH] Make unquote unescape formerly-captured quotemarks --- src/vm/commands/quote.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/vm/commands/quote.ts b/src/vm/commands/quote.ts index 83c9c13..07ce5d1 100644 --- a/src/vm/commands/quote.ts +++ b/src/vm/commands/quote.ts @@ -16,6 +16,7 @@ export const stripQuotemarkLayer = (s: string, marks?: string[]): string => { } s = s.substring(mark.length, s.length - mark.length) + s = s.replaceAll(`\\${mark}`, mark) break }