diff options
| author | Glenn Morris | 2008-10-28 02:57:25 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-10-28 02:57:25 +0000 |
| commit | 9fc10007e93fe4f6349976f5a32cae55b5cdb4c8 (patch) | |
| tree | cce98dc001df7cf6cc19422880c19d5385ffe607 | |
| parent | 30ab4580f6cd4a360ea9de3d5eecfbdb3ccc7489 (diff) | |
| download | emacs-9fc10007e93fe4f6349976f5a32cae55b5cdb4c8.tar.gz emacs-9fc10007e93fe4f6349976f5a32cae55b5cdb4c8.zip | |
(outline-next-heading, outline-back-to-heading): Fix declarations.
| -rw-r--r-- | lisp/org/ChangeLog | 7 | ||||
| -rw-r--r-- | lisp/org/org-list.el | 4 |
2 files changed, 9 insertions, 2 deletions
diff --git a/lisp/org/ChangeLog b/lisp/org/ChangeLog index 40a8ee75f35..9ebfe4dd0fe 100644 --- a/lisp/org/ChangeLog +++ b/lisp/org/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2008-10-28 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * org-agenda.el (org-agenda-align-tags): Replace use of cl `adjoin'. | ||
| 4 | |||
| 5 | * org-list.el (outline-next-heading, outline-back-to-heading): | ||
| 6 | Fix declarations. | ||
| 7 | |||
| 1 | 2008-10-26 Carsten Dominik <dominik@science.uva.nl> | 8 | 2008-10-26 Carsten Dominik <dominik@science.uva.nl> |
| 2 | 9 | ||
| 3 | * org-agenda.el (org-format-agenda-item) | 10 | * org-agenda.el (org-format-agenda-item) |
diff --git a/lisp/org/org-list.el b/lisp/org/org-list.el index 004b56e684e..583042ed5f1 100644 --- a/lisp/org/org-list.el +++ b/lisp/org/org-list.el | |||
| @@ -38,8 +38,8 @@ | |||
| 38 | 38 | ||
| 39 | (declare-function org-invisible-p "org" ()) | 39 | (declare-function org-invisible-p "org" ()) |
| 40 | (declare-function org-on-heading-p "org" (&optional invisible-ok)) | 40 | (declare-function org-on-heading-p "org" (&optional invisible-ok)) |
| 41 | (declare-function outline-next-heading "org" ()) | 41 | (declare-function outline-next-heading "outline" ()) |
| 42 | (declare-function outline-back-to-heading "org" (&optional invisible-ok)) | 42 | (declare-function outline-back-to-heading "outline" (&optional invisible-ok)) |
| 43 | (declare-function org-back-to-heading "org" (&optional invisible-ok)) | 43 | (declare-function org-back-to-heading "org" (&optional invisible-ok)) |
| 44 | (declare-function org-back-over-empty-lines "org" ()) | 44 | (declare-function org-back-over-empty-lines "org" ()) |
| 45 | (declare-function org-skip-whitespace "org" ()) | 45 | (declare-function org-skip-whitespace "org" ()) |