From 1ab084ba730f1205cf04ef72b0f62b6a8a70749e Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Tue, 19 Mar 2013 18:02:09 +0100 Subject: [PATCH] org.el (org-entry-add-to-multivalued-property): Add the new value by appending it at the end of the line * org.el (org-entry-add-to-multivalued-property): Add the new value by appending it at the end of the line. Thanks to Thorsten Jolitz for a preliminary patch for this. --- lisp/org.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org.el b/lisp/org.el index 11349f638..bf74afd9d 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -15098,7 +15098,7 @@ an empty drawer to delete." (values (and old (org-split-string old "[ \t]")))) (setq value (org-entry-protect-space value)) (unless (member value values) - (setq values (cons value values)) + (setq values (append values (list value))) (org-entry-put pom property (mapconcat 'identity values " "))))) -- 2.11.4.GIT