emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/org d4e3598ab8 2/2: fixup! org-babel-read: Fix cells li


From: ELPA Syncer
Subject: [elpa] externals/org d4e3598ab8 2/2: fixup! org-babel-read: Fix cells like '"string" more'
Date: Sun, 23 Oct 2022 03:57:49 -0400 (EDT)

branch: externals/org
commit d4e3598ab8bb4248e0db4b8d196127b564184d31
Author: Ihor Radchenko <yantar92@posteo.net>
Commit: Ihor Radchenko <yantar92@posteo.net>

    fixup! org-babel-read: Fix cells like '"string" more'
---
 lisp/ob-core.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/ob-core.el b/lisp/ob-core.el
index c5d88677a1..65f63d43e7 100644
--- a/lisp/ob-core.el
+++ b/lisp/ob-core.el
@@ -3161,7 +3161,7 @@ situations in which is it not appropriate."
                  (string= cell "*this*")))
         (eval (read cell) t))
        ((save-match-data
-           (and (string-match "^[[:space:]]*\"\\(.+\\)\"[[:space:]]*$" cell)
+           (and (string-match "^[[:space:]]*\"\\(.*\\)\"[[:space:]]*$" cell)
                 (not (string-match "[^\\]\"" (match-string 1 cell)))))
          (read cell))
        (t (org-no-properties cell))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]