From 27f1f0b76a6f3b2fc14e7a233cd8a30fdbe9b635 Mon Sep 17 00:00:00 2001 From: paul Date: Mon, 9 Jan 1995 20:00:54 +0000 Subject: Fix a bug with handling backslash escapes inside some quotes. Should solve our problems with edit-pr. --- bin/sh/parser.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin') diff --git a/bin/sh/parser.c b/bin/sh/parser.c index f3b9bcf..d890595 100644 --- a/bin/sh/parser.c +++ b/bin/sh/parser.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $Id: parser.c,v 1.3 1994/09/24 02:58:08 davidg Exp $ */ #ifndef lint @@ -1181,7 +1181,7 @@ parsebackq: { while ((c = pgetc ()) != '`') { if (c == '\\') { c = pgetc (); - if (c != '\\' && c != '`' && c != '$' + if (c != '`' && c != '$' && (!dblquote || c != '"')) STPUTC('\\', out); } -- cgit v1.1