diff options
| author | Andreas Schwab | 2011-11-20 10:44:39 +0100 |
|---|---|---|
| committer | Andreas Schwab | 2011-11-20 10:44:39 +0100 |
| commit | f6cba7e0851e534ea71c276dfd13c4062bc84407 (patch) | |
| tree | a136d8fbd905b5ffe74a6529690940e1256d5d23 | |
| parent | d5ff9cd0468a844d90181c5a6591bdabd2a45acd (diff) | |
| download | emacs-f6cba7e0851e534ea71c276dfd13c4062bc84407.tar.gz emacs-f6cba7e0851e534ea71c276dfd13c4062bc84407.zip | |
* org-list.el (org-list-send-item): Use sort instead of sort*.
| -rw-r--r-- | lisp/org/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/org/org-list.el | 2 |
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 @@ | |||
| 1 | 2011-11-20 Andreas Schwab <schwab@linux-m68k.org> | ||
| 2 | |||
| 3 | * org-list.el (org-list-send-item): Use sort instead of sort*. | ||
| 4 | |||
| 1 | 2011-11-20 Juanma Barranquero <lekktu@gmail.com> | 5 | 2011-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) |