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

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

[elpa] externals/org 4198cbd 3/3: Strictly match language when loading E


From: ELPA Syncer
Subject: [elpa] externals/org 4198cbd 3/3: Strictly match language when loading Elisp code
Date: Sat, 7 Aug 2021 16:57:16 -0400 (EDT)

branch: externals/org
commit 4198cbd074222039a02d9c908ac712ff1ef35146
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Commit: Nicolas Goaziou <mail@nicolasgoaziou.fr>

    Strictly match language when loading Elisp code
    
    * lisp/org.el (org-babel-load-file): Strictly check language before
    loading source code.
    
    Reported-by: dmg <dmg@turingmachine.org>
    <http://lists.gnu.org/r/emacs-orgmode/2021-07/msg00631.html>
---
 lisp/org.el | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/lisp/org.el b/lisp/org.el
index eca12a5..ce68f46 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -232,7 +232,11 @@ byte-compiled before it is loaded."
             tangled-file
             (file-attribute-modification-time
              (file-attributes (file-truename file))))
-      (org-babel-tangle-file file tangled-file "emacs-lisp\\|elisp"))
+      (org-babel-tangle-file file
+                             tangled-file
+                             (rx string-start
+                                 (or "emacs-lisp" "elisp")
+                                 string-end)))
     (if compile
        (progn
          (byte-compile-file tangled-file)



reply via email to

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