From 2e3497d1a0b5dc36f84843c214ff4dc7f748fd01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20T=C3=A1vora?= Date: Tue, 14 Feb 2012 15:22:33 +0000 Subject: [PATCH] Fix issue #208 --- yasnippet.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/yasnippet.el b/yasnippet.el index afaf865..387e5a9 100644 --- a/yasnippet.el +++ b/yasnippet.el @@ -544,7 +544,7 @@ snippet itself contains a condition that returns the symbol "A list of mode which is well known but not part of emacs.") (defvar yas/escaped-characters - '(?\\ ?` ?' ?$ ?} ?{ ?\( ?\)) + '(?\\ ?` ?\" ?' ?$ ?} ?{ ?\( ?\)) "List of characters which *might* need to be escaped.") (defconst yas/field-regexp @@ -3678,7 +3678,7 @@ Meant to be called in a narrowed buffer, does various passes" (setq yas/dollar-regions nil) ;; protect escaped quote, backquotes and backslashes ;; - (yas/protect-escapes nil '(?\\ ?` ?')) + (yas/protect-escapes nil `(?\\ ?` ?')) ;; replace all backquoted expressions ;; (goto-char parse-start)