Merge branch 'master' of git+ssh://repo.or.cz/srv/git/org-mode

Conflicts:

	ChangeLog
This commit is contained in:
Carsten Dominik 2008-03-09 15:31:47 +01:00
commit cb8c0e81a9
2 changed files with 20 additions and 2 deletions

View File

@ -10,6 +10,17 @@
(org-check-agenda-marker-table): New functions.
(org-agenda-marker-table): New variable.
2008-03-08 Glenn Morris <rmg@gnu.org>
(list-diary-entries-hook): Declare for compiler.
(org-get-entries-from-diary): Require diary-lib.
2008-03-07 Glenn Morris <rmg@gnu.org>
(org-agenda-sunrise-sunset): Require solar.
(calendar-longitude, calendar-latitude, calendar-location-name):
Declare for compiler.
2008-03-07 Bastien Guerry <bzg@altern.org>
* org-export-latex.el (org-export-as-latex): Revert the change
@ -53,7 +64,7 @@
2008-03-05 Carsten Dominik <dominik@science.uva.nl>
* org.el "htmlize"): Removed hack to fix face problem with
* org.el "htmlize": Removed hack to fix face problem with
htmlize, it no longer seem necessary.
2008-03-05 Bastien Guerry <bzg@altern.org>

9
org.el
View File

@ -2377,7 +2377,7 @@ the fonts used by the agenda, here is an example:
font-weight: 600;
}
.org-todo {
color: #cc6666;Week-agenda:
color: #cc6666;
font-weight: bold;
}
.org-done {
@ -21578,9 +21578,11 @@ MATCH is being ignored."
;;; Diary integration
(defvar org-disable-agenda-to-diary nil) ;Dynamically-scoped param.
(defvar list-diary-entries-hook)
(defun org-get-entries-from-diary (date)
"Get the (Emacs Calendar) diary entries for DATE."
(require 'diary-lib)
(let* ((fancy-diary-buffer "*temporary-fancy-diary-buffer*")
(diary-display-hook '(fancy-diary-display))
(pop-up-frames nil)
@ -23695,12 +23697,17 @@ the cursor position."
(interactive)
(org-agenda-execute-calendar-command 'list-calendar-holidays))
(defvar calendar-longitude)
(defvar calendar-latitude)
(defvar calendar-location-name)
(defun org-agenda-sunrise-sunset (arg)
"Display sunrise and sunset for the cursor date.
Latitude and longitude can be specified with the variables
`calendar-latitude' and `calendar-longitude'. When called with prefix
argument, latitude and longitude will be prompted for."
(interactive "P")
(require 'solar)
(let ((calendar-longitude (if arg nil calendar-longitude))
(calendar-latitude (if arg nil calendar-latitude))
(calendar-location-name