Browse Source

babel: org-babel-load-file will no longer strip portions of file names which appear to be extensions

Eric Schulte 15 years ago
parent
commit
b59ebe6ec2
1 changed files with 2 additions and 3 deletions
  1. 2 3
      contrib/babel/lisp/org-babel-tangle.el

+ 2 - 3
contrib/babel/lisp/org-babel-tangle.el

@@ -108,9 +108,8 @@ exported source code blocks by language."
                                        ((> (length tangle) 0) tangle))
                                       target-file))
                        (file-name (when base-name
-                                    (if (and ext
-                                             (string= base-name
-                                                      (file-name-sans-extension base-name)))
+                                    ;; decide if we want to add ext to base-name
+                                    (if (and ext (not (string= (file-name-extension base-name) ext)))
                                         (concat base-name "." ext) base-name))))
                   ;; ;; debugging
                   ;; (message