From fcdbb5e6c9653c54358b25ec3e032ddd0a38bd9f Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Tue, 20 Sep 2011 08:37:23 +0200 Subject: [PATCH] org.el (org-paste-subtree): Remove useless (concat ...). * org.el (org-paste-subtree): Remove useless (concat ...). See change from Stefan Monnier here: https://lists.gnu.org/archive/html/emacs-diffs/2011-09/msg00224.html --- lisp/org.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org.el b/lisp/org.el index 73b107341..945d75929 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -7576,7 +7576,7 @@ the inserted text when done." (org-with-limited-levels (let* ((visp (not (outline-invisible-p))) (txt tree) - (^re_ (concat "\\(\\*+\\)[ \t]*")) + (^re_ "\\(\\*+\\)[ \t]*") (old-level (if (string-match org-outline-regexp-bol txt) (- (match-end 0) (match-beginning 0) 1) -1)) -- 2.11.4.GIT