diff options
| author | Bastien Guerry | 2013-01-13 11:33:16 +0100 |
|---|---|---|
| committer | Bastien Guerry | 2013-01-13 11:33:16 +0100 |
| commit | a89c8ef024113dbf993db0d379fabbfb06c86520 (patch) | |
| tree | 94b70d44c096cec75cf0dd10686042ef4574928c /lisp/org/ChangeLog | |
| parent | f5e9cbd447d2af41da420a5dde2f28ba75892a37 (diff) | |
| download | emacs-a89c8ef024113dbf993db0d379fabbfb06c86520.tar.gz emacs-a89c8ef024113dbf993db0d379fabbfb06c86520.zip | |
Merge Org 7.9.3d (commit e8f5b0ad).
Diffstat (limited to 'lisp/org/ChangeLog')
| -rw-r--r-- | lisp/org/ChangeLog | 53 |
1 files changed, 38 insertions, 15 deletions
diff --git a/lisp/org/ChangeLog b/lisp/org/ChangeLog index 1201fa36a9f..b6d196ecf54 100644 --- a/lisp/org/ChangeLog +++ b/lisp/org/ChangeLog | |||
| @@ -1,24 +1,47 @@ | |||
| 1 | 2013-01-08 Achim Gratz <Stromeko@Stromeko.de> | 1 | 2013-01-13 Bastien Guerry <bzg@gnu.org> |
| 2 | |||
| 3 | * org-compat.el (org-condition-case-unless-debug): Delete. | ||
| 4 | |||
| 5 | * org-odt.el (org-odt-cleanup-xml-buffers): Use | ||
| 6 | `condition-case' instead of `org-condition-case-unless-debug', | ||
| 7 | which is now deleted. | ||
| 8 | |||
| 9 | * org-capture.el (org-capture-templates-contexts): | ||
| 10 | * org-agenda.el (org-agenda-custom-commands-contexts): | ||
| 11 | Docstring fix. | ||
| 12 | |||
| 13 | * org.el (org-get-tags-at): Remove duplicate inherited tags. | ||
| 14 | |||
| 15 | * org-agenda.el (org-agenda-show-inherited-tags): Allow to be set | ||
| 16 | to 'always or to a list of agenda types. | ||
| 17 | (org-agenda-finalize): Rework conditions under which inherited | ||
| 18 | tags should be made available even when not displayed. | ||
| 19 | (org-search-view, org-agenda-get-todos) | ||
| 20 | (org-agenda-get-timestamps, org-agenda-get-sexps) | ||
| 21 | (org-agenda-get-progress, org-agenda-get-scheduled) | ||
| 22 | (org-agenda-get-blocks): Use new possible values of | ||
| 23 | `org-agenda-show-inherited-tags'. | ||
| 2 | 24 | ||
| 3 | * org-compat.el (org-define-obsolete-function-alias) | 25 | * org.el (org-open-at-point): Fix opening all links at point. |
| 4 | (org-define-obsolete-variable-alias): Introduce new compatibility | ||
| 5 | macros to obsolete functions and variables. | ||
| 6 | 26 | ||
| 7 | * org-agenda.el, org-clock.el, org-id.el, org-lparse.el, | 27 | * org-agenda.el (org-get-entries-from-diary): Turn off |
| 8 | org-protocol.el org.el: Use | 28 | `diary-file-name-prefix' instead of |
| 9 | `org-define-obsolete-{function,variable}-alias' instead of | 29 | `diary-file-name-prefix-function', the former is checked before |
| 10 | `define-obsolate{function,variable}-alias'. | 30 | the latter. |
| 31 | |||
| 32 | * org.el (org-edit-special): Check for table.el before checking | ||
| 33 | for Org tables. | ||
| 34 | |||
| 35 | 2013-01-13 Michael Albinus <michael.albinus@gmx.de> | ||
| 36 | |||
| 37 | * ob-eval.el (org-babel-shell-command-on-region): Use | ||
| 38 | `executable-find' for local `shell-file-name'. | ||
| 39 | |||
| 40 | 2013-01-08 Achim Gratz <Stromeko@Stromeko.de> | ||
| 11 | 41 | ||
| 12 | * org-faces.el: Define face alias mode-line for XEmacs (it's | 42 | * org-faces.el: Define face alias mode-line for XEmacs (it's |
| 13 | called modeline there). | 43 | called modeline there). |
| 14 | 44 | ||
| 15 | * org-compat.el (org-condition-case-unless-debug): Do not use | ||
| 16 | defalias for special forms, the Emacs 22 byte-compiler does not | ||
| 17 | recognize them correctly when compiling macros. Use a macro | ||
| 18 | instead and rely on macro expansion. That however makes the | ||
| 19 | decision at compile time, which should be acceptable in this case | ||
| 20 | since it only affects debugging. | ||
| 21 | |||
| 22 | * org-compat.el (org-no-popups): New wrapper macro which let-binds | 45 | * org-compat.el (org-no-popups): New wrapper macro which let-binds |
| 23 | the correct variables to suppress popup windows depending on the | 46 | the correct variables to suppress popup windows depending on the |
| 24 | Emacs version in use. This is a compile-time decision when | 47 | Emacs version in use. This is a compile-time decision when |