From b00a355adb956e942af20d16478468321789d064 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Thu, 30 Aug 2012 07:03:36 +0200 Subject: [PATCH] org.el (org-mode): Set the syntax of the " character to "string quote" * org.el (org-mode): Set the syntax of the " character to "string quote". Thanks to Samuel Wales for asking a related question and to Nick Dokos for suggesting this solution. --- lisp/org.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/org.el b/lisp/org.el index 1ad8dbc6e..ca67845bd 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -5074,6 +5074,7 @@ The following commands are available: ;; Calc embedded (org-set-local 'calc-embedded-open-mode "# ") (modify-syntax-entry ?@ "w") + (modify-syntax-entry ?\" "\"") (if org-startup-truncated (setq truncate-lines t)) (org-set-local 'font-lock-unfontify-region-function 'org-unfontify-region)