1
0
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-12-04 08:47:03 +00:00

Remove unnecessary `concat'

* lisp/org.el (org-paste-subtree): Remove unnecessary `concat'.
This commit is contained in:
Carsten Dominik 2011-09-20 10:32:41 +02:00
parent 11dec73c0c
commit c7ee700bf5

View File

@ -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))