From 72b7d02118caed9ef478810cf7353f5dbfb7b4e0 Mon Sep 17 00:00:00 2001 From: Angel Ortega Date: Mon, 27 Feb 2012 16:17:36 +0100 Subject: [PATCH] Do not use backslash-b to select backspaces. --- mp_syntax.mpsl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mp_syntax.mpsl b/mp_syntax.mpsl index b9acee0..0444036 100644 --- a/mp_syntax.mpsl +++ b/mp_syntax.mpsl @@ -760,7 +760,7 @@ sub mp.help(doc, word) h = []; while ((l = read(f)) != NULL) { - l = sregex(l, "/\b./g"); + l = sregex(l, "/\x{0008}./g"); push(h, mp.chomp(l)); } -- 2.11.4.GIT