diff options
| author | Nicolas Goaziou <n.goaziou@gmail.com> | 2013-01-28 12:53:37 (GMT) |
|---|---|---|
| committer | Nicolas Goaziou <n.goaziou@gmail.com> | 2013-01-28 12:53:37 (GMT) |
| commit | db6602ef24b296ecbca97b7d604e4e54e3d6be7d (patch) | |
| tree | 2d31a18f385f8f15ba613d0da558369f600330ed | |
| parent | 8d431b7313295b203ddf05e4e698130b6cf59e69 (diff) | |
| download | org-mode-db6602ef24b296ecbca97b7d604e4e54e3d6be7d.zip org-mode-db6602ef24b296ecbca97b7d604e4e54e3d6be7d.tar.gz | |
org-export: Fix code typo
* contrib/lisp/org-export.el (org-export-unravel-code): Fix code typo.
| -rw-r--r-- | contrib/lisp/org-export.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/lisp/org-export.el b/contrib/lisp/org-export.el index 4f93fcd..35a1bd8 100644 --- a/contrib/lisp/org-export.el +++ b/contrib/lisp/org-export.el @@ -3814,7 +3814,7 @@ line (string)." (code (let ((c (replace-regexp-in-string "\\`\\([ \t]*\n\\)+" "" (replace-regexp-in-string - "\\(:?[ \t]*\n\\)*[ \t]*\\'" "\n" + "\\([ \t]*\n\\)*[ \t]*\\'" "\n" (org-element-property :value element))))) ;; If appropriate, remove global indentation. (if (or org-src-preserve-indentation |
