aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarsten Dominik2005-04-15 06:54:43 +0000
committerCarsten Dominik2005-04-15 06:54:43 +0000
commita9f07b61abe6f7812328e92ff8baf0ebcf26b556 (patch)
tree8d07ca817f31e88ab7a24380fb76fbf178bf57ca
parent35fb99899657e7d2021d967c648bdff2bd63914f (diff)
downloademacs-a9f07b61abe6f7812328e92ff8baf0ebcf26b556.tar.gz
emacs-a9f07b61abe6f7812328e92ff8baf0ebcf26b556.zip
*** empty log message ***
-rw-r--r--lisp/ChangeLog41
-rw-r--r--lisp/textmodes/org.el2
-rw-r--r--man/ChangeLog4
3 files changed, 46 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 821a1444484..b49ff9f2459 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,44 @@
12005-04-15 Carsten Dominik <dominik@science.uva.nl>
2
3 * textmodes/org.el: (org-agenda-date-prompt): Renamed from
4 `org-agenda-date-today'.
5 (org-evaluate-time-range): Insert at point instead of directly
6 after time range.
7 (org-first-headline-recenter, org-subtree-end-visible-p)
8 (org-optimize-window-after-visibility-change): New functions
9 (org-agenda-post-command-hook): Don't allow point at end of line,
10 to make sure it always hits the text properties.
11 (org-agenda-next-date-line, org-agenda-previous-date-line): New
12 commands.
13 (org-set-regexps-and-options): Category may contain white space.
14 (org-agenda-get-deadlines, org-agenda-get-scheduled): Improved
15 marker positions.
16 (org-agenda-new-marker): Argument POS made optional.
17 (org-agenda-get-timestamps): Deadlines which are done are listed
18 in org-done-face now.
19 (org-agenda-get-todos, org-agenda-get-timestamps)
20 (org-agenda-get-deadlines, org-agenda-get-scheduled): set
21 `undone-face' and `done-face' properties.
22 (org-last-todo-state-is-todo): New variable.
23 (org-todo): Set `org-last-todo-state-is-todo'.
24 (org-agenda-todo): Change face according to
25 `org-last-todo-state-is-todo'. And change other lines refering to
26 the same entry.
27 (org-calendar-goto-agenda): New command.
28 (org-calendar-to-agenda-key): New option.
29 (org-startup-folded): New allowed value `content'.
30 (org-set-regexps-and-options): Accept new value `content' for
31 `org-startup-folded'.
32 (org-get-current-options): Handle new value `content' for
33 `org-startup-folded'.
34 (org-insert-todo-heading): New command.
35 (org-mode): Insert first line "*-* mode: org-mode -*-" when called
36 interactively in empty file and option
37 `org-insert-mode-line-in-empty-file' has been set.
38 (org-agenda-todo,org-agenda-priority): Modified to use
39 `org-agenda-change-all-lines'.
40 (org-warning-face): Changed color on dark background
41
12005-04-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> 422005-04-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2 43
3 * international/mule-cmds.el (set-locale-environment): On Mac OS, 44 * international/mule-cmds.el (set-locale-environment): On Mac OS,
diff --git a/lisp/textmodes/org.el b/lisp/textmodes/org.el
index 22a64ab9eb9..260f0fa8bc5 100644
--- a/lisp/textmodes/org.el
+++ b/lisp/textmodes/org.el
@@ -5,7 +5,7 @@
5;; Author: Carsten Dominik <dominik at science dot uva dot nl> 5;; Author: Carsten Dominik <dominik at science dot uva dot nl>
6;; Keywords: outlines, hypermedia, calendar 6;; Keywords: outlines, hypermedia, calendar
7;; Homepage: http://www.astro.uva.nl/~dominik/Tools/org/ 7;; Homepage: http://www.astro.uva.nl/~dominik/Tools/org/
8;; Version: 3.06 (internal CVS version is $Revision: 1.128 $) 8;; Version: 3.06
9;; 9;;
10;; This file is part of GNU Emacs. 10;; This file is part of GNU Emacs.
11;; 11;;
diff --git a/man/ChangeLog b/man/ChangeLog
index c6578dbc107..ce23f5f5d6e 100644
--- a/man/ChangeLog
+++ b/man/ChangeLog
@@ -1,3 +1,7 @@
12005-04-15 Carsten Dominik <dominik@science.uva.nl>
2
3 * org.texi: Update to version 3.06.
4
12005-04-13 Lute Kamstra <lute@gnu.org> 52005-04-13 Lute Kamstra <lute@gnu.org>
2 6
3 * cc-mode.texi: Prevent creating an unnecessary empty cc-mode.ss file. 7 * cc-mode.texi: Prevent creating an unnecessary empty cc-mode.ss file.