diff options
| author | Paul Eggert | 2020-01-05 11:48:59 -0800 |
|---|---|---|
| committer | Paul Eggert | 2020-01-05 11:50:31 -0800 |
| commit | 088bfcc2d80eed44864147f3491eff69e4eb5cd8 (patch) | |
| tree | a57599fb3064d09c38eec4ddd9cded8a3df72e6c /lisp/org | |
| parent | 448df8fec7a7fb3fe558749591e657e8a84cb46b (diff) | |
| download | emacs-088bfcc2d80eed44864147f3491eff69e4eb5cd8.tar.gz emacs-088bfcc2d80eed44864147f3491eff69e4eb5cd8.zip | |
Move “Fix some broken conditional forms” to master
Revert 2020-01-04T19:17:12Z!eggert@cs.ucla.edu
which recently I installed into the emacs-27 branch by mistake.
These patches are now on master instead (via merging).
Do not merge to master.
Diffstat (limited to 'lisp/org')
| -rw-r--r-- | lisp/org/org-agenda.el | 1 | ||||
| -rw-r--r-- | lisp/org/ox-odt.el | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/lisp/org/org-agenda.el b/lisp/org/org-agenda.el index f45e47fb59a..4f89ea54500 100644 --- a/lisp/org/org-agenda.el +++ b/lisp/org/org-agenda.el | |||
| @@ -8981,6 +8981,7 @@ fold drawers." | |||
| 8981 | (narrow-to-region (org-entry-beginning-position) | 8981 | (narrow-to-region (org-entry-beginning-position) |
| 8982 | (org-entry-end-position)) | 8982 | (org-entry-end-position)) |
| 8983 | (org-show-all '(drawers)))) | 8983 | (org-show-all '(drawers)))) |
| 8984 | (when arg ) | ||
| 8984 | (setq org-agenda-show-window (selected-window))) | 8985 | (setq org-agenda-show-window (selected-window))) |
| 8985 | (select-window win))) | 8986 | (select-window win))) |
| 8986 | 8987 | ||
diff --git a/lisp/org/ox-odt.el b/lisp/org/ox-odt.el index a1486318a7d..51cb42a49a5 100644 --- a/lisp/org/ox-odt.el +++ b/lisp/org/ox-odt.el | |||
| @@ -940,7 +940,7 @@ See `org-odt--build-date-styles' for implementation details." | |||
| 940 | (has-time-p (or (not timestamp) | 940 | (has-time-p (or (not timestamp) |
| 941 | (org-timestamp-has-time-p timestamp))) | 941 | (org-timestamp-has-time-p timestamp))) |
| 942 | (iso-date (let ((format (if has-time-p "%Y-%m-%dT%H:%M:%S" | 942 | (iso-date (let ((format (if has-time-p "%Y-%m-%dT%H:%M:%S" |
| 943 | "%Y-%m-%d"))) | 943 | "%Y-%m-%dT%H:%M:%S"))) |
| 944 | (funcall format-timestamp timestamp format end)))) | 944 | (funcall format-timestamp timestamp format end)))) |
| 945 | (if iso-date-p iso-date | 945 | (if iso-date-p iso-date |
| 946 | (let* ((style (if has-time-p "OrgDate2" "OrgDate1")) | 946 | (let* ((style (if has-time-p "OrgDate2" "OrgDate1")) |