aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/org/ChangeLog4
-rw-r--r--lisp/org/org-list.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/org/ChangeLog b/lisp/org/ChangeLog
index 4f4fbf0f931..d9831a9186b 100644
--- a/lisp/org/ChangeLog
+++ b/lisp/org/ChangeLog
@@ -1,3 +1,7 @@
12011-11-20 Andreas Schwab <schwab@linux-m68k.org>
2
3 * org-list.el (org-list-send-item): Use sort instead of sort*.
4
12011-11-20 Juanma Barranquero <lekktu@gmail.com> 52011-11-20 Juanma Barranquero <lekktu@gmail.com>
2 6
3 * org-table.el (org-table-line-to-dline): Fix typo. 7 * org-table.el (org-table-line-to-dline): Fix typo.
diff --git a/lisp/org/org-list.el b/lisp/org/org-list.el
index cc8103e3c19..a86c145a9ee 100644
--- a/lisp/org/org-list.el
+++ b/lisp/org/org-list.el
@@ -1439,7 +1439,7 @@ This function returns, destructively, the new list structure."
1439 ;; 1.1. Remove the item just created in structure. 1439 ;; 1.1. Remove the item just created in structure.
1440 (setq struct (delete (assq new-item struct) struct)) 1440 (setq struct (delete (assq new-item struct) struct))
1441 ;; 1.2. Copy ITEM and any of its sub-items at NEW-ITEM. 1441 ;; 1.2. Copy ITEM and any of its sub-items at NEW-ITEM.
1442 (setq struct (sort* 1442 (setq struct (sort
1443 (append 1443 (append
1444 struct 1444 struct
1445 (mapcar (lambda (e) 1445 (mapcar (lambda (e)