]> code.delx.au - gnu-emacs/blobdiff - lisp/textmodes/org.el
(org-mode-map): No longer copy `outline-mode-map' explicitly
[gnu-emacs] / lisp / textmodes / org.el
index 717455edc61ee282cc513895400812d5f6d83b34..8e0bccfb70896d1fcea1a08770d8bdf72da5bd2c 100644 (file)
@@ -5,7 +5,7 @@
 ;; Author: Carsten Dominik <dominik at science dot uva dot nl>
 ;; Keywords: outlines, hypermedia, calendar, wp
 ;; Homepage: http://www.astro.uva.nl/~dominik/Tools/org/
-;; Version: 4.08
+;; Version: 4.44
 ;;
 ;; This file is part of GNU Emacs.
 ;;
 ;; Org-mode is a mode for keeping notes, maintaining ToDo lists, and doing
 ;; project planning with a fast and effective plain-text system.
 ;;
-;; Org-mode develops organizational tasks around a NOTES file that contains
-;; information about projects as plain text.  Org-mode is implemented on top
-;; of outline-mode - ideal to keep the content of large files well structured.
-;; It supports ToDo items, deadlines and time stamps, which can be extracted
-;; to create a daily/weekly agenda that also integrates the diary of the Emacs
-;; calendar.  Tables are easily created with a built-in table editor.  Plain
-;; text URL-like links connect to websites, emails (VM, RMAIL, WANDERLUST),
-;; Usenet messages (Gnus), BBDB entries, and any files related to the
-;; projects.  For printing and sharing of notes, an Org-mode file (or a part
-;; of it) can be exported as a structured ASCII file, or as HTML.
+;; Org-mode develops organizational tasks around NOTES files that contain
+;; information about projects as plain text.  Org-mode is implemented on
+;; top of outline-mode, which makes it possible to keep the content of
+;; large files well structured.  Visibility cycling and structure editing
+;; help to work with the tree.  Tables are easily created with a built-in
+;; table editor.  Org-mode supports ToDo items, deadlines, time stamps,
+;; and scheduling.  It dynamically compiles entries into an agenda that
+;; utilizes and smoothly integrates much of the Emacs calendar and diary.
+;; Plain text URL-like links connect to websites, emails, Usenet
+;; messages, BBDB entries, and any files related to the projects.  For
+;; printing and sharing of notes, an Org-mode file can be exported as a
+;; structured ASCII file, as HTML, or (todo and agenda items only) as an
+;; iCalendar file.  It can also serve as a publishing tool for a set of
+;; linked webpages.
+;;
 ;;
 ;; Installation
 ;; ------------
 ;;    (define-key global-map "\C-cl" 'org-store-link)
 ;;    (define-key global-map "\C-ca" 'org-agenda)
 ;;
-;; If you have downloaded Org-mode from the Web, you must byte-compile
-;; org.el and put it on your load path.  In addition to the Emacs Lisp
-;; lines above, you also need to add the following lines to .emacs:
+;; Furthermore you need to activate font-lock-mode in org-mode buffers.
+;; either of the following two lins will do the trick:
+;;
+;;    (global-font-lock-mode 1)                     ; for all buffers
+;;    (add-hook 'org-mode-hook 'turn-on-font-lock)  ; org-mode buffers only
+;;
+;; If you have downloaded Org-mode from the Web, you have to take additional
+;; action:  Byte-compile org.el and org-publish.el and put them together with
+;; org-install.el on your load path.  Then also add to your .emacs file:
+;;
+;;    (require 'org-install)
 ;;
-;;    (autoload 'org-mode "org" "Org mode" t)
-;;    (autoload 'org-diary "org" "Diary entries from Org mode")
-;;    (autoload 'org-agenda "org" "Multi-file agenda from Org mode" t)
-;;    (autoload 'org-store-link "org" "Store a link to the current location" t)
-;;    (autoload 'orgtbl-mode "org" "Org tables as a minor mode" t)
-;;    (autoload 'turn-on-orgtbl "org" "Org tables as a minor mode")
 ;;
-;; This setup will put all files with extension ".org" into Org-mode.  As
-;; an alternative, make the first line of a file look like this:
+;; Activation
+;; ----------
+;; The setup above will put all files with extension ".org" into Org-mode.
+;; As an alternative, make the first line of a file look like this:
 ;;
 ;;     MY PROJECTS    -*- mode: org; -*-
 ;;
 ;; excellent reference card made by Philip Rooke.  This card can be found
 ;; in the etc/ directory of Emacs 22.
 ;;
-;; Changes since version 4.00:
-;; ---------------------------
-;; Version 4.08
+;; Recent changes
+;; --------------
+;; Version 4.44
+;;    - Clock table can be done for a limited time interval.
+;;    - Obsolete support for the old outline mode has been removed.
+;;    - Bug fixes and code cleaning.
+;;
+;; Version 4.43
+;;    - Bug fixes
+;;    - `s' key in the agenda saves all org-mode buffers.
+;;
+;; Version 4.41
+;;    - Shift-curser keys can modify inactive time stamps (inactive time
+;;      stamps are the ones in [...] brackets.
+;;    - Toggle all checkboxes in a region/below a headline.
+;;    - Bug fixes.
+;;
+;; Version 4.40
+;;    - Bug fixes.
+;;
+;; Version 4.39
+;;    - Special tag ARCHIVE keeps a subtree closed and away from agenda lists.
+;;    - LaTeX code in Org-mode files can be converted to images for HTML.
+;;    - Bug fixes.
+;;    - CDLaTeX-mode features can be used in Org-mode to help inserting
+;;      LaTeX environment and math.
+;;
+;; Version 4.38
+;;    - noutline.el is now required (important for XEmacs users only).
+;;    - Dynamic blocks.
+;;    - Archiving of all level 1 trees without open TODO items.
+;;    - Clock reports can be inserted into the file in a special section.
+;;    - FAQ removed from the manual, now only on the web.
+;;    - Bug fixes.
 ;;
+;; Version 4.37
+;;    - Clock-feature for measuring time spent on specific items.
+;;    - Improved emphasizing allows configuration and stacking.
 ;;
-;; Version 4.07
+;; Version 4.36
+;;    - Improved indentation of ASCII export, when headlines become items.
+;;    - Handling of 12am and 12pm fixed.  Times beyond 24:00 can be used
+;;      and will not lead to conflicts.
+;;    - Support for mutually exclusive TAGS with the fast tags interface.
 ;;    - Bug fixes.
-;;    - Leading stars in headlines can be hidden, so make the outline look
-;;      cleaner.
-;;    - Mouse-1 can be used to follow links.
-;;     
-;; Version 4.06
-;;    - HTML exporter treats targeted internal links.
+;;
+;; Version 4.35
+;;    - HTML export is now valid XHTML.
+;;    - Timeline can also show dates without entries.  See new option
+;;      `org-timeline-show-empty-dates'.
+;;    - The bullets created by the ASCII exporter can now be configured.
+;;      See the new option `org-export-ascii-bullets'.
+;;    - New face `org-upcoming-deadline' (was `org-scheduled-previously').
+;;    - New function `org-context' to allow testing for local context.
+;;
+;; Version 4.34
 ;;    - Bug fixes.
 ;;
-;; Version 4.05
-;;    - Changes to internal link system (thanks to David Wainberg for ideas).
-;;      - in-file links: [[Search String]] instead of <file:::Search String>
-;;      - automatic links to "radio targets".
-;;      - CamelCase not longer active by default, configure org-activate-camels
-;;        if you want to turn it back on.
-;;      - After following a link, `C-c &' jumps back to it.
-;;    - MH-E link support (thanks to Thomas Baumann).
-;;    - Special table lines are no longer exported.
-;;    - Bug fixes and minor improvements.
+;; Version 4.33
+;;    - New commands to move through plain lists: S-up and S-down.
+;;    - Bug fixes and documentation update.
+;;
+;; Version 4.32
+;;    - Fast (single-key-per-tag) interface for setting TAGS.
+;;    - The list of legal tags can be configured globally and locally.
+;;    - Elisp and Info links (thanks to Todd Neal).
+;;    - `org-export-publishing-directory' can be an alist, with different
+;;      directories for different export types.
+;;    - All context-sensitive commands use `call-interactively' to dispatch.
+;;    - `org-confirm-shell-links' renamed to `org-confirm-shell-link-function'.
+;;    - Bug fixes.
 ;;
-;; Version 4.04
-;;    - Cleanup tags display in agenda.
+;; Version 4.31
 ;;    - Bug fixes.
 ;;
-;; Version 4.03
-;;    - Table alignment fixed for use with wide characters.
-;;    - `C-c -' leaves cursor in current table line.
-;;    - The current TAG can be incorporated into the agenda prefix.
-;;      See option `org-agenda-prefix-format' for details.
+;; Version 4.30
+;;    - Modified installation: Autoloads have been collected in org-install.el.
+;;    - Logging (org-log-done) is now a #+STARTUP option.
+;;    - Checkboxes in plain list items, following up on Frank Ruell's idea.
+;;    - File links inserted with C-c C-l will use relative paths if the linked
+;;      file is in the current directory or a subdirectory of it.
+;;    - New variable `org-link-file-path-type' to specify preference for
+;;      relative and absolute paths.
+;;    - New CSS classes for tags, timestamps, timestamp keywords.
+;;    - Bug and typo fixes.
+;;
+;; Version 4.29
+;;    - Inlining images in HTML export now depends on wheather the link
+;;      contains a description or not.
+;;    - TODO items can be scheduled from the global TODO list using C-c C-s.
+;;    - TODO items already scheduled can be made to disappear from the global
+;;      todo list, see `org-agenda-todo-ignore-scheduled'.
+;;    - In Tables, formulas may also be Lisp forms.
+;;    - Exporting the visible part of an outline with `C-c C-x v' works now
+;;      for all available exporters.
+;;    - Bug fixes, lots of them :-(
+;;
+;; Version 4.28
+;;    - Bug fixes.
 ;;
-;; Version 4.02
-;;    - Minor bug fixes and improvements around tag searches.
-;;    - XEmacs compatibility fixes.
+;; Version 4.27
+;;    - HTML exporter generalized to receive external options.
+;;      As part of the process, author, email and date have been moved to the
+;;      end of the HTML file.
+;;    - Support for customizable file search in file links.
+;;    - BibTeX database links as first application of the above.
+;;    - New option `org-agenda-todo-list-sublevels' to turn off listing TODO
+;;      entries that are sublevels of another TODO entry.
 ;;
-;; Version 4.01
-;;    - Tags can also be set remotely from agenda buffer.
-;;    - Boolean logic for tag searches.
-;;    - Additional agenda commands can be configured through the variable
-;;      `org-agenda-custom-commands'.
-;;    - Minor bug fixes.
 ;;
 ;;; Code:
 
-(eval-when-compile (require 'cl) (require 'calendar))
-(require 'outline)
+(eval-when-compile
+  (require 'cl)
+  (require 'calendar))
+;; For XEmacs, noutline is not yet provided by outline.el, so arrange for
+;; the file noutline.el being loaded.
+(if (featurep 'xemacs) (condition-case nil (require 'noutline)))
+;; We require noutline, which might be provided in outline.el
+(require 'outline) (require 'noutline)
+;; Other stuff we need.
 (require 'time-date)
 (require 'easymenu)
 
-(defvar calc-embedded-close-formula)
-(defvar calc-embedded-open-formula)
-(defvar font-lock-unfontify-region-function)
-
 ;;; Customization variables
 
-(defvar org-version "4.08"
+(defvar org-version "4.44"
   "The version number of the file org.el.")
 (defun org-version ()
   (interactive)
   (message "Org-mode version %s" org-version))
 
-;; The following two constants are for compatibility with different Emacs
-;; versions (Emacs versus XEmacs) and with different versions of outline.el.
-;; The compatibility code in org.el is based on these two constants.
-(defconst org-xemacs-p (featurep 'xemacs)
-  "Are we running XEmacs?")
-(defconst org-noutline-p (featurep 'noutline)
-  "Are we using the new outline mode?")
+;; Compatibility constants
+(defconst org-xemacs-p (featurep 'xemacs)) ; not used by org.el itself
+(defconst org-format-transports-properties-p
+  (let ((x "a"))
+    (add-text-properties 0 1 '(test t) x)
+    (get-text-property 0 'test (format "%s" x)))
+  "Does format transport text properties?")
 
 (defgroup org nil
   "Outline-based notes management and organizer."
   :tag "Org Startup"
   :group 'org)
 
-(defcustom org-CUA-compatible nil
-  "Non-nil means use alternative key bindings for S-<cursor movement>.
-Org-mode used S-<cursor movement> for changing timestamps and priorities.
-S-<cursor movement> is also used for example by `CUA-mode' to select text.
-If you want to use Org-mode together with `CUA-mode', Org-mode needs to use
-alternative bindings.  Setting this variable to t will replace the following
-keys both in Org-mode and in the Org-agenda buffer.
-
-S-RET   -> C-S-RET
-S-up    -> M-p
-S-down  -> M-n
-S-left  -> M--
-S-right -> M-+
-
-If you do not like the alternative keys, take a look at the variable
-`org-disputed-keys'.
-
-This option is only relevant at load-time of Org-mode.  Changing it requires
-a restart of Emacs to become effective."
-  :group 'org-startup
-  :type 'boolean)
-
-(defvar org-disputed-keys
-  '((S-up     [(shift up)]      [(meta ?p)])
-    (S-down   [(shift down)]    [(meta ?n)])
-    (S-left   [(shift left)]    [(meta ?-)])
-    (S-right  [(shift right)]   [(meta ?+)])
-    (S-return [(shift return)]  [(control shift return)]))
-  "Keys for which Org-mode and other modes compete.
-This is an alist, cars are symbols for lookup, 1st element is the default key,
-second element will be used when `org-CUA-compatible' is t.")
-
-(defun org-key (key)
-  "Select a key according to `org-CUA-compatible'."
-  (nth (if org-CUA-compatible 2 1)
-       (or (assq key org-disputed-keys)
-          (error "Invalid Key %s in `org-key'" key))))
-
 (defcustom org-startup-folded t
   "Non-nil means, entering Org-mode will switch to OVERVIEW.
 This can also be configured on a per-file basis by adding one of
@@ -224,13 +261,23 @@ uninteresting.  Also tables look terrible when wrapped."
   :group 'org-startup
   :type 'boolean)
 
+(defcustom org-startup-align-all-tables nil
+  "Non-nil means, align all tables when visiting a file.
+This is useful when the column width in tables is forced with <N> cookies
+in table fields.  Such tables will look correct only after the first re-align.
+This can also be configured on a per-file basis by adding one of
+the following lines anywhere in the buffer:
+   #+STARTUP: align
+   #+STARTUP: noalign"
+  :group 'org-startup
+  :type 'boolean)
+
 (defcustom org-startup-with-deadline-check nil
   "Non-nil means, entering Org-mode will run the deadline check.
 This means, if you start editing an org file, you will get an
 immediate reminder of any due deadlines.
 This can also be configured on a per-file basis by adding one of
 the following lines anywhere in the buffer:
-
    #+STARTUP: dlcheck
    #+STARTUP: nodlcheck"
   :group 'org-startup
@@ -246,71 +293,61 @@ has been set."
   :group 'org-startup
   :type 'boolean)
 
-(defgroup org-keywords nil
-  "Options concerning TODO items in Org-mode."
-  :tag "Org Keywords"
-  :group 'org)
+(defcustom org-CUA-compatible nil
+  "Non-nil means use alternative key bindings for S-<cursor movement>.
+Org-mode used S-<cursor movement> for changing timestamps and priorities.
+S-<cursor movement> is also used for example by `CUA-mode' to select text.
+If you want to use Org-mode together with `CUA-mode', Org-mode needs to use
+alternative bindings.  Setting this variable to t will replace the following
+keys both in Org-mode and in the Org-agenda buffer.
 
-(defcustom org-todo-keywords '("TODO" "DONE")
-  "List of TODO entry keywords.
-\\<org-mode-map>By default, this is '(\"TODO\" \"DONE\").  The last entry in the list is
-considered to mean that the entry is \"done\".  All the other mean that
-action is required, and will make the entry show up in todo lists, diaries
-etc.
-The command \\[org-todo] cycles an entry through these states, and an
-additional state where no keyword is present.  For details about this
-cycling, see also the variable `org-todo-interpretation'
-Changes become only effective after restarting Emacs."
-  :group 'org-keywords
-  :type '(repeat (string :tag "Keyword")))
+S-RET   -> C-S-RET
+S-up    -> M-p
+S-down  -> M-n
+S-left  -> M--
+S-right -> M-+
 
-(defcustom org-todo-interpretation 'sequence
-  "Controls how TODO keywords are interpreted.
-\\<org-mode-map>Possible values are `sequence' and `type'.
-This variable is only relevant if `org-todo-keywords' contains more than two
-states.  There are two ways how these keywords can be used:
-
-- As a sequence in the process of working on a TODO item, for example
-  (setq org-todo-keywords '(\"TODO\" \"STARTED\" \"VERIFY\" \"DONE\")
-       org-todo-interpretation 'sequence)
-
-- As different types of TODO items, for example
-  (setq org-todo-keywords '(\"URGENT\" \"RELAXED\" \"REMIND\" \"FOR_TOM\" \"DONE\")
-       org-todo-interpretation 'type)
-
-When the states are interpreted as a sequence, \\[org-todo] always cycles
-to the next state, in order to walk through all different states.  So with
-\\[org-todo], you turn an empty entry into the state TODO.  When you started
-working on the item, you use \\[org-todo] again to switch it to \"STARTED\",
-later to VERIFY and finally to DONE.
-
-When the states are interpreted as types, \\[org-todo] still cycles through
-when it is called several times in direct succession, in order to initially
-select the type.  However, if not called immediately after a previous
-\\[org-todo], it switches from each type directly to DONE.  So with the
-above example, you could use `\\[org-todo] \\[org-todo]' to label an entry
-RELAXED.  If you later return to this entry and press \\[org-todo] again,
-RELAXED will not be changed REMIND, but directly to DONE.
-
-You can create a large number of types.  To initially select a
-type, it is then best to use \\[universal-argument] \\[org-todo] in order to specify the
-type with completion.  Of course, you can also type the keyword
-directly into the buffer.  M-TAB completes TODO keywords at the
-beginning of a headline."
-  :group 'org-keywords
-  :type '(choice (const sequence)
-                (const type)))
+If you do not like the alternative keys, take a look at the variable
+`org-disputed-keys'.
 
-(defcustom org-default-priority ?B
-  "The default priority of TODO items.
-This is the priority an item get if no explicit priority is given."
-  :group 'org-keywords
-  :type 'character)
+This option is only relevant at load-time of Org-mode.  Changing it requires
+a restart of Emacs to become effective."
+  :group 'org-startup
+  :type 'boolean)
 
-(defcustom org-lowest-priority ?C
-  "The lowest priority of TODO items.  A character like ?A, ?B etc."
-  :group 'org-keywords
-  :type 'character)
+(defvar org-disputed-keys
+  '((S-up     [(shift up)]      [(meta ?p)])
+    (S-down   [(shift down)]    [(meta ?n)])
+    (S-left   [(shift left)]    [(meta ?-)])
+    (S-right  [(shift right)]   [(meta ?+)])
+    (S-return [(shift return)]  [(control shift return)]))
+  "Keys for which Org-mode and other modes compete.
+This is an alist, cars are symbols for lookup, 1st element is the default key,
+second element will be used when `org-CUA-compatible' is t.")
+
+(defun org-key (key)
+  "Select a key according to `org-CUA-compatible'."
+  (nth (if org-CUA-compatible 2 1)
+       (or (assq key org-disputed-keys)
+          (error "Invalid Key %s in `org-key'" key))))
+
+(defcustom org-ellipsis nil
+  "The ellipsis to use in the Org-mode outline.
+When nil, just use the standard three dots.  When a string, use that instead,
+and just in Org-mode (which will then use its own display table).
+Changing this requires executing `M-x org-mode' in a buffer to become
+effective."
+  :group 'org-startup
+  :type '(choice (const :tag "Default" nil)
+                (string :tag "String" :value "...#")))
+
+(defvar org-display-table nil
+  "The display table for org-mode, in case `org-ellipsis' is non-nil.")
+
+(defgroup org-keywords nil
+  "Keywords in Org-mode."
+  :tag "Org Keywords"
+  :group 'org)
 
 (defcustom org-deadline-string "DEADLINE:"
   "String to mark deadline entries.
@@ -335,6 +372,11 @@ Changes become only effective after restarting Emacs."
   :group 'org-keywords
   :type 'string)
 
+(defcustom org-clock-string "CLOCK:"
+  "String used as prefix for timestamps clocking work hours on an item."
+  :group 'org-keywords
+  :type 'string)
+
 (defcustom org-comment-string "COMMENT"
   "Entries starting with this keyword will never be exported.
 An entry can be toggled between COMMENT and normal with
@@ -352,640 +394,494 @@ An entry can be toggled between QUOTE and normal with
   :group 'org-keywords
   :type 'string)
 
-(defcustom org-after-todo-state-change-hook nil
-  "Hook which is run after the state of a TODO item was changed.
-The new state (a string with a TODO keyword, or nil) is available in the
-Lisp variable `state'."
-  :group 'org-keywords
-  :type 'hook)
+(defgroup org-structure nil
+  "Options concerning the general structure of Org-mode files."
+  :tag "Org Structure"
+  :group 'org)
 
-;; Variables for pre-computed regular expressions, all buffer local
-(defvar org-todo-kwd-priority-p nil
-  "Do TODO items have priorities?")
-(make-variable-buffer-local 'org-todo-kwd-priority-p)
-(defvar org-todo-kwd-max-priority nil
-  "Maximum priority of TODO items.")
-(make-variable-buffer-local 'org-todo-kwd-max-priority)
-(defvar org-ds-keyword-length 12
-  "Maximum length of the Deadline and SCHEDULED keywords.")
-(make-variable-buffer-local 'org-ds-keyword-length)
-(defvar org-done-string nil
-  "The last string in `org-todo-keywords', indicating an item is DONE.")
-(make-variable-buffer-local 'org-done-string)
-(defvar org-todo-regexp nil
-  "Matches any of the TODO state keywords.")
-(make-variable-buffer-local 'org-todo-regexp)
-(defvar org-not-done-regexp nil
-  "Matches any of the TODO state keywords except the last one.")
-(make-variable-buffer-local 'org-not-done-regexp)
-(defvar org-todo-line-regexp nil
-  "Matches a headline and puts TODO state into group 2 if present.")
-(make-variable-buffer-local 'org-todo-line-regexp)
-(defvar org-nl-done-regexp nil
-  "Matches newline followed by a headline with the DONE keyword.")
-(make-variable-buffer-local 'org-nl-done-regexp)
-(defvar org-looking-at-done-regexp nil
-  "Matches the DONE keyword a point.")
-(make-variable-buffer-local 'org-looking-at-done-regexp)
-(defvar org-deadline-regexp nil
-  "Matches the DEADLINE keyword.")
-(make-variable-buffer-local 'org-deadline-regexp)
-(defvar org-deadline-time-regexp nil
-  "Matches the DEADLINE keyword together with a time stamp.")
-(make-variable-buffer-local 'org-deadline-time-regexp)
-(defvar org-deadline-line-regexp nil
-  "Matches the DEADLINE keyword and the rest of the line.")
-(make-variable-buffer-local 'org-deadline-line-regexp)
-(defvar org-scheduled-regexp nil
-  "Matches the SCHEDULED keyword.")
-(make-variable-buffer-local 'org-scheduled-regexp)
-(defvar org-scheduled-time-regexp nil
-  "Matches the SCHEDULED keyword together with a time stamp.")
-(make-variable-buffer-local 'org-scheduled-time-regexp)
+(defgroup org-cycle nil
+  "Options concerning visibility cycling in Org-mode."
+  :tag "Org Cycle"
+  :group 'org-structure)
+
+(defcustom org-cycle-global-at-bob t
+  "Cycle globally if cursor is at beginning of buffer and not at a headline.
+This makes it possible to do global cycling without having to use S-TAB or
+C-u TAB.  For this special case to work, the first line of the buffer
+must not be a headline - it may be empty ot some other text.  When used in
+this way, `org-cycle-hook' is disables temporarily, to make sure the
+cursor stays at the beginning of the buffer.
+When this option is nil, don't do anything special at the beginning
+of the buffer."
+  :group 'org-cycle
+  :type 'boolean)
 
-(defvar org-category nil
-  "Variable used by org files to set a category for agenda display.
-Such files should use a file variable to set it, for example
+(defcustom org-cycle-emulate-tab t
+  "Where should `org-cycle' emulate TAB.
+nil         Never
+white       Only in completely white lines
+whitestart  Only at the beginning of lines, before the first non-white char.
+t           Everywhere except in headlines
+If TAB is used in a place where it does not emulate TAB, the current subtree
+visibility is cycled."
+  :group 'org-cycle
+  :type '(choice (const :tag "Never" nil)
+                (const :tag "Only in completely white lines" white)
+                (const :tag "Before first char in a line" whitestart)
+                (const :tag "Everywhere except in headlines" t)
+                ))
 
-   -*- mode: org; org-category: \"ELisp\"
+(defcustom org-cycle-hook '(org-cycle-hide-archived-subtrees
+                           org-optimize-window-after-visibility-change)
+  "Hook that is run after `org-cycle' has changed the buffer visibility.
+The function(s) in this hook must accept a single argument which indicates
+the new state that was set by the most recent `org-cycle' command.  The
+argument is a symbol.  After a global state change, it can have the values
+`overview', `content', or `all'.  After a local state change, it can have
+the values `folded', `children', or `subtree'."
+  :group 'org-cycle
+  :type 'hook)
 
-or contain a special line
+(defgroup org-edit-structure nil
+  "Options concerning structure editing in Org-mode."
+  :tag "Org Edit Structure"
+  :group 'org-structure)
 
-#+CATEGORY: ELisp
+(defcustom org-odd-levels-only nil
+  "Non-nil means, skip even levels and only use odd levels for the outline.
+This has the effect that two stars are being added/taken away in
+promotion/demotion commands.  It also influences how levels are
+handled by the exporters.
+Changing it requires restart of `font-lock-mode' to become effective
+for fontification also in regions already fontified.
+You may also set this on a per-file basis by adding one of the following
+lines to the buffer:
+
+   #+STARTUP: odd
+   #+STARTUP: oddeven"
+  :group 'org-edit-structure
+  :group 'org-font-lock
+  :type 'boolean)
 
-If the file does not specify a category, then file's base name
-is used instead.")
-(make-variable-buffer-local 'org-category)
+(defcustom org-adapt-indentation t
+  "Non-nil means, adapt indentation when promoting and demoting.
+When this is set and the *entire* text in an entry is indented, the
+indentation is increased by one space in a demotion command, and
+decreased by one in a promotion command.  If any line in the entry
+body starts at column 0, indentation is not changed at all."
+  :group 'org-edit-structure
+  :type 'boolean)
 
-(defgroup org-time nil
-  "Options concerning time stamps and deadlines in Org-mode."
-  :tag "Org Time"
-  :group 'org)
+(defcustom org-insert-heading-hook nil
+  "Hook being run after inserting a new heading."
+  :group 'org-edit-structure
+  :type 'boolean)
 
-(defconst org-time-stamp-formats '("<%Y-%m-%d %a>" . "<%Y-%m-%d %a %H:%M>")
-  "Formats for `format-time-string' which are used for time stamps.
-It is not recommended to change this constant.")
+(defcustom org-enable-fixed-width-editor t
+  "Non-nil means, lines starting with \":\" are treated as fixed-width.
+This currently only means, they are never auto-wrapped.
+When nil, such lines will be treated like ordinary lines.
+See also the QUOTE keyword."
+  :group 'org-edit-structure
+  :type 'boolean)
 
+(defgroup org-sparse-trees nil
+  "Options concerning sparse trees in Org-mode."
+  :tag "Org Sparse Trees"
+  :group 'org-structure)
 
-(defcustom org-deadline-warning-days 30
-  "No. of days before expiration during which a deadline becomes active.
-This variable governs the display in the org file."
-  :group 'org-time
-  :type 'number)
+(defcustom org-highlight-sparse-tree-matches t
+  "Non-nil means, highlight all matches that define a sparse tree.
+The highlights will automatically disappear the next time the buffer is
+changed by an edit command."
+  :group 'org-sparse-trees
+  :type 'boolean)
 
-(defcustom org-popup-calendar-for-date-prompt t
-  "Non-nil means, pop up a calendar when prompting for a date.
-In the calendar, the date can be selected with mouse-1.  However, the
-minibuffer will also be active, and you can simply enter the date as well.
-When nil, only the minibuffer will be available."
-  :group 'org-time
-  :type 'number)
-
-(defcustom org-calendar-follow-timestamp-change t
-  "Non-nil means, make the calendar window follow timestamp changes.
-When a timestamp is modified and the calendar window is visible, it will be
-moved to the new date."
-  :group 'org-time
+(defcustom org-show-hierarchy-above t
+  "Non-nil means, show full hierarchy when showing a spot in the tree.
+Turning this off makes sparse trees more compact, but also less clear."
+  :group 'org-sparse-trees
   :type 'boolean)
 
-(defcustom org-log-done nil
-  "When set, insert a (non-active) time stamp when TODO entry is marked DONE.
-When the state of an entry is changed from nothing to TODO, remove a previous
-closing date."
-  :group 'org-time
+(defcustom org-show-following-heading t
+  "Non-nil means, show heading following match in `org-occur'.
+When doing an `org-occur' it is useful to show the headline which
+follows the match, even if they do not match the regexp.  This makes it
+easier to edit directly inside the sparse tree.  However, if you use
+`org-occur' mainly as an overview, the following headlines are
+unnecessary clutter."
+  :group 'org-sparse-trees
   :type 'boolean)
 
-(defgroup org-agenda nil
-  "Options concerning agenda display Org-mode."
-  :tag "Org Agenda"
-  :group 'org)
-
-(defcustom org-agenda-files nil
-  "A list of org files for agenda/diary display.
-Entries are added to this list with \\[org-agenda-file-to-front] and removed with
-\\[org-remove-file].  You can also use customize to edit the list."
-  :group 'org-agenda
-  :type '(repeat file))
-
-(defcustom org-agenda-custom-commands '(("w" todo "WAITING"))
-  "Custom commands for the agenda.
-These commands will be offered on the splash screen displayed by the
-agenda dispatcher \\[org-agenda].  Each entry is a list of 3 items:
+(defcustom org-occur-hook '(org-first-headline-recenter)
+  "Hook that is run after `org-occur' has constructed a sparse tree.
+This can be used to recenter the window to show as much of the structure
+as possible."
+  :group 'org-sparse-trees
+  :type 'hook)
 
-key    The key (a single char as a string) to be associated with the command.
-type   The command type, any of the following symbols:
-        todo        Entries with a specific TODO keyword, in all agenda files.
-        tags        Tags match in all agenda files.
-        todo-tree   Sparse tree of specific TODO keyword in *current* file.
-        tags-tree   Sparse tree with all tags matches in *current* file.
-        occur-tree  Occur sparse tree for current file.
-match  What to search for:
-        - a single keyword for TODO keyword searches
-        - a tags match expression for tags searches
-        - a regular expression for occur searches"
-  :group 'org-agenda
-  :type '(repeat
-         (list (string :tag "Key")
-               (choice :tag "Type"
-                       (const :tag "Tags search in all agenda files" tags)
-                       (const :tag "TODO keyword search in all agenda files" todo)
-                       (const :tag "Tags sparse tree in current buffer" tags-tree)
-                       (const :tag "TODO keyword tree in current buffer" todo-tree)
-                       (const :tag "Occur tree in current buffer" occur-tree))
-               (string :tag "Match"))))
+(defgroup org-plain-lists nil
+  "Options concerning plain lists in Org-mode."
+  :tag "Org Plain lists"
+  :group 'org-structure)
 
-(defcustom org-select-timeline-window t
-  "Non-nil means, after creating a timeline, move cursor into Timeline window.
-When nil, cursor will remain in the current window."
-  :group 'org-agenda
+(defcustom org-cycle-include-plain-lists nil
+  "Non-nil means, include plain lists into visibility cycling.
+This means that during cycling, plain list items will *temporarily* be
+interpreted as outline headlines with a level given by 1000+i where i is the
+indentation of the bullet.  In all other operations, plain list items are
+not seen as headlines.  For example, you cannot assign a TODO keyword to
+such an item."
+  :group 'org-plain-lists
   :type 'boolean)
 
-(defcustom org-select-agenda-window t
-  "Non-nil means, after creating an agenda, move cursor into Agenda window.
-When nil, cursor will remain in the current window."
-  :group 'org-agenda
-  :type 'boolean)
 
-(defcustom org-fit-agenda-window t
-  "Non-nil means, change window size of agenda to fit content."
-  :group 'org-agenda
-  :type 'boolean)
+(defcustom org-plain-list-ordered-item-terminator t
+  "The character that makes a line with leading number an ordered list item.
+Valid values are ?. and ?\).  To get both terminators, use t.  While
+?. may look nicer, it creates the danger that a line with leading
+number may be incorrectly interpreted as an item.  ?\) therefore is
+the safe choice."
+  :group 'org-plain-lists
+  :type '(choice (const :tag "dot like in \"2.\"" ?.)
+                (const :tag "paren like in \"2)\"" ?\))
+                (const :tab "both" t)))
 
-(defcustom org-agenda-show-all-dates t
-  "Non-nil means, `org-agenda' shows every day in the selected range.
-When nil, only the days which actually have entries are shown."
-  :group 'org-agenda
+(defcustom org-auto-renumber-ordered-lists t
+  "Non-nil means, automatically renumber ordered plain lists.
+Renumbering happens when the sequence have been changed with
+\\[org-shiftmetaup] or \\[org-shiftmetadown].  After other editing commands,
+use \\[org-ctrl-c-ctrl-c] to trigger renumbering."
+  :group 'org-plain-lists
   :type 'boolean)
 
-;; FIXME: First day of month works only for current month because it would
-;; require a variable ndays treatment.
-(defcustom org-agenda-start-on-weekday 1
-  "Non-nil means, start the overview always on the specified weekday.
-0 Denotes Sunday, 1 denotes Monday etc.
-When nil, always start on the current day."
-  :group 'org-agenda
-  :type '(choice (const :tag "Today" nil)
-                (const :tag "First day of month" t)
-                (number :tag "Weekday No.")))
+(defgroup org-archive nil
+  "Options concerning archiving in Org-mode."
+  :tag "Org Archive"
+  :group 'org-structure)
 
-(defcustom org-agenda-ndays 7
-  "Number of days to include in overview display."
-  :group 'org-agenda
-  :type 'number)
+(defcustom org-archive-tag "ARCHIVE"
+  "The tag that marks a subtree as archived.
+An archived subtree does not open during visibility cycling, and does
+not contribute to the agenda listings."
+  :group 'org-archive
+  :group 'org-keywords
+  :type 'string)
 
-(defcustom org-agenda-include-all-todo t
-  "Non-nil means, the agenda will always contain all TODO entries.
-When nil, date-less entries will only be shown if `org-agenda' is called
-with a prefix argument.
-When non-nil, the TODO entries will be listed at the top of the agenda, before
-the entries for specific days."
-  :group 'org-agenda
+(defcustom org-agenda-skip-archived-trees t
+  "Non-nil means, the agenda will skip any items located in archived trees.
+An archived tree is a tree marked with the tag ARCHIVE."
+  :group 'org-archive
+  :group 'org-agenda-display
   :type 'boolean)
 
-(defcustom org-agenda-include-diary nil
-  "If non-nil, include in the agenda entries from the Emacs Calendar's diary."
-  :group 'org-agenda
+(defcustom org-cycle-open-archived-trees nil
+  "Non-nil means, `org-cycle' will open archived trees.
+An archived tree is a tree marked with the tag ARCHIVE.
+When nil, archived trees will stay folded.  You can still open them with
+normal outline commands like `show-all', but not with the cycling commands."
+  :group 'org-archive
+  :group 'org-cycle
   :type 'boolean)
 
-(defcustom org-calendar-to-agenda-key [?c]
-  "The key to be installed in `calendar-mode-map' for switching to the agenda.
-The command `org-calendar-goto-agenda' will be bound to this key.  The
-default is the character `c' because then `c' can be used to switch back and
-forth between agenda and calendar."
-  :group 'org-agenda
-  :type 'sexp)
-
-(defcustom org-agenda-sorting-strategy '(time-up category-keep priority-down)
-  "Sorting structure for the agenda items of a single day.
-This is a list of symbols which will be used in sequence to determine
-if an entry should be listed before another entry.  The following
-symbols are recognized:
-
-time-up         Put entries with time-of-day indications first, early first
-time-down       Put entries with time-of-day indications first, late first
-category-keep   Keep the default order of categories, corresponding to the
-               sequence in `org-agenda-files'.
-category-up     Sort alphabetically by category, A-Z.
-category-down   Sort alphabetically by category, Z-A.
-priority-up     Sort numerically by priority, high priority last.
-priority-down   Sort numerically by priority, high priority first.
+(defcustom org-sparse-tree-open-archived-trees nil
+  "Non-nil means sparse tree construction shows matches in archived trees.
+When nil, matches in these trees are highlighted, but the trees are kept in
+collapsed state."
+  :group 'org-archive
+  :group 'org-sparse-trees
+  :type 'boolean)
 
-The different possibilities will be tried in sequence, and testing stops
-if one comparison returns a \"not-equal\".  For example, the default
-    '(time-up category-keep priority-down)
-means: Pull out all entries having a specified time of day and sort them,
-in order to make a time schedule for the current day the first thing in the
-agenda listing for the day.  Of the entries without a time indication, keep
-the grouped in categories, don't sort the categories, but keep them in
-the sequence given in `org-agenda-files'.  Within each category sort by
-priority.
+(defcustom org-archive-location "%s_archive::"
+  "The location where subtrees should be archived.
+This string consists of two parts, separated by a double-colon.
 
-Leaving out `category-keep' would mean that items will be sorted across
-categories by priority."
-  :group 'org-agenda
-  :type '(repeat
-         (choice
-          (const time-up)
-          (const time-down)
-          (const category-keep)
-          (const category-up)
-          (const category-down)
-          (const priority-up)
-          (const priority-down))))
+The first part is a file name - when omitted, archiving happens in the same
+file.  %s will be replaced by the current file name (without directory part).
+Archiving to a different file is useful to keep archived entries from
+contributing to the Org-mode Agenda.
 
-(defcustom org-agenda-prefix-format "  %-12:c%?-12t% s"
-  "Format specification for the prefix of items in the agenda buffer.
-This format works similar to a printf format, with the following meaning:
+The part after the double colon is a headline.  The archived entries will be
+filed under that headline.  When omitted, the subtrees are simply filed away
+at the end of the file, as top-level entries.
 
-  %c   the category of the item, \"Diary\" for entries from the diary, or
-       as given by the CATEGORY keyword or derived from the file name.
-  %T   the first tag of the item.
-  %t   the time-of-day specification if one applies to the entry, in the
-       format HH:MM
-  %s   Scheduling/Deadline information, a short string
+Here are a few examples:
+\"%s_archive::\"
+       If the current file is Projects.org, archive in file
+       Projects.org_archive, as top-level trees.  This is the default.
 
-All specifiers work basically like the standard `%s' of printf, but may
-contain two additional characters:  A question mark just after the `%' and
-a whitespace/punctuation character just before the final letter.
+\"::* Archived Tasks\"
+       Archive in the current file, under the top-level headline
+       \"* Archived Tasks\".
 
-If the first character after `%' is a question mark, the entire field
-will only be included if the corresponding value applies to the
-current entry.  This is useful for fields which should have fixed
-width when present, but zero width when absent.  For example,
-\"%?-12t\" will result in a 12 character time field if a time of the
-day is specified, but will completely disappear in entries which do
-not contain a time.
+\"~/org/archive.org::\"
+       Archive in file ~/org/archive.org (absolute path), as top-level trees.
 
-If there is punctuation or whitespace character just before the final
-format letter, this character will be appended to the field value if
-the value is not empty.  For example, the format \"%-12:c\" leads to
-\"Diary: \" if the category is \"Diary\".  If the category were be
-empty, no additional colon would be interted.
+\"basement::** Finished Tasks\"
+       Archive in file ./basement (relative path), as level 3 trees
+       below the level 2 heading \"** Finished Tasks\".
 
-The default value of this option is \"  %-12:c%?-12t% s\", meaning:
-- Indent the line with two space characters
-- Give the category in a 12 chars wide field, padded with whitespace on
-  the right (because of `-').  Append a colon if there is a category
-  (because of `:').
-- If there is a time-of-day, put it into a 12 chars wide field.  If no
-  time, don't put in an empty field, just skip it (because of '?').
-- Finally, put the scheduling information and append a whitespace.
+You may set this option on a per-file basis by adding to the buffer a
+line like
 
-As another example, if you don't want the time-of-day of entries in
-the prefix, you could use:
+#+ARCHIVE: basement::** Finished Tasks"
+  :group 'org-archive
+  :type 'string)
 
-  (setq org-agenda-prefix-format \"  %-11:c% s\")
+(defcustom org-archive-mark-done t
+  "Non-nil means, mark entries as DONE when they are moved to the archive file."
+  :group 'org-archive
+  :type 'boolean)
 
-See also the variables `org-agenda-remove-times-when-in-prefix' and
-`org-agenda-remove-tags-when-in-prefix'."
-  :type 'string
-  :group 'org-agenda)
+(defcustom org-archive-stamp-time t
+  "Non-nil means, add a time stamp to entries moved to an archive file.
+The time stamp will be added directly after the TODO state keyword in the
+first line, so it is probably best to use this in combinations with
+`org-archive-mark-done'."
+  :group 'org-archive
+  :type 'boolean)
 
-(defcustom org-timeline-prefix-format "  % s"
-  "Like `org-agenda-prefix-format', but for the timeline of a single file."
-  :type 'string
-  :group 'org-agenda)
+(defgroup org-table nil
+  "Options concerning tables in Org-mode."
+  :tag "Org Table"
+  :group 'org)
 
-(defvar org-prefix-format-compiled nil
-  "The compiled version of the most recently used prefix format.
-Depending on which command was used last, this may be the compiled version
-of `org-agenda-prefix-format' or `org-timeline-prefix-format'.")
+(defcustom org-enable-table-editor 'optimized
+  "Non-nil means, lines starting with \"|\" are handled by the table editor.
+When nil, such lines will be treated like ordinary lines.
 
-(defcustom org-agenda-use-time-grid t
-  "Non-nil means, show a time grid in the agenda schedule.
-A time grid is a set of lines for specific times (like every two hours between
-8:00 and 20:00).  The items scheduled for a day at specific times are
-sorted in between these lines.
-For details about when the grid will be shown, and what it will look like, see
-the variable `org-agenda-time-grid'."
-  :group 'org-agenda
-  :type 'boolean)
+When equal to the symbol `optimized', the table editor will be optimized to
+do the following:
+- Use automatic overwrite mode in front of whitespace in table fields.
+  This make the structure of the table stay in tact as long as the edited
+  field does not exceed the column width.
+- Minimize the number of realigns.  Normally, the table is aligned each time
+  TAB or RET are pressed to move to another field.  With optimization this
+  happens only if changes to a field might have changed the column width.
+Optimization requires replacing the functions `self-insert-command',
+`delete-char', and `backward-delete-char' in Org-mode buffers, with a
+slight (in fact: unnoticeable) speed impact for normal typing.  Org-mode is
+very good at guessing when a re-align will be necessary, but you can always
+force one with \\[org-ctrl-c-ctrl-c].
 
-(defcustom org-agenda-time-grid
-  '((daily today require-timed)
-    "----------------"
-    (800 1000 1200 1400 1600 1800 2000))
+If you would like to use the optimized version in Org-mode, but the
+un-optimized version in OrgTbl-mode, see the variable `orgtbl-optimized'.
 
-  "The settings for time grid for agenda display.
-This is a list of three items.  The first item is again a list.  It contains
-symbols specifying conditions when the grid should be displayed:
+This variable can be used to turn on and off the table editor during a session,
+but in order to toggle optimization, a restart is required.
 
- daily         if the agenda shows a single day
- weekly        if the agenda shows an entire week
- today         show grid on current date, independent of daily/weekly display
- require-timed show grid only if at least on item has a time specification
+See also the variable `org-table-auto-blank-field'."
+  :group 'org-table
+  :type '(choice
+         (const :tag "off" nil)
+         (const :tag "on" t)
+         (const :tag "on, optimized" optimized)))
 
-The second item is a string which will be places behing the grid time.
+(defcustom orgtbl-optimized (eq org-enable-table-editor 'optimized)
+  "Non-nil means, use the optimized table editor version for `orgtbl-mode'.
+In the optimized version, the table editor takes over all simple keys that
+normally just insert a character.  In tables, the characters are inserted
+in a way to minimize disturbing the table structure (i.e. in overwrite mode
+for empty fields).  Outside tables, the correct binding of the keys is
+restored.
 
-The third item is a list of integers, indicating the times that should have
-a grid line."
-  :group 'org-agenda
-  :type
-  '(list
-    (set :greedy t :tag "Grid Display Options"
-        (const :tag "Show grid in single day agenda display" daily)
-        (const :tag "Show grid in weekly agenda display" weekly)
-        (const :tag "Always show grid for today" today)
-        (const :tag "Show grid only if any timed entries are present"
-               require-timed)
-        (const :tag "Skip grid times already present in an entry"
-               remove-match))
-    (string :tag "Grid String")
-    (repeat :tag "Grid Times" (integer :tag "Time"))))
+The default for this option is t if the optimized version is also used in
+Org-mode.  See the variable `org-enable-table-editor' for details.  Changing
+this variable requires a restart of Emacs to become effective."
+  :group 'org-table
+  :type 'boolean)
 
-(defcustom org-agenda-remove-times-when-in-prefix t
-  "Non-nil means, remove duplicate time specifications in agenda items.
-When the format `org-agenda-prefix-format' contains a `%t' specifier, a
-time-of-day specification in a headline or diary entry is extracted and
-placed into the prefix.  If this option is non-nil, the original specification
-\(a timestamp or -range, or just a plain time(range) specification like
-11:30-4pm) will be removed for agenda display.  This makes the agenda less
-cluttered.
-The option can be t or nil.  It may also be the symbol `beg', indicating
-that the time should only be removed what it is located at the beginning of
-the headline/diary entry."
-  :group 'org-agenda
-  :type '(choice
-         (const :tag "Always" t)
-         (const :tag "Never" nil)
-         (const :tag "When at beginning of entry" beg)))
+(defgroup org-table-settings nil
+  "Settings for tables in Org-mode."
+  :tag "Org Table Settings"
+  :group 'org-table)
 
-(defcustom org-sort-agenda-notime-is-late t
-  "Non-nil means, items without time are considered late.
-This is only relevant for sorting.  When t, items which have no explicit
-time like 15:30 will be considered as 24:01, i.e. later than any items which
-do have a time.  When nil, the default time is before 0:00.  You can use this
-option to decide if the schedule for today should come before or after timeless
-agenda entries."
-  :group 'org-agenda
-  :type 'boolean)
+(defcustom org-table-default-size "5x2"
+  "The default size for newly created tables, Columns x Rows."
+  :group 'org-table-settings
+   :type 'string)
 
-(defcustom org-agenda-remove-tags-when-in-prefix nil
-  "Non-nil means, the tags from copy of headline in agenda.
-When this is the symbol `prefix', only remove tags when
-`org-agenda-prefix-format' contains a `%T' specifier."
-  :group 'org-agenda
-  :type '(choice
-         (const :tag "Always" t)
-         (const :tag "Never" nil)
-         (const :tag "When prefix format contains %T" prefix)))
+(defcustom org-table-number-regexp "^[<>]?[-+^.0-9]*[0-9][-+^.0-9eEdDx()%]*$"
+  "Regular expression for recognizing numbers in table columns.
+If a table column contains mostly numbers, it will be aligned to the
+right.  If not, it will be aligned to the left.
 
-(defgroup org-structure nil
-  "Options concerning structure editing in Org-mode."
-  :tag "Org Structure"
-  :group 'org)
+The default value of this option is a regular expression which allows
+anything which looks remotely like a number as used in scientific
+context.  For example, all of the following will be considered a
+number:
+    12    12.2    2.4e-08    2x10^12    4.034+-0.02    2.7(10)  >3.5
 
-(defcustom org-cycle-include-plain-lists nil
-  "Non-nil means, include plain lists into visibility cycling.
-This means that during cycling, plain list items will *temporarily* be
-interpreted as outline headlines with a level given by 1000+i where i is the
-indentation of the bullet.  In all other operations, plain list items are
-not seen as headlines.  For example, you cannot assign a TODO keyword to
-such an item."
-  :group 'org-structure
-  :type 'boolean)
+Other options offered by the customize interface are more restrictive."
+  :group 'org-table-settings
+  :type '(choice
+         (const :tag "Positive Integers"
+                "^[0-9]+$")
+         (const :tag "Integers"
+                "^[-+]?[0-9]+$")
+         (const :tag "Floating Point Numbers"
+                "^[-+]?\\([0-9]*\\.[0-9]+\\|[0-9]+\\.[0-9]*\\)$")
+         (const :tag "Floating Point Number or Integer"
+                "^[-+]?\\([0-9]*\\.[0-9]+\\|[0-9]+\\.?[0-9]*\\)$")
+         (const :tag "Exponential, Floating point, Integer"
+                "^[-+]?[0-9.]+\\([eEdD][-+0-9]+\\)?$")
+         (const :tag "Very General Number-Like"
+                "^[<>]?[-+^.0-9]*[0-9][-+^.0-9eEdDx()%]*$")
+         (string :tag "Regexp:")))
 
-(defcustom org-cycle-emulate-tab t
-  "Where should `org-cycle' emulate TAB.
-nil    Never
-white  Only in completely white lines
-t      Everywhere except in headlines"
-  :group 'org-structure
-  :type '(choice (const :tag "Never" nil)
-                (const :tag "Only in completely white lines" white)
-                (const :tag "Everywhere except in headlines" t)
-                ))
+(defcustom org-table-number-fraction 0.5
+  "Fraction of numbers in a column required to make the column align right.
+In a column all non-white fields are considered.  If at least this
+fraction of fields is matched by `org-table-number-fraction',
+alignment to the right border applies."
+  :group 'org-table-settings
+  :type 'number)
 
-(defcustom org-cycle-hook '(org-optimize-window-after-visibility-change)
-  "Hook that is run after `org-cycle' has changed the buffer visibility.
-The function(s) in this hook must accept a single argument which indicates
-the new state that was set by the most recent `org-cycle' command.  The
-argument is a symbol.  After a global state change, it can have the values
-`overview', `content', or `all'.  After a local state change, it can have
-the values `folded', `children', or `subtree'."
-  :group 'org-structure
-  :type 'hook)
+(defgroup org-table-editing nil
+  "Bahavior of tables during editing in Org-mode."
+  :tag "Org Table Editing"
+  :group 'org-table)
 
-(defcustom org-highlight-sparse-tree-matches t
-  "Non-nil means, highlight all matches that define a sparse tree.
-The highlights will automatically disappear the next time the buffer is
-changed by an edit command."
-  :group 'org-structure
+(defcustom org-table-automatic-realign t
+  "Non-nil means, automatically re-align table when pressing TAB or RETURN.
+When nil, aligning is only done with \\[org-table-align], or after column
+removal/insertion."
+  :group 'org-table-editing
   :type 'boolean)
 
-(defcustom org-show-hierarchy-above t
-  "Non-nil means, show full hierarchy when showing a spot in the tree.
-Turning this off makes sparse trees more compact, but also less clear."
-  :group 'org-structure
+(defcustom org-table-limit-column-width t ;kw
+  "Non-nil means, allow to limit the width of table columns with <N> fields."
+  :group 'org-table-editing
   :type 'boolean)
 
-(defcustom org-show-following-heading t
-  "Non-nil means, show heading following match in `org-occur'.
-When doing an `org-occur' it is useful to show the headline which
-follows the match, even if they do not match the regexp.  This makes it
-easier to edit directly inside the sparse tree.  However, if you use
-`org-occur' mainly as an overview, the following headlines are
-unnecessary clutter."
-  :group 'org-structure
+(defcustom org-table-auto-blank-field t
+  "Non-nil means, automatically blank table field when starting to type into it.
+This only happens when typing immediately after a field motion
+command (TAB, S-TAB or RET).
+Only relevant when `org-enable-table-editor' is equal to `optimized'."
+  :group 'org-table-editing
   :type 'boolean)
 
-(defcustom org-occur-hook '(org-first-headline-recenter)
-  "Hook that is run after `org-occur' has constructed a sparse tree.
-This can be used to recenter the window to show as much of the structure
-as possible."
-  :group 'org-structure
-  :type 'hook)
+(defcustom org-table-tab-jumps-over-hlines t
+  "Non-nil means, tab in the last column of a table with jump over a hline.
+If a horizontal separator line is following the current line,
+`org-table-next-field' can either create a new row before that line, or jump
+over the line.  When this option is nil, a new line will be created before
+this line."
+  :group 'org-table-editing
+  :type 'boolean)
 
-(defcustom org-level-color-stars-only nil
-  "Non-nil means fontify only the stars in each headline.
-When nil, the entire headline is fontified.
-Changing it requires restart of `font-lock-mode' to become effective."
-  :group 'org-structure
+(defcustom org-table-tab-recognizes-table.el t
+  "Non-nil means, TAB will automatically notice a table.el table.
+When it sees such a table, it moves point into it and - if necessary -
+calls `table-recognize-table'."
+  :group 'org-table-editing
   :type 'boolean)
 
-(defcustom org-hide-leading-stars nil
-  "Non-nil means, hide the first N-1 stars in a headline.
-This works by using the face `org-hide' for these stars.  This
-face is white for a light background, and black for a dark
-background.  You may have to customize the face `org-hide' to
-make this work.
-Changing it requires restart of `font-lock-mode' to become effective."
-  :group 'org-structure
+(defgroup org-table-calculation nil
+  "Options concerning tables in Org-mode."
+  :tag "Org Table Calculation"
+  :group 'org-table)
+
+(defcustom org-table-copy-increment t
+  "Non-nil means, increment when copying current field with \\[org-table-copy-down]."
+  :group 'org-table-calculation
   :type 'boolean)
 
-(defcustom org-odd-levels-only nil
-  "Non-nil means, skip even levels and only use odd levels for the outline.
-This has the effect that two stars are being added/taken away in
-promotion/demotion commands.  It also influences how levels are
-handled by the exporters.
-Changing it requires restart of `font-lock-mode' to become effective
-for fontification." 
-  :group 'org-structure
+(defcustom org-calc-default-modes
+  '(calc-internal-prec 12
+    calc-float-format  (float 5)
+    calc-angle-mode    deg
+    calc-prefer-frac   nil
+    calc-symbolic-mode nil
+    calc-date-format (YYYY "-" MM "-" DD " " Www (" " HH ":" mm))
+    calc-display-working-message t
+    )
+  "List with Calc mode settings for use in calc-eval for table formulas.
+The list must contain alternating symbols (Calc modes variables and values).
+Don't remove any of the default settings, just change the values.  Org-mode
+relies on the variables to be present in the list."
+  :group 'org-table-calculation
+  :type 'plist)
+
+(defcustom org-table-formula-evaluate-inline t
+  "Non-nil means, TAB and RET evaluate a formula in current table field.
+If the current field starts with an equal sign, it is assumed to be a formula
+which should be evaluated as described in the manual and in the documentation
+string of the command `org-table-eval-formula'.  This feature requires the
+Emacs calc package.
+When this variable is nil, formula calculation is only available through
+the command \\[org-table-eval-formula]."
+  :group 'org-table-calculation
   :type 'boolean)
 
-(defcustom org-adapt-indentation t
-  "Non-nil means, adapt indentation when promoting and demoting.
-When this is set and the *entire* text in an entry is indented, the
-indentation is increased by one space in a demotion command, and
-decreased by one in a promotion command.  If any line in the entry
-body starts at column 0, indentation is not changed at all."
-  :group 'org-structure
+
+(defcustom org-table-formula-use-constants t
+  "Non-nil means, interpret constants in formulas in tables.
+A constant looks like `$c' or `$Grav' and will be replaced before evaluation
+by the value given in `org-table-formula-constants', or by a value obtained
+from the `constants.el' package."
+  :group 'org-table-calculation
   :type 'boolean)
 
-(defcustom org-plain-list-ordered-item-terminator t
-  "The character that makes a line with leading number an ordered list item.
-Valid values are ?. and ?\).  To get both terminators, use t.  While
-?. may look nicer, it creates the danger that a line with leading
-number may be incorrectly interpreted as an item.  ?\) therefore is
-the safe choice."
-  :group 'org-structure
-  :type '(choice (const :tag "dot like in \"2.\"" ?.)
-                (const :tag "paren like in \"2)\"" ?\))
-                (const :tab "both" t)))
-
-(defcustom org-auto-renumber-ordered-lists t
-  "Non-nil means, automatically renumber ordered plain lists.
-Renumbering happens when the sequence have been changed with
-\\[org-shiftmetaup] or \\[org-shiftmetadown].  After other editing commands,
-use \\[org-ctrl-c-ctrl-c] to trigger renumbering."
-  :group 'org-structure
-  :type 'boolean)
-
-(defcustom org-enable-fixed-width-editor t
-  "Non-nil means, lines starting with \":\" are treated as fixed-width.
-This currently only means, they are never auto-wrapped.
-When nil, such lines will be treated like ordinary lines.
-See also the QUOTE keyword."
-  :group 'org-structure
-  :type 'boolean)
-
-(defcustom org-archive-location "%s_archive::"
-  "The location where subtrees should be archived.
-This string consists of two parts, separated by a double-colon.
-
-The first part is a file name - when omitted, archiving happens in the same
-file.  %s will be replaced by the current file name (without directory part).
-Archiving to a different file is useful to keep archived entries from
-contributing to the Org-mode Agenda.
-
-The part after the double colon is a headline.  The archived entries will be
-filed under that headline.  When omitted, the subtrees are simply filed away
-at the end of the file, as top-level entries.
-
-Here are a few examples:
-\"%s_archive::\"
-       If the current file is Projects.org, archive in file
-       Projects.org_archive, as top-level trees.  This is the default.
-
-\"::* Archived Tasks\"
-       Archive in the current file, under the top-level headline
-       \"* Archived Tasks\".
-
-\"~/org/archive.org::\"
-       Archive in file ~/org/archive.org (absolute path), as top-level trees.
-
-\"basement::** Finished Tasks\"
-       Archive in file ./basement (relative path), as level 3 trees
-       below the level 2 heading \"** Finished Tasks\".
-
-You may set this option on a per-file basis by adding to the buffer a
-line like
-
-#+ARCHIVE: basement::** Finished Tasks"
-  :group 'org-structure
-  :type 'string)
-
-(defcustom org-archive-mark-done t
-  "Non-nil means, mark archived entries as DONE."
-  :group 'org-structure
-  :type 'boolean)
-
-(defcustom org-archive-stamp-time t
-  "Non-nil means, add a time stamp to archived entries.
-The time stamp will be added directly after the TODO state keyword in the
-first line, so it is probably best to use this in combinations with
-`org-archive-mark-done'."
-  :group 'org-structure
-  :type 'boolean)
-
-(defgroup org-tags nil
-  "Options concerning startup of Org-mode."
-  :tag "Org Tags"
-  :group 'org)
+(defcustom org-table-formula-constants nil
+  "Alist with constant names and values, for use in table formulas.
+The car of each element is a name of a constant, without the `$' before it.
+The cdr is the value as a string.  For example, if you'd like to use the
+speed of light in a formula, you would configure
 
-(defcustom org-tags-column 48
-  "The column to which tags should be indented in a headline.
-If this number is positive, it specifies the column.  If it is negative,
-it means that the tags should be flushright to that column.  For example,
--79 works well for a normal 80 character screen."
-  :group 'org-tags
-  :type 'integer)
+  (setq org-table-formula-constants '((\"c\" . \"299792458.\")))
 
-(defcustom org-auto-align-tags t
-  "Non-nil means, realign tags after pro/demotion of TODO state change.
-These operations change the length of a headline and therefore shift
-the tags around.  With this options turned on, after each such operation
-the tags are again aligned to `org-tags-column'."
-  :group 'org-tags
-  :type 'boolean)
+and then use it in an equation like `$1*$c'."
+  :group 'org-table-calculation
+  :type '(repeat
+         (cons (string :tag "name")
+               (string :tag "value"))))
 
-(defcustom org-use-tag-inheritance t
-  "Non-nil means, tags in levels apply also for sublevels.
-When nil, only the tags directly given in a specific line apply there.
-If you turn off this option, you very likely want to turn on the
-companion option `org-tags-match-list-sublevels'."
-  :group 'org-tags
+(defcustom org-table-formula-numbers-only nil
+  "Non-nil means, calculate only with numbers in table formulas.
+Then all input fields will be converted to a number, and the result
+must also be a number.  When nil, calc's full potential is available
+in table calculations, including symbolics etc."
+  :group 'org-table-calculation
   :type 'boolean)
 
-(defcustom org-tags-match-list-sublevels nil
-  "Non-nil means list also sublevels of headlines matching tag search.
-Because of tag inheritance (see variable `org-use-tag-inheritance'),
-the sublevels of a headline matching a tag search often also match
-the same search.  Listing all of them can create very long lists.
-Setting this variable to nil causes subtrees to be skipped.
-This option is off by default, because inheritance in on.  If you turn
-inheritance off, you very likely want to turn this option on.
-
-As a special case, if the tag search is restricted to TODO items, the
-value of this variable is ignored and sublevels are always checked, to
-make sure all corresponding TODO items find their way into the list."
-  :group 'org-tags
+(defcustom org-table-allow-automatic-line-recalculation t
+  "Non-nil means, lines marked with |#| or |*| will be recomputed automatically.
+Automatically means, when TAB or RET or C-c C-c are pressed in the line."
+  :group 'org-table-calculation
   :type 'boolean)
 
-(defvar org-tags-history nil
-  "History of minibuffer reads for tags.")
-(defvar org-last-tags-completion-table nil
-  "The last used completion table for tags.")
-
 (defgroup org-link nil
   "Options concerning links in Org-mode."
   :tag "Org Link"
   :group 'org)
 
-(defcustom org-tab-follows-link nil
-  "Non-nil means, on links TAB will follow the link.
-Needs to be set before org.el is loaded."
-  :group 'org-link
-  :type 'boolean)
-
-(defcustom org-return-follows-link nil
-  "Non-nil means, on links RET will follow the link.
-Needs to be set before org.el is loaded."
+(defcustom org-descriptive-links t
+  "Non-nil means, hide link part and only show description of bracket links.
+Bracket links are like [[link][descritpion]]. This variable sets the initial
+state in new org-mode buffers.  The setting can then be toggled on a
+per-buffer basis from the Org->Hyperlinks menu."
   :group 'org-link
   :type 'boolean)
 
-(defcustom org-mark-ring-length 4
-  "Number of different positions to be recorded in the ring
-Changing this requires a restart of Emacs to work correctly."
+(defcustom org-link-style 'bracket
+  "The style of links to be inserted with \\[org-insert-link].
+Possible values are:
+bracket    [[link][description]].   This is recommended
+plain      Description \\n link.     The old way, no longer recommended."
   :group 'org-link
-  :type 'interger)
+  :type '(choice
+         (const :tag "Bracket (recommended)" bracket)
+         (const :tag "Plain (no longer recommended)" plain)))
 
-(defcustom org-link-format "<%s>"
-  "Default format for linkes in the buffer.
+(defcustom org-link-format "%s"
+  "Default format for external, URL-like linkes in the buffer.
 This is a format string for printf, %s will be replaced by the link text.
-If you want to make sure that your link is always properly terminated,
-include angle brackets into this format, like \"<%s>\".  Some people also
-recommend an additional URL: prefix, so the format would be \"<URL:%s>\"."
+The recommended value is just \"%s\", since links will be protected by
+enclosing them in double brackets.  If you prefer plain links (see variable
+`org-link-style'), \"<%s>\" is useful. Some people also recommend an
+additional URL: prefix, so the format would be \"<URL:%s>\"."
   :group 'org-link
   :type '(choice
          (const :tag "\"%s\"   (e.g. http://www.there.com)" "%s")
@@ -993,28 +889,52 @@ recommend an additional URL: prefix, so the format would be \"<URL:%s>\"."
          (const :tag "\"<URL:%s>\"  (e.g. <URL:http://www.there.com>)" "<URL:%s>")
          (string :tag "Other" :value "<%s>")))
 
-(defcustom org-allow-space-in-links t
-  "Non-nil means, file names in links may contain space characters.
-When nil, it becomes possible to put several links into a line.
-Note that in tables, a link never extends accross fields, so in a table
-it is always possible to put several links into a line.
-Changing this variable requires a restart of Emacs of become effective."
-  :group 'org-link
-  :type 'boolean)
+(defcustom org-link-file-path-type 'adaptive
+  "How the path name in file links should be stored.
+Valid values are:
 
-(defcustom org-radio-targets t
-  "Non-nil means activate text matching a link target.
-Radio targets are strings in triple angular brackets, like <<<My Target>>>.
-When this option is set, any occurrence of \"my target\" in normal text
-becomes a link."
+relative  relative to the current directory, i.e. the directory of the file
+          into which the link is being inserted.
+absolute  absolute path, if possible with ~ for home directory.
+noabbrev  absolute path, no abbreviation of home directory.
+adaptive  Use relative path for files in the current directory and sub-
+          directories of it.  For other files, use an absolute path."
   :group 'org-link
-  :type 'boolean)
-
-(defcustom org-activate-camels nil
-  "Non-nil means, treat words in CamelCase as in-file links.
-Changing this requires restart of Emacs to become effective."
+  :type '(choice
+         (const relative)
+         (const absolute)
+         (const noabbrev)
+         (const adaptive)))
+
+(defcustom org-activate-links '(bracket angle plain radio tag date)
+  "Types of links that should be activated in Org-mode files.
+This is a list of symbols, each leading to the activation of a certain link
+type.  In principle, it does not hurt to turn on most link types - there may
+be a small gain when turning off unused link types.  The types are:
+
+bracket   The recommended [[link][description]] or [[link]] links with hiding.
+angular   Links in angular brackes that may contain whitespace like
+          <bbdb:Carsten Dominik>.
+plain     Plain links in normal text, no whitespace, like http://google.com.
+radio     Text that is matched by a radio target, see manual for details.
+tag       Tag settings in a headline (link to tag search).
+date      Time stamps (link to calendar).
+camel     CamelCase words defining text searches.
+
+Changing this variable requires a restart of Emacs to become effective."
   :group 'org-link
-  :type 'boolean)
+  :type '(set (const :tag "Double bracket links (new style)" bracket)
+             (const :tag "Angular bracket links (old style)" angular)
+             (const :tag "plain text links" plain)
+             (const :tag "Radio target matches" radio)
+             (const :tag "Tags" tag)
+             (const :tag "Timestamps" date)
+             (const :tag "CamelCase words" camel)))
+
+(defgroup org-link-store nil
+  "Options concerning storing links in Org-mode"
+  :tag "Org Store Link"
+  :group 'org-link)
 
 (defcustom org-context-in-file-links t
   "Non-nil means, file links from `org-store-link' contain context.
@@ -1023,13 +943,14 @@ used to find the context when the link is activated by the command
 `org-open-at-point'.
 Using a prefix arg to the command \\[org-store-link] (`org-store-link')
 negates this setting for the duration of the command."
-  :group 'org-link
+  :group 'org-link-store
   :type 'boolean)
 
 (defcustom org-file-link-context-use-camel-case nil
   "Non-nil means, use CamelCase to store a search context in a file link.
-When nil, the search string simply consists of the words of the string."
-  :group 'org-link
+When nil, the search string simply consists of the words of the string.
+CamelCase is deprecated, and support for it may be dropped in the future."
+  :group 'org-link-store
   :type 'boolean)
 
 (defcustom org-keep-stored-link-after-insertion nil
@@ -1042,9 +963,47 @@ Org-mode file (offering completion for all stored links).  When this
 option is nil, every link which has been inserted once using \\[org-insert-link]
 will be removed from the list, to make completing the unused links
 more efficient."
-  :group 'org-link
+  :group 'org-link-store
+  :type 'boolean)
+
+(defcustom org-usenet-links-prefer-google nil
+  "Non-nil means, `org-store-link' will create web links to Google groups.
+When nil, Gnus will be used for such links.
+Using a prefix arg to the command \\[org-store-link] (`org-store-link')
+negates this setting for the duration of the command."
+  :group 'org-link-store
+  :type 'boolean)
+
+(defgroup org-link-follow nil
+  "Options concerning following links in Org-mode"
+  :tag "Org Follow Link"
+  :group 'org-link)
+
+(defcustom org-tab-follows-link nil
+  "Non-nil means, on links TAB will follow the link.
+Needs to be set before org.el is loaded."
+  :group 'org-link-follow
+  :type 'boolean)
+
+(defcustom org-return-follows-link nil
+  "Non-nil means, on links RET will follow the link.
+Needs to be set before org.el is loaded."
+  :group 'org-link-follow
+  :type 'boolean)
+
+(defcustom org-mouse-1-follows-link t
+  "Non-nil means, mouse-1 on a link will follow the link.
+A longer mouse click will still set point.  Does not wortk on XEmacs.
+Needs to be set before org.el is loaded."
+  :group 'org-link-follow
   :type 'boolean)
 
+(defcustom org-mark-ring-length 4
+  "Number of different positions to be recorded in the ring
+Changing this requires a restart of Emacs to work correctly."
+  :group 'org-link-follow
+  :type 'interger)
+
 (defcustom org-link-frame-setup
   '((vm . vm-visit-folder-other-frame)
     (gnus . gnus-other-frame)
@@ -1066,7 +1025,7 @@ For FILE, use any of
 For the calendar, use the variable `calendar-setup'.
 For BBDB, it is currently only possible to display the matches in
 another window."
-  :group 'org-link
+  :group 'org-link-follow
   :type '(list
          (cons (const vm)
                (choice
@@ -1083,33 +1042,55 @@ another window."
                 (const find-file-other-window)
                 (const find-file-other-frame)))))
 
-(defcustom org-usenet-links-prefer-google nil
-  "Non-nil means, `org-store-link' will create web links to Google groups.
-When nil, Gnus will be used for such links.
-Using a prefix arg to the command \\[org-store-link] (`org-store-link')
-negates this setting for the duration of the command."
-  :group 'org-link
-  :type 'boolean)
-
 (defcustom org-open-non-existing-files nil
   "Non-nil means, `org-open-file' will open non-existing file.
 When nil, an error will be generated."
-  :group 'org-link
+  :group 'org-link-follow
   :type 'boolean)
 
-(defcustom org-confirm-shell-links t
+(defcustom org-confirm-shell-link-function 'yes-or-no-p
   "Non-nil means, ask for confirmation before executing shell links.
-The default is true, to keep new users from shooting into their own foot."
-  :group 'org-link
-  :type 'boolean)
+Shell links can be dangerous, just thing about a link
+
+     [[shell:rm -rf ~/*][Google Search]]
+
+This link would show up in your Org-mode document as \"Google Search\"
+but really it would remove your entire home directory.
+Therefore I *definitely* advise against setting this variable to nil.
+Just change it to `y-or-n-p' of you want to confirm with a single key press
+rather than having to type \"yes\"."
+  :group 'org-link-follow
+  :type '(choice
+         (const :tag "with yes-or-no (safer)" yes-or-no-p)
+         (const :tag "with y-or-n (faster)" y-or-n-p)
+         (const :tag "no confirmation (dangerous)" nil)))
+
+(defcustom org-confirm-elisp-link-function 'yes-or-no-p
+  "Non-nil means, ask for confirmation before executing elisp links.
+Elisp links can be dangerous, just thing about a link
+
+     [[elisp:(shell-command \"rm -rf ~/*\")][Google Search]]
+
+This link would show up in your Org-mode document as \"Google Search\"
+but really it would remove your entire home directory.
+Therefore I *definitely* advise against setting this variable to nil.
+Just change it to `y-or-n-p' of you want to confirm with a single key press
+rather than having to type \"yes\"."
+  :group 'org-link-follow
+  :type '(choice
+         (const :tag "with yes-or-no (safer)" yes-or-no-p)
+         (const :tag "with y-or-n (faster)" y-or-n-p)
+         (const :tag "no confirmation (dangerous)" nil)))
 
 (defconst org-file-apps-defaults-gnu
-  '((t . mailcap))
+  '((remote . emacs)
+    (t . mailcap))
   "Default file applications on a UNIX or GNU/Linux system.
 See `org-file-apps'.")
 
 (defconst org-file-apps-defaults-macosx
-  '((t        . "open %s")
+  '((remote . emacs)
+    (t        . "open %s")
     ("ps"     . "gv %s")
     ("ps.gz"  . "gv %s")
     ("eps"    . "gv %s")
@@ -1122,7 +1103,13 @@ for some files for which the OS does not have a good default.
 See `org-file-apps'.")
 
 (defconst org-file-apps-defaults-windowsnt
-  '((t        . (w32-shell-execute "open" file)))
+  (list 
+   '(remote . emacs)
+   (cons t
+        (list (if (featurep 'xemacs)
+                  'mswindows-shell-execute
+                'w32-shell-execute)
+              "open" 'file)))
   "Default file applications on a Windows NT system.
 The system \"open\" is used for most files.
 See `org-file-apps'.")
@@ -1134,27 +1121,38 @@ See `org-file-apps'.")
     ("ltx" . emacs)
     ("org" . emacs)
     ("el"  . emacs)
+    ("bib" . emacs)
     )
   "External applications for opening `file:path' items in a document.
 Org-mode uses system defaults for different file types, but
 you can use this variable to set the application for a given file
-extension.  The entries in this list are cons cells with a file extension
-and the corresponding command.  Possible values for the command are:
- `emacs'     The file will be visited by the current Emacs process.
- `default'   Use the default application for this file type.
- string      A command to be executed by a shell; %s will be replaced
-            by the path to the file.
- sexp        A Lisp form which will be evaluated.  The file path will
-            be available in the Lisp variable `file'.
+extension.  The entries in this list are cons cells where the car identifies
+files and the cdr the corresponding command.  Possible values for the
+file identifier are
+ \"ext\"         A string identifying an extension
+ `directory'   Matches a directory
+ `remote'      Matches a remote file, accessible through tramp or efs.
+               Remote files most likely should be visited through emacs
+               because external applications cannot handle such paths.
+ t             Default for all remaining files
+
+Possible values for the command are:
+ `emacs'       The file will be visited by the current Emacs process.
+ `default'     Use the default application for this file type.
+ string        A command to be executed by a shell; %s will be replaced
+              by the path to the file.
+ sexp          A Lisp form which will be evaluated.  The file path will
+              be available in the Lisp variable `file'.
 For more examples, see the system specific constants
 `org-file-apps-defaults-macosx'
 `org-file-apps-defaults-windowsnt'
 `org-file-apps-defaults-gnu'."
-  :group 'org-link
+  :group 'org-link-follow
   :type '(repeat
          (cons (choice :value ""
                        (string :tag "Extension")
                        (const :tag "Default for unrecognized files" t)
+                       (const :tag "Remote file" remote)
                        (const :tag "Links to a directory" directory))
                (choice :value ""
                        (const :tag "Visit with Emacs" emacs)
@@ -1163,11 +1161,11 @@ For more examples, see the system specific constants
                        (sexp :tag "Lisp form")))))
 
 (defcustom org-mhe-search-all-folders nil
-  "Non-nil means, that the search for the mh-message will be extended to 
+  "Non-nil means, that the search for the mh-message will be extended to
 all folders if the message cannot be found in the folder given in the link.
-Searching all folders is very effective with one of the search engines 
+Searching all folders is very effective with one of the search engines
 supported by MH-E, but will be slow with pick."
-  :group 'org-link
+  :group 'org-link-follow
   :type 'boolean)
 
 (defgroup org-remember nil
@@ -1191,6 +1189,34 @@ the value of `remember-data-file'."
          (const :tag "Default from remember-data-file" nil)
          file))
 
+(defcustom org-remember-templates nil
+  "Templates for the creation of remember buffers.
+When nil, just let remember make the buffer.
+When not nil, this is a list of 3-element lists.  In each entry, the first
+element is a character, a unique key to select this template.
+The second element is the template.  The third element is optional and can
+specify a destination file for remember items created with this template.
+The default file is given by `org-default-notes-file'.
+
+The template specifies the structure of the remember buffer.  It should have
+a first line starting with a star, to act as the org-mode headline.
+Furthermore, the following %-escapes will be replaced with content:
+  %t  time stamp, date only
+  %T  time stamp with date and time
+  %u  inactive time stamp, date only
+  %U  inactive time stamp with date and time
+  %n  user name
+  %a  annotation, normally the link created with org-store-link
+  %i  initial content, the region when remember is called with C-u.
+      If %i is indented, the entire inserted text will be indented as well.
+  %?  This will be removed, and the cursor placed at this position."
+  :group 'org-remember
+  :type '(repeat :tag "enabled"
+                (list :value (?a "\n" nil)
+                      (character :tag "Selection Key")
+                      (string :tag "Template")
+                      (file :tag "Destination file (optional)"))))
+
 (defcustom org-reverse-note-order nil
   "Non-nil means, store new notes at the beginning of a file or entry.
 When nil, new notes will be filed to the end of a file or entry."
@@ -1201,217 +1227,610 @@ When nil, new notes will be filed to the end of a file or entry."
          (repeat :tag "By file name regexp"
                  (cons regexp boolean))))
 
-(defgroup org-table nil
-  "Options concerning tables in Org-mode."
-  :tag "Org Table"
+(defgroup org-todo nil
+  "Options concerning TODO items in Org-mode."
+  :tag "Org TODO"
   :group 'org)
 
-(defcustom org-enable-table-editor 'optimized
-  "Non-nil means, lines starting with \"|\" are handled by the table editor.
-When nil, such lines will be treated like ordinary lines.
+(defcustom org-todo-keywords '("TODO" "DONE")
+  "List of TODO entry keywords.
+\\<org-mode-map>By default, this is '(\"TODO\" \"DONE\").  The last entry in the list is
+considered to mean that the entry is \"done\".  All the other mean that
+action is required, and will make the entry show up in todo lists, diaries
+etc.
+The command \\[org-todo] cycles an entry through these states, and an
+additional state where no keyword is present.  For details about this
+cycling, see also the variable `org-todo-interpretation'
+Changes become only effective after restarting Emacs."
+  :group 'org-todo
+  :group 'org-keywords
+  :type '(repeat (string :tag "Keyword")))
 
-When equal to the symbol `optimized', the table editor will be optimized to
-do the following:
-- Use automatic overwrite mode in front of whitespace in table fields.
-  This make the structure of the table stay in tact as long as the edited
-  field does not exceed the column width.
-- Minimize the number of realigns.  Normally, the table is aligned each time
-  TAB or RET are pressed to move to another field.  With optimization this
-  happens only if changes to a field might have changed the column width.
-Optimization requires replacing the functions `self-insert-command',
-`delete-char', and `backward-delete-char' in Org-mode buffers, with a
-slight (in fact: unnoticeable) speed impact for normal typing.  Org-mode is
-very good at guessing when a re-align will be necessary, but you can always
-force one with \\[org-ctrl-c-ctrl-c].
+(defcustom org-todo-interpretation 'sequence
+  "Controls how TODO keywords are interpreted.
+This variable is only relevant if `org-todo-keywords' contains more than two
+states.  \\<org-mode-map>Possible values are `sequence' and `type'.
+
+When `sequence', \\[org-todo] will always switch to the next state in the
+`org-todo-keywords' list. When `type', \\[org-todo] only cycles from state
+to state when executed several times in direct succession.  Otherwise, it
+switches directly to DONE from any state.
+See the manual for more information."
+  :group 'org-todo
+  :group 'org-keywords
+  :type '(choice (const sequence)
+                (const type)))
 
-If you would like to use the optimized version in Org-mode, but the
-un-optimized version in OrgTbl-mode, see the variable `orgtbl-optimized'.
+(defcustom org-after-todo-state-change-hook nil
+  "Hook which is run after the state of a TODO item was changed.
+The new state (a string with a TODO keyword, or nil) is available in the
+Lisp variable `state'."
+  :group 'org-todo
+  :type 'hook)
 
-This variable can be used to turn on and off the table editor during a session,
-but in order to toggle optimization, a restart is required.
+(defcustom org-log-done nil
+  "When set, insert a (non-active) time stamp when TODO entry is marked DONE.
+When the state of an entry is changed from nothing to TODO, remove a previous
+closing date.
+This can also be configured on a per-file basis by adding one of
+the following lines anywhere in the buffer:
 
-See also the variable `org-table-auto-blank-field'."
-  :group 'org-table
-  :type '(choice
-         (const :tag "off" nil)
-         (const :tag "on" t)
-         (const :tag "on, optimized" optimized)))
+   #+STARTUP: logging
+   #+STARTUP: nologging"
+  :group 'org-todo
+  :type 'boolean)
 
-;; FIXME: We could have a third option which makes it jump only over the first
-;; hline in a table.
-(defcustom org-table-tab-jumps-over-hlines t
-  "Non-nil means, tab in the last column of a table with jump over a hline.
-If a horizontal separator line is following the current line,
-`org-table-next-field' can either create a new row before that line, or jump
-over the line.  When this option is nil, a new line will be created before
-this line."
-  :group 'org-table
+(defgroup org-priorities nil
+  "Priorities in Org-mode."
+  :tag "Org Priorities"
+  :group 'org-todo)
+
+(defcustom org-default-priority ?B
+  "The default priority of TODO items.
+This is the priority an item get if no explicit priority is given."
+  :group 'org-priorities
+  :type 'character)
+
+(defcustom org-lowest-priority ?C
+  "The lowest priority of TODO items.  A character like ?A, ?B etc."
+  :group 'org-priorities
+  :type 'character)
+
+(defgroup org-time nil
+  "Options concerning time stamps and deadlines in Org-mode."
+  :tag "Org Time"
+  :group 'org)
+
+(defcustom org-insert-labeled-timestamps-at-point nil
+  "Non-nil means, SCHEDULED and DEADLINE timestamps are inserted at point.
+When nil, these labeled time stamps are forces into the second line of an
+entry, just after the headline.  When scheduling from the global TODO list,
+the time stamp will always be forced into the second line."
+  :group 'org-time
   :type 'boolean)
 
-(defcustom org-table-auto-blank-field t
-  "Non-nil means, automatically blank table field when starting to type into it.
-This only happens when typing immediately after a field motion
-command (TAB, S-TAB or RET).
-Only relevant when `org-enable-table-editor' is equal to `optimized'."
-  :group 'org-table
+(defconst org-time-stamp-formats '("<%Y-%m-%d %a>" . "<%Y-%m-%d %a %H:%M>")
+  "Formats for `format-time-string' which are used for time stamps.
+It is not recommended to change this constant.")
+
+(defcustom org-time-stamp-rounding-minutes 0
+  "Number of minutes to round time stamps to upon insertion.
+When zero, insert the time unmodified.  Useful rounding numbers
+should be factors of 60, so for example 5, 10, 15.
+When this is not zero, you can still force an exact time-stamp by using
+a double prefix argument to a time-stamp command like `C-c .' or `C-c !'."
+  :group 'org-time
+  :type 'integer)
+
+(defcustom org-deadline-warning-days 30
+  "No. of days before expiration during which a deadline becomes active.
+This variable governs the display in the org file."
+  :group 'org-time
+  :type 'number)
+
+(defcustom org-popup-calendar-for-date-prompt t
+  "Non-nil means, pop up a calendar when prompting for a date.
+In the calendar, the date can be selected with mouse-1.  However, the
+minibuffer will also be active, and you can simply enter the date as well.
+When nil, only the minibuffer will be available."
+  :group 'org-time
   :type 'boolean)
 
-(defcustom org-table-default-size "5x2"
-  "The default size for newly created tables, Columns x Rows."
-  :group 'org-table
-   :type 'string)
+(defcustom org-calendar-follow-timestamp-change t
+  "Non-nil means, make the calendar window follow timestamp changes.
+When a timestamp is modified and the calendar window is visible, it will be
+moved to the new date."
+  :group 'org-time
+  :type 'boolean)
 
-(defcustom org-table-automatic-realign t
-  "Non-nil means, automatically re-align table when pressing TAB or RETURN.
-When nil, aligning is only done with \\[org-table-align], or after column
-removal/insertion."
-  :group 'org-table
+(defgroup org-tags nil
+  "Options concerning tags in Org-mode."
+  :tag "Org Tags"
+  :group 'org)
+
+(defcustom org-tag-alist nil
+  "List of tags allowed in Org-mode files.
+When this list is nil, Org-mode will base TAG input on what is already in the
+buffer.
+The value of this variable is an alist, the car may be (and should) be a
+character that is used to select that tag through the fast-tag-selection
+interface.  See the manual for details."
+  :group 'org-tags
+  :type '(repeat
+         (choice
+          (cons   (string    :tag "Tag name")
+                  (character :tag "Access char"))
+          (const :tag "Start radio group" (:startgroup))
+          (const :tag "End radio group" (:endgroup)))))
+
+(defcustom org-use-fast-tag-selection 'auto
+  "Non-nil means, use fast tag selection scheme.
+This is a special interface to select and deselect tags with single keys.
+When nil, fast selection is never used.
+When the symbol `auto', fast selection is used if and only if selection
+characters for tags have been configured, either through the variable
+`org-tag-alist' or through a #+TAGS line in the buffer.
+When t, fast selection is always used and selection keys are assigned
+automatically if necessary."
+  :group 'org-tags
+  :type '(choice
+         (const :tag "Always" t)
+         (const :tag "Never" nil)
+         (const :tag "When selection characters are configured" 'auto)))
+
+(defcustom org-tags-column 48
+  "The column to which tags should be indented in a headline.
+If this number is positive, it specifies the column.  If it is negative,
+it means that the tags should be flushright to that column.  For example,
+-79 works well for a normal 80 character screen."
+  :group 'org-tags
+  :type 'integer)
+
+(defcustom org-auto-align-tags t
+  "Non-nil means, realign tags after pro/demotion of TODO state change.
+These operations change the length of a headline and therefore shift
+the tags around.  With this options turned on, after each such operation
+the tags are again aligned to `org-tags-column'."
+  :group 'org-tags
   :type 'boolean)
 
-(defcustom org-table-spaces-around-separators '(1 . 1)
-  "The number of spaces to be placed before and after separators."
-  :group 'org-table
-  :type '(cons (number :tag "Before \"|\"") (number :tag " After \"|\"")))
+(defcustom org-use-tag-inheritance t
+  "Non-nil means, tags in levels apply also for sublevels.
+When nil, only the tags directly given in a specific line apply there.
+If you turn off this option, you very likely want to turn on the
+companion option `org-tags-match-list-sublevels'."
+  :group 'org-tags
+  :type 'boolean)
 
-(defcustom org-table-spaces-around-invisible-separators '(1 . 2)
-  "The number of spaces to be placed before and after separators.
-This option applies when the column separators have been made invisible."
-  :group 'org-table
-  :type '(cons (number :tag "Before \"|\"") (number :tag " After \"|\"")))
+(defcustom org-tags-match-list-sublevels nil
+  "Non-nil means list also sublevels of headlines matching tag search.
+Because of tag inheritance (see variable `org-use-tag-inheritance'),
+the sublevels of a headline matching a tag search often also match
+the same search.  Listing all of them can create very long lists.
+Setting this variable to nil causes subtrees of a match to be skipped.
+This option is off by default, because inheritance in on.  If you turn
+inheritance off, you very likely want to turn this option on.
 
-(defcustom org-table-number-regexp "^[<>]?[-+^.0-9]*[0-9][-+^.0-9eEdDx()%]*$"
-  "Regular expression for recognizing numbers in table columns.
-If a table column contains mostly numbers, it will be aligned to the
-right.  If not, it will be aligned to the left.
+As a special case, if the tag search is restricted to TODO items, the
+value of this variable is ignored and sublevels are always checked, to
+make sure all corresponding TODO items find their way into the list."
+  :group 'org-tags
+  :type 'boolean)
 
-The default value of this option is a regular expression which allows
-anything which looks remotely like a number as used in scientific
-context.  For example, all of the following will be considered a
-number:
-    12    12.2    2.4e-08    2x10^12    4.034+-0.02    2.7(10)  >3.5
+(defvar org-tags-history nil
+  "History of minibuffer reads for tags.")
+(defvar org-last-tags-completion-table nil
+  "The last used completion table for tags.")
 
-Other options offered by the customize interface are more restrictive."
-  :group 'org-table
+(defgroup org-agenda nil
+  "Options concerning agenda display Org-mode."
+  :tag "Org Agenda"
+  :group 'org)
+
+(defvar org-category nil
+  "Variable used by org files to set a category for agenda display.
+Such files should use a file variable to set it, for example
+
+   -*- mode: org; org-category: \"ELisp\"
+
+or contain a special line
+
+#+CATEGORY: ELisp
+
+If the file does not specify a category, then file's base name
+is used instead.")
+(make-variable-buffer-local 'org-category)
+
+(defcustom org-agenda-files nil
+  "The files to be used for agenda display.
+Entries may be added to this list with \\[org-agenda-file-to-front] and removed with
+\\[org-remove-file].  You can also use customize to edit the list.
+
+If the value of the variable is not a list but a single file name, then
+the list of agenda files is actually stored and maintained in that file, one
+agenda file per line."
+  :group 'org-agenda
   :type '(choice
-         (const :tag "Positive Integers"
-                "^[0-9]+$")
-         (const :tag "Integers"
-                "^[-+]?[0-9]+$")
-         (const :tag "Floating Point Numbers"
-                "^[-+]?\\([0-9]*\\.[0-9]+\\|[0-9]+\\.[0-9]*\\)$")
-         (const :tag "Floating Point Number or Integer"
-                "^[-+]?\\([0-9]*\\.[0-9]+\\|[0-9]+\\.?[0-9]*\\)$")
-         (const :tag "Exponential, Floating point, Integer"
-                "^[-+]?[0-9.]+\\([eEdD][-+0-9]+\\)?$")
-         (const :tag "Very General Number-Like"
-                "^[<>]?[-+^.0-9]*[0-9][-+^.0-9eEdDx()%]*$")
-         (string :tag "Regexp:")))
+         (repeat :tag "List of files" file)
+         (file :tag "Store list in a file\n" :value "~/.agenda_files")))
 
-(defcustom org-table-number-fraction 0.5
-  "Fraction of numbers in a column required to make the column align right.
-In a column all non-white fields are considered.  If at least this
-fraction of fields is matched by `org-table-number-fraction',
-alignment to the right border applies."
-  :group 'org-table
-  :type 'number)
+(defcustom org-agenda-custom-commands '(("w" todo "WAITING"))
+  "Custom commands for the agenda.
+These commands will be offered on the splash screen displayed by the
+agenda dispatcher \\[org-agenda].  Each entry is a list of 3 items:
 
-(defcustom org-export-highlight-first-table-line t
-  "Non-nil means, highlight the first table line.
-In HTML export, this means use <th> instead of <td>.
-In tables created with table.el, this applies to the first table line.
-In Org-mode tables, all lines before the first horizontal separator
-line will be formatted with <th> tags."
-  :group 'org-table
+key    The key (a single char as a string) to be associated with the command.
+type   The command type, any of the following symbols:
+        todo        Entries with a specific TODO keyword, in all agenda files.
+        tags        Tags match in all agenda files.
+        tags-todo   Tags match in all agenda files, TODO entries only.
+        todo-tree   Sparse tree of specific TODO keyword in *current* file.
+        tags-tree   Sparse tree with all tags matches in *current* file.
+        occur-tree  Occur sparse tree for current file.
+match  What to search for:
+        - a single keyword for TODO keyword searches
+        - a tags match expression for tags searches
+        - a regular expression for occur searches"
+  :group 'org-agenda
+  :type '(repeat
+         (list (string :tag "Key")
+               (choice :tag "Type"
+                       (const :tag "Tags search in all agenda files" tags)
+                       (const :tag "Tags search of TODO entries, all agenda files" tags-todo)
+                       (const :tag "TODO keyword search in all agenda files" todo)
+                       (const :tag "Tags sparse tree in current buffer" tags-tree)
+                       (const :tag "TODO keyword tree in current buffer" todo-tree)
+                       (const :tag "Occur tree in current buffer" occur-tree))
+               (string :tag "Match"))))
+
+(defcustom org-agenda-todo-list-sublevels t
+  "Non-nil means, check also the sublevels of a TODO entry for TODO entries.
+When nil, the sublevels of a TODO entry are not checked, resulting in
+potentially much shorter TODO lists."
+  :group 'org-agenda
+  :group 'org-todo
   :type 'boolean)
 
-(defcustom org-table-tab-recognizes-table.el t
-  "Non-nil means, TAB will automatically notice a table.el table.
-When it sees such a table, it moves point into it and - if necessary -
-calls `table-recognize-table'."
-  :group 'org-table
+(defcustom org-agenda-todo-ignore-scheduled nil
+  "Non-nil means, don't show scheduled entries in the global todo list.
+The idea behind this is that by scheduling it, you have already taken care
+of this item."
+  :group 'org-agenda
+  :group 'org-todo
   :type 'boolean)
 
-(defgroup org-table-calculation nil
-  "Options concerning tables in Org-mode."
-  :tag "Org Table Calculation"
-  :group 'org)
+(defcustom org-agenda-include-all-todo nil
+  "Non-nil means, the agenda will always contain all TODO entries.
+When nil, date-less entries will only be shown if `org-agenda' is called
+with a prefix argument.
+When non-nil, the TODO entries will be listed at the top of the agenda, before
+the entries for specific days."
+  :group 'org-agenda
+  :type 'boolean)
 
-(defcustom org-table-copy-increment t
-  "Non-nil means, increment when copying current field with \\[org-table-copy-down]."
-  :group 'org-table-calculation
+(defcustom org-agenda-include-diary nil
+  "If non-nil, include in the agenda entries from the Emacs Calendar's diary."
+  :group 'org-agenda
   :type 'boolean)
 
-(defcustom org-calc-default-modes
-  '(calc-internal-prec 12
-    calc-float-format  (float 5)
-    calc-angle-mode    deg
-    calc-prefer-frac   nil
-    calc-symbolic-mode nil
-    calc-date-format (YYYY "-" MM "-" DD " " Www (" " HH ":" mm))
-    calc-display-working-message t
-    )
-  "List with Calc mode settings for use in calc-eval for table formulas.
-The list must contain alternating symbols (Calc modes variables and values).
-Don't remove any of the default settings, just change the values.  Org-mode
-relies on the variables to be present in the list."
-  :group 'org-table-calculation
-  :type 'plist)
+(defcustom org-calendar-to-agenda-key [?c]
+  "The key to be installed in `calendar-mode-map' for switching to the agenda.
+The command `org-calendar-goto-agenda' will be bound to this key.  The
+default is the character `c' because then `c' can be used to switch back and
+forth between agenda and calendar."
+  :group 'org-agenda
+  :type 'sexp)
 
-(defcustom org-table-formula-evaluate-inline t
-  "Non-nil means, TAB and RET evaluate a formula in current table field.
-If the current field starts with an equal sign, it is assumed to be a formula
-which should be evaluated as described in the manual and in the documentation
-string of the command `org-table-eval-formula'.  This feature requires the
-Emacs calc package.
-When this variable is nil, formula calculation is only available through
-the command \\[org-table-eval-formula]."
-  :group 'org-table-calculation
+(defgroup org-agenda-setup nil
+  "Options concerning setting up the Agenda window in Org Mode."
+  :tag "Org Agenda Window Setup"
+  :group 'org-agenda)
+
+(defcustom org-agenda-mouse-1-follows-link nil
+  "Non-nil means, mouse-1 on a link will follow the link in the agenda.
+A longer mouse click will still set point.  Does not wortk on XEmacs.
+Needs to be set before org.el is loaded."
+  :group 'org-agenda-setup
+  :type 'boolean)
+
+(defcustom org-agenda-start-with-follow-mode nil
+  "The initial value of follwo-mode in a newly created agenda window."
+  :group 'org-agenda-setup
+  :type 'boolean)
+
+(defcustom org-select-agenda-window t
+  "Non-nil means, after creating an agenda, move cursor into Agenda window.
+When nil, cursor will remain in the current window."
+  :group 'org-agenda-setup
+  :type 'boolean)
+
+(defcustom org-fit-agenda-window t
+  "Non-nil means, change window size of agenda to fit content."
+  :group 'org-agenda-setup
+  :type 'boolean)
+
+(defgroup org-agenda-display nil
+  "Options concerning what to display initially in Agenda."
+  :tag "Org Agenda Display"
+  :group 'org-agenda)
+
+(defcustom org-agenda-show-all-dates t
+  "Non-nil means, `org-agenda' shows every day in the selected range.
+When nil, only the days which actually have entries are shown."
+  :group 'org-agenda-display
+  :type 'boolean)
+
+(defcustom org-agenda-start-on-weekday 1
+  "Non-nil means, start the overview always on the specified weekday.
+0 denotes Sunday, 1 denotes Monday etc.
+When nil, always start on the current day."
+  :group 'org-agenda-display
+  :type '(choice (const :tag "Today" nil)
+                (number :tag "Weekday No.")))
+
+(defcustom org-agenda-ndays 7
+  "Number of days to include in overview display.
+Should be 1 or 7."
+  :group 'org-agenda-display
+  :type 'number)
+
+(defcustom org-agenda-use-time-grid t
+  "Non-nil means, show a time grid in the agenda schedule.
+A time grid is a set of lines for specific times (like every two hours between
+8:00 and 20:00).  The items scheduled for a day at specific times are
+sorted in between these lines.
+For details about when the grid will be shown, and what it will look like, see
+the variable `org-agenda-time-grid'."
+  :group 'org-agenda-display
+  :type 'boolean)
+
+(defcustom org-agenda-time-grid
+  '((daily today require-timed)
+    "----------------"
+    (800 1000 1200 1400 1600 1800 2000))
+
+  "The settings for time grid for agenda display.
+This is a list of three items.  The first item is again a list.  It contains
+symbols specifying conditions when the grid should be displayed:
+
+ daily         if the agenda shows a single day
+ weekly        if the agenda shows an entire week
+ today         show grid on current date, independent of daily/weekly display
+ require-timed show grid only if at least on item has a time specification
+
+The second item is a string which will be places behing the grid time.
+
+The third item is a list of integers, indicating the times that should have
+a grid line."
+  :group 'org-agenda-display
+  :type
+  '(list
+    (set :greedy t :tag "Grid Display Options"
+        (const :tag "Show grid in single day agenda display" daily)
+        (const :tag "Show grid in weekly agenda display" weekly)
+        (const :tag "Always show grid for today" today)
+        (const :tag "Show grid only if any timed entries are present"
+               require-timed)
+        (const :tag "Skip grid times already present in an entry"
+               remove-match))
+    (string :tag "Grid String")
+    (repeat :tag "Grid Times" (integer :tag "Time"))))
+
+(defcustom org-agenda-sorting-strategy '(time-up category-keep priority-down)
+  "Sorting structure for the agenda items of a single day.
+This is a list of symbols which will be used in sequence to determine
+if an entry should be listed before another entry.  The following
+symbols are recognized:
+
+time-up         Put entries with time-of-day indications first, early first
+time-down       Put entries with time-of-day indications first, late first
+category-keep   Keep the default order of categories, corresponding to the
+               sequence in `org-agenda-files'.
+category-up     Sort alphabetically by category, A-Z.
+category-down   Sort alphabetically by category, Z-A.
+priority-up     Sort numerically by priority, high priority last.
+priority-down   Sort numerically by priority, high priority first.
+
+The different possibilities will be tried in sequence, and testing stops
+if one comparison returns a \"not-equal\".  For example, the default
+    '(time-up category-keep priority-down)
+means: Pull out all entries having a specified time of day and sort them,
+in order to make a time schedule for the current day the first thing in the
+agenda listing for the day.  Of the entries without a time indication, keep
+the grouped in categories, don't sort the categories, but keep them in
+the sequence given in `org-agenda-files'.  Within each category sort by
+priority.
+
+Leaving out `category-keep' would mean that items will be sorted across
+categories by priority."
+  :group 'org-agenda-display
+  :type '(repeat
+         (choice
+          (const time-up)
+          (const time-down)
+          (const category-keep)
+          (const category-up)
+          (const category-down)
+          (const priority-up)
+          (const priority-down))))
+
+(defcustom org-sort-agenda-notime-is-late t
+  "Non-nil means, items without time are considered late.
+This is only relevant for sorting.  When t, items which have no explicit
+time like 15:30 will be considered as 99:01, i.e. later than any items which
+do have a time.  When nil, the default time is before 0:00.  You can use this
+option to decide if the schedule for today should come before or after timeless
+agenda entries."
+  :group 'org-agenda-display
   :type 'boolean)
 
 
-(defcustom org-table-formula-use-constants t
-  "Non-nil means, interpret constants in formulas in tables.
-A constant looks like `$c' or `$Grav' and will be replaced before evaluation
-by the value given in `org-table-formula-constants', or by a value obtained
-from the `constants.el' package."
-  :group 'org-table-calculation
-  :type 'boolean)
+(defgroup org-agenda-prefix nil
+  "Options concerning the entry prefix in the Org-mode agenda display."
+  :tag "Org Agenda Prefix"
+  :group 'org-agenda)
+
+(defcustom org-agenda-prefix-format "  %-12:c%?-12t% s"
+  "Format specification for the prefix of items in the agenda buffer.
+This format works similar to a printf format, with the following meaning:
+
+  %c   the category of the item, \"Diary\" for entries from the diary, or
+       as given by the CATEGORY keyword or derived from the file name.
+  %T   the first tag of the item.
+  %t   the time-of-day specification if one applies to the entry, in the
+       format HH:MM
+  %s   Scheduling/Deadline information, a short string
+
+All specifiers work basically like the standard `%s' of printf, but may
+contain two additional characters:  A question mark just after the `%' and
+a whitespace/punctuation character just before the final letter.
+
+If the first character after `%' is a question mark, the entire field
+will only be included if the corresponding value applies to the
+current entry.  This is useful for fields which should have fixed
+width when present, but zero width when absent.  For example,
+\"%?-12t\" will result in a 12 character time field if a time of the
+day is specified, but will completely disappear in entries which do
+not contain a time.
+
+If there is punctuation or whitespace character just before the final
+format letter, this character will be appended to the field value if
+the value is not empty.  For example, the format \"%-12:c\" leads to
+\"Diary: \" if the category is \"Diary\".  If the category were be
+empty, no additional colon would be interted.
+
+The default value of this option is \"  %-12:c%?-12t% s\", meaning:
+- Indent the line with two space characters
+- Give the category in a 12 chars wide field, padded with whitespace on
+  the right (because of `-').  Append a colon if there is a category
+  (because of `:').
+- If there is a time-of-day, put it into a 12 chars wide field.  If no
+  time, don't put in an empty field, just skip it (because of '?').
+- Finally, put the scheduling information and append a whitespace.
+
+As another example, if you don't want the time-of-day of entries in
+the prefix, you could use:
+
+  (setq org-agenda-prefix-format \"  %-11:c% s\")
+
+See also the variables `org-agenda-remove-times-when-in-prefix' and
+`org-agenda-remove-tags-when-in-prefix'."
+  :type 'string
+  :group 'org-agenda-prefix)
+
+(defvar org-prefix-format-compiled nil
+  "The compiled version of the most recently used prefix format.
+Depending on which command was used last, this may be the compiled version
+of `org-agenda-prefix-format' or `org-timeline-prefix-format'.")
+
+(defcustom org-agenda-remove-times-when-in-prefix t
+  "Non-nil means, remove duplicate time specifications in agenda items.
+When the format `org-agenda-prefix-format' contains a `%t' specifier, a
+time-of-day specification in a headline or diary entry is extracted and
+placed into the prefix.  If this option is non-nil, the original specification
+\(a timestamp or -range, or just a plain time(range) specification like
+11:30-4pm) will be removed for agenda display.  This makes the agenda less
+cluttered.
+The option can be t or nil.  It may also be the symbol `beg', indicating
+that the time should only be removed what it is located at the beginning of
+the headline/diary entry."
+  :group 'org-agenda-prefix
+  :type '(choice
+         (const :tag "Always" t)
+         (const :tag "Never" nil)
+         (const :tag "When at beginning of entry" beg)))
+
+(defcustom org-agenda-remove-tags-when-in-prefix nil
+  "Non-nil means, remove the tags from the headline copy in the agenda.
+When this is the symbol `prefix', only remove tags when
+`org-agenda-prefix-format' contains a `%T' specifier."
+  :group 'org-agenda-prefix
+  :type '(choice
+         (const :tag "Always" t)
+         (const :tag "Never" nil)
+         (const :tag "When prefix format contains %T" prefix)))
+
+(defgroup org-agenda-timeline nil
+  "Options concerning the timeline buffer in Org Mode."
+  :tag "Org Agenda Timeline"
+  :group 'org-agenda)
 
-(defcustom org-table-formula-constants nil
-  "Alist with constant names and values, for use in table formulas.
-The car of each element is a name of a constant, without the `$' before it.
-The cdr is the value as a string.  For example, if you'd like to use the
-speed of light in a formula, you would configure
+(defcustom org-timeline-prefix-format "  % s"
+  "Like `org-agenda-prefix-format', but for the timeline of a single file."
+  :type 'string
+  :group 'org-agenda-timeline)
 
-  (setq org-table-formula-constants '((\"c\" . \"299792458.\")))
+(defcustom org-select-timeline-window t
+  "Non-nil means, after creating a timeline, move cursor into Timeline window.
+When nil, cursor will remain in the current window."
+  :group 'org-agenda-timeline
+  :type 'boolean)
 
-and then use it in an equation like `$1*$c'."
-  :group 'org-table-calculation
-  :type '(repeat
-         (cons (string :tag "name")
-               (string :tag "value"))))
+(defcustom org-timeline-show-empty-dates 3
+  "Non-nil means, `org-timeline' also shows dates without an entry.
+When nil, only the days which actually have entries are shown.
+When t, all days between the first and the last date are shown.
+When an integer, show also empty dates, but if there is a gap of more than
+N days, just insert a special line indicating the size of the gap."
+  :group 'org-agenda-timeline
+  :type '(choice
+         (const :tag "None" nil)
+         (const :tag "All" t)
+         (number :tag "at most")))
 
-(defcustom org-table-formula-numbers-only nil
-  "Non-nil means, calculate only with numbers in table formulas.
-Then all input fields will be converted to a number, and the result
-must also be a number.  When nil, calc's full potential is available
-in table calculations, including symbolics etc."
-  :group 'org-table-calculation
-  :type 'boolean)
+(defgroup org-latex nil
+  "Options for embedding LaTeX code into Org-mode"
+  :tag "Org LaTeX"
+  :group 'org)
 
-(defcustom org-table-allow-automatic-line-recalculation t
-  "Non-nil means, lines marked with |#| or |*| will be recomputed automatically.
-Automatically means, when TAB or RET or C-c C-c are pressed in the line."
-  :group 'org-table-calculation
-  :type 'boolean)
+(defcustom org-format-latex-options
+  '(:foreground "Black" :background "Transparent" :scale 1.0
+               :matchers ("begin" "$" "$$" "\\(" "\\["))
+  "Options for creating images from LaTeX fragments.
+This is a property list with the following properties:
+:foreground  the foreground color, for example \"Black\".
+:background  the background color, or \"Transparent\".
+:scale       a scaling factor for the size of the images
+:matchers    a list indicating which matchers should be used to
+             find LaTeX fragments.  Valid members of this list are:
+             \"begin\"  find environments
+             \"$\"      find math expressions surrounded by $...$
+             \"$$\"     find math expressions surrounded by $$....$$
+             \"\\(\"     find math expressions surrounded by \\(...\\)
+             \"\\ [\"    find math expressions surrounded by \\ [...\\]"
+  :group 'org-latex
+  :type 'plist)
 
 (defgroup org-export nil
   "Options for exporting org-listings."
   :tag "Org Export"
   :group 'org)
 
+(defgroup org-export-general nil
+  "General options for exporting Org-mode files."
+  :tag "Org Export General"
+  :group 'org-export)
+
+(defcustom org-export-publishing-directory "."
+  "Path to the location where exported files should be located.
+This path may be relative to the directory where the Org-mode file lives.
+The default is to put them into the same directory as the Org-mode file.
+The variable may also be an alist with export types `:html', `:ascii',
+`:ical', or `:xoxo' and the corresponding directories.  If a direcoty path
+is relative, it is interpreted relative to the directory where the exported
+Org-mode files lives."
+  :group 'org-export-general
+  :type '(choice
+         (directory)
+         (repeat
+          (cons
+           (choice :tag "Type"
+                   (const :html) (const :ascii) (const :ical) (const :xoxo))
+           (directory)))))
+
 (defcustom org-export-language-setup
   '(("en"  "Author"          "Date"  "Table of Contents")
+    ("cs"  "Autor"           "Datum" "Obsah")
     ("da"  "Ophavsmand"      "Dato"  "Indhold")
     ("de"  "Autor"           "Datum" "Inhaltsverzeichnis")
     ("es"  "Autor"           "Fecha" "\xccndice")
@@ -1423,7 +1842,7 @@ Automatically means, when TAB or RET or C-c C-c are pressed in the line."
   "Terms used in export text, translated to different languages.
 Use the variable `org-export-default-language' to set the language,
 or use the +OPTION lines for a per-file setting."
-  :group 'org-export
+  :group 'org-export-general
   :type '(repeat
          (list
           (string :tag "HTML language tag")
@@ -1434,9 +1853,254 @@ or use the +OPTION lines for a per-file setting."
 (defcustom org-export-default-language "en"
   "The default language of HTML export, as a string.
 This should have an association in `org-export-language-setup'."
-  :group 'org-export
+  :group 'org-export-general
   :type 'string)
 
+(defcustom org-export-headline-levels 3
+  "The last level which is still exported as a headline.
+Inferior levels will produce itemize lists when exported.
+Note that a numeric prefix argument to an exporter function overrides
+this setting.
+
+This option can also be set with the +OPTIONS line, e.g. \"H:2\"."
+  :group 'org-export-general
+  :type 'number)
+
+(defcustom org-export-with-section-numbers t
+  "Non-nil means, add section numbers to headlines when exporting.
+
+This option can also be set with the +OPTIONS line, e.g. \"num:t\"."
+  :group 'org-export-general
+  :type 'boolean)
+
+(defcustom org-export-with-toc t
+  "Non-nil means, create a table of contents in exported files.
+The TOC contains headlines with levels up to`org-export-headline-levels'.
+
+Headlines which contain any TODO items will be marked with \"(*)\" in
+ASCII export, and with red color in HTML output.
+
+In HTML output, the TOC will be clickable.
+
+This option can also be set with the +OPTIONS line, e.g. \"toc:nil\"."
+  :group 'org-export-general
+  :type 'boolean)
+
+(defcustom org-export-mark-todo-in-toc nil
+  "Non-nil means, mark TOC lines that contain any open TODO items."
+  :group 'org-export-general
+  :type 'boolean)
+
+(defcustom org-export-preserve-breaks nil
+  "Non-nil means, preserve all line breaks when exporting.
+Normally, in HTML output paragraphs will be reformatted.  In ASCII
+export, line breaks will always be preserved, regardless of this variable.
+
+This option can also be set with the +OPTIONS line, e.g. \"\\n:t\"."
+  :group 'org-export-general
+  :type 'boolean)
+
+(defcustom org-export-with-archived-trees 'headline
+  "Whether subtrees with the ARCHIVE tag should be exported.
+This can have three different values
+nil       Do not export, pretend this tree is not present
+t         Do export the entire tree
+headline  Only export the headline, but skip the tree below it."
+  :group 'org-export-general
+  :group 'org-archive
+  :type '(choice
+         (const :tag "not at all" nil)
+         (const :tag "headline only" 'headline)
+         (const :tag "entirely" t)))
+
+(defcustom org-export-with-timestamps t
+  "Nil means, do not export time stamps and associated keywords."
+  :group 'org-export
+  :type 'boolean)
+
+(defcustom org-export-remove-timestamps-from-toc t
+  "Nil means, remove timestamps from the table of contents entries."
+  :group 'org-export
+  :type 'boolean)
+
+(defcustom org-export-with-tags t
+  "Nil means, do not export tags, just remove them from headlines."
+  :group 'org-export-general
+  :type 'boolean)
+
+(defcustom org-export-with-timestamps t
+  "Nil means, do not export timestamps and associated keywords."
+  :group 'org-export-general
+  :type 'boolean)
+
+(defgroup org-export-translation nil
+  "Options for translating special ascii sequences for the export backends."
+  :tag "Org Export Translation"
+  :group 'org-export)
+
+(defcustom org-export-with-emphasize t
+  "Non-nil means, interpret *word*, /word/, and _word_ as emphasized text.
+If the export target supports emphasizing text, the word will be
+typeset in bold, italic, or underlined, respectively.  Works only for
+single words, but you can say: I *really* *mean* *this*.
+Not all export backends support this.
+
+This option can also be set with the +OPTIONS line, e.g. \"*:nil\"."
+  :group 'org-export-translation
+  :type 'boolean)
+
+(defcustom org-export-with-sub-superscripts t
+  "Non-nil means, interpret \"_\" and \"^\" for export.
+When this option is turned on, you can use TeX-like syntax for sub- and
+superscripts.  Several characters after \"_\" or \"^\" will be
+considered as a single item - so grouping with {} is normally not
+needed.  For example, the following things will be parsed as single
+sub- or superscripts.
+
+ 10^24   or   10^tau     several digits will be considered 1 item.
+ 10^-12  or   10^-tau    a leading sign with digits or a word
+ x^2-y^3                 will be read as x^2 - y^3, because items are
+                        terminated by almost any nonword/nondigit char.
+ x_{i^2} or   x^(2-i)    braces or parenthesis do grouping.
+
+Still, ambiguity is possible - so when in doubt use {} to enclose the
+sub/superscript.
+Not all export backends support this, but HTML does.
+
+This option can also be set with the +OPTIONS line, e.g. \"^:nil\"."
+  :group 'org-export-translation
+  :type 'boolean)
+
+(defcustom org-export-with-TeX-macros t
+  "Non-nil means, interpret simple TeX-like macros when exporting.
+For example, HTML export converts \\alpha to &alpha; and \\AA to &Aring;.
+No only real TeX macros will work here, but the standard HTML entities
+for math can be used as macro names as well.  For a list of supported
+names in HTML export, see the constant `org-html-entities'.
+Not all export backends support this.
+
+This option can also be set with the +OPTIONS line, e.g. \"TeX:nil\"."
+  :group 'org-export-translation
+  :group 'org-latex
+  :type 'boolean)
+
+(defcustom org-export-with-LaTeX-fragments nil
+  "Non-nil means, convert LaTeX fragments to images when exporting to HTML.
+When set, the exporter will find LaTeX environments if the \\begin line is
+the first non-white thing on a line.  It will also find the math delimiters
+like $a=b$ and \\( a=b \\) for inline math,  $$a=b$$ and \\[ a=b \\] for
+display math.
+
+This option can also be set with the +OPTIONS line, e.g. \"LaTeX:t\"."
+  :group 'org-export-translation
+  :group 'org-latex
+  :type 'boolean)
+
+(defcustom org-export-with-fixed-width t
+  "Non-nil means, lines starting with \":\" will be in fixed width font.
+This can be used to have pre-formatted text, fragments of code etc.  For
+example:
+  : ;; Some Lisp examples
+  : (while (defc cnt)
+  :   (ding))
+will be looking just like this in also HTML.  See also the QUOTE keyword.
+Not all export backends support this.
+
+This option can also be set with the +OPTIONS line, e.g. \"::nil\"."
+  :group 'org-export-translation
+  :type 'boolean)
+
+(defcustom org-match-sexp-depth 3
+  "Number of stacked braces for sub/superscript matching.
+This has to be set before loading org.el to be effective."
+  :group 'org-export-translation
+  :type 'integer)
+
+(defgroup org-export-tables nil
+  "Options for exporting tables in Org-mode."
+  :tag "Org Export Tables"
+  :group 'org-export)
+
+(defcustom org-export-with-tables t
+  "If non-nil, lines starting with \"|\" define a table.
+For example:
+
+  | Name        | Address  | Birthday  |
+  |-------------+----------+-----------|
+  | Arthur Dent | England  | 29.2.2100 |
+
+Not all export backends support this.
+
+This option can also be set with the +OPTIONS line, e.g. \"|:nil\"."
+  :group 'org-export-tables
+  :type 'boolean)
+
+(defcustom org-export-highlight-first-table-line t
+  "Non-nil means, highlight the first table line.
+In HTML export, this means use <th> instead of <td>.
+In tables created with table.el, this applies to the first table line.
+In Org-mode tables, all lines before the first horizontal separator
+line will be formatted with <th> tags."
+  :group 'org-export-tables
+  :type 'boolean)
+
+(defcustom org-export-table-remove-special-lines t
+  "Remove special lines and marking characters in calculating tables.
+This removes the special marking character column from tables that are set
+up for spreadsheet calculations.  It also removes the entire lines
+marked with `!', `_', or `^'.  The lines with `$' are kept, because
+the values of constants may be useful to have."
+  :group 'org-export-tables
+  :type 'boolean)
+
+(defcustom org-export-prefer-native-exporter-for-tables nil
+  "Non-nil means, always export tables created with table.el natively.
+Natively means, use the HTML code generator in table.el.
+When nil, Org-mode's own HTML generator is used when possible (i.e. if
+the table does not use row- or column-spanning).  This has the
+advantage, that the automatic HTML conversions for math symbols and
+sub/superscripts can be applied.  Org-mode's HTML generator is also
+much faster."
+  :group 'org-export-tables
+  :type 'boolean)
+
+(defgroup org-export-ascii nil
+  "Options specific for ASCII export of Org-mode files."
+  :tag "Org Export ASCII"
+  :group 'org-export)
+
+(defcustom org-export-ascii-underline '(?\$ ?\# ?^ ?\~ ?\= ?\-)
+  "Characters for underlining headings in ASCII export.
+In the given sequence, these characters will be used for level 1, 2, ..."
+  :group 'org-export-ascii
+  :type '(repeat character))
+
+(defcustom org-export-ascii-bullets '(?* ?+ ?-)
+  "Bullet characters for headlines converted to lists in ASCII export.
+The first character is is used for the first lest level generated in this
+way, and so on.  If there are more levels than characters given here,
+the list will be repeated.
+Note that plain lists will keep the same bullets as the have in the
+Org-mode file."
+  :group 'org-export-ascii
+  :type '(repeat character))
+
+(defcustom org-export-ascii-show-new-buffer t
+  "Non-nil means, popup buffer containing the exported ASCII text.
+Otherwise the buffer will just be saved to a file and stay hidden."
+  :group 'org-export-ascii
+  :type 'boolean)
+
+(defgroup org-export-xml nil
+  "Options specific for XML export of Org-mode files."
+  :tag "Org Export XML"
+  :group 'org-export)
+
+(defgroup org-export-html nil
+  "Options specific for HTML export of Org-mode files."
+  :tag "Org Export HTML"
+  :group 'org-export)
+
 (defcustom org-export-html-style
 "<style type=\"text/css\">
   html {
@@ -1444,8 +2108,11 @@ This should have an association in `org-export-language-setup'."
        font-size: 12pt;
   }
   .title { text-align: center; }
-  .todo, .deadline { color: red; }
+  .todo  { color: red; }
   .done { color: green; }
+  .timestamp { color: grey }
+  .timestamp-kwd { color: CadetBlue }
+  .tag { background-color:lightblue; font-weight:normal }
   .target { background-color: lavender; }
   pre {
        border: 1pt solid #AEBDCC;
@@ -1480,77 +2147,41 @@ or, if you want to keep the style in a file,
 
 As the value of this option simply gets inserted into the HTML <head> header,
 you can \"misuse\" it to add arbitrary text to the header."
-  :group 'org-export
+  :group 'org-export-html
   :type 'string)
 
-(defcustom org-export-headline-levels 3
-  "The last level which is still exported as a headline.
-Inferior levels will produce itemize lists when exported.
-Note that a numeric prefix argument to an exporter function overrides
-this setting.
-
-This option can also be set with the +OPTIONS line, e.g. \"H:2\"."
-  :group 'org-export
-  :type 'number)
-
-(defcustom org-export-with-section-numbers t
-  "Non-nil means, add section numbers to headlines when exporting.
-
-This option can also be set with the +OPTIONS line, e.g. \"num:t\"."
-  :group 'org-export
-  :type 'boolean)
-
-(defcustom org-export-with-toc t
-  "Non-nil means, create a table of contents in exported files.
-The TOC contains headlines with levels up to`org-export-headline-levels'.
-
-Headlines which contain any TODO items will be marked with \"(*)\" in
-ASCII export, and with red color in HTML output.
-
-In HTML output, the TOC will be clickable.
-
-This option can also be set with the +OPTIONS line, e.g. \"toc:nil\"."
-  :group 'org-export
-  :type 'boolean)
-
-(defcustom org-export-plain-list-max-depth 20
-  "Maximum depth of hand-formatted lists in HTML export.
-
-Org-mode parses hand-formatted enumeration and bullet lists and
-transforms them to HTML open export.  Different indentation of the
-bullet or number indicates different list nesting levels.  To avoid
-confusion, only a single level is allowed by default.  When this is
-larger than 1, deeper indentation leads to deeper list nesting.  For
-example, the default value of 3 allows the following list to be
-formatted correctly in HTML:
-
-  * Fruit
-    - Apple
-    - Banana
-      1. from Africa
-      2. from South America
-    - Pineapple
-  * Bread
-  * Dairy products"
-  :group 'org-export
-  :type 'integer)
-
-(defcustom org-export-preserve-breaks nil
-  "Non-nil means, preserve all line breaks when exporting.
-Normally, in HTML output paragraphs will be reformatted.  In ASCII
-export, line breaks will always be preserved, regardless of this variable.
-
-This option can also be set with the +OPTIONS line, e.g. \"\\n:t\"."
-  :group 'org-export
+(defcustom org-export-html-title-format "<h1 class=\"title\">%s</h1>\n"
+  "Format for typesetting the document title in HTML export."
+  :group 'org-export-html
+  :type 'string)
+
+(defcustom org-export-html-toplevel-hlevel 2
+  "The <H> level for level 1 headings in HTML export."
+  :group 'org-export-html
+  :type 'string)
+
+(defcustom org-export-html-link-org-files-as-html t
+  "Non-nil means, make file links to `file.org' point to `file.html'.
+When org-mode is exporting an org-mode file to HTML, links to
+non-html files are directly put into a href tag in HTML.
+However, links to other Org-mode files (recognized by the
+extension `.org.) should become links to the corresponding html
+file, assuming that the linked org-mode file will also be
+converted to HTML.
+When nil, the links still point to the plain `.org' file."
+  :group 'org-export-html
   :type 'boolean)
 
-(defcustom org-export-html-inline-images t
+(defcustom org-export-html-inline-images 'maybe
   "Non-nil means, inline images into exported HTML pages.
-The link will still be to the original location of the image file.
-So if you are moving the page, lets say to your public HTML site,
-you will have to move the image and maybe change the link."
-  :group 'org-export
-  :type 'boolean)
+This is done using an <img> tag.  When nil, an anchor with href is used to
+link to the image.  If this option is `maybe', then images in links with
+an empty description will be inlined, while images with a description will
+be linked only."
+  :group 'org-export-html
+  :type '(choice (const :tag "Never" nil)
+                (const :tag "Always" t)
+                (const :tag "When there is no description" maybe)))
 
 (defcustom org-export-html-expand t
   "Non-nil means, for HTML export, treat @<...> as HTML tag.
@@ -1558,368 +2189,543 @@ When nil, these tags will be exported as plain text and therefore
 not be interpreted by a browser.
 
 This option can also be set with the +OPTIONS line, e.g. \"@:nil\"."
-  :group 'org-export
-  :type 'boolean)
-
-(defcustom org-export-with-fixed-width t
-  "Non-nil means, lines starting with \":\" will be in fixed width font.
-This can be used to have pre-formatted text, fragments of code etc.  For
-example:
-  : ;; Some Lisp examples
-  : (while (defc cnt)
-  :   (ding))
-will be looking just like this in also HTML.  In ASCII export, this option
-has no effect.
-
-This option can also be set with the +OPTIONS line, e.g. \"::nil\"."
-  :group 'org-export
-  :type 'boolean)
-
-(defcustom org-export-with-tables t
-  "If non-nil, lines starting with \"|\" define a table.
-For example:
-
-  | Name        | Address  | Birthday  |
-  |-------------+----------+-----------|
-  | Arthur Dent | England  | 29.2.2100 |
-
-In ASCII export, this option has no effect.
-
-This option can also be set with the +OPTIONS line, e.g. \"|:nil\"."
-  :group 'org-export
-  :type 'boolean)
-
-(defcustom org-export-table-remove-special-lines t
-  "Remove special lines and marking characters in calculating tables.
-This removes the special marking character column from tables that are set
-up for spreadsheet calculations.  It also removes the entire lines
-marked with `!', `_', or `^'.  The lines with `$' are kept, because
-the values of constants may be useful to have."
-  :group 'org-export
-  :type 'boolean)
-
-(defcustom org-export-prefer-native-exporter-for-tables nil
-  "Non-nil means, always export tables created with table.el natively.
-Natively means, use the HTML code generator in table.el.
-When nil, Org-mode's own HTML generator is used when possible (i.e. if
-the table does not use row- or column-spanning).  This has the
-advantage, that the automatic HTML conversions for math symbols and
-sub/superscripts can be applied.  Org-mode's HTML generator is also
-much faster."
-  :group 'org-export
+  :group 'org-export-html
   :type 'boolean)
 
 (defcustom org-export-html-table-tag
-  "<table border=1 cellspacing=0 cellpadding=6>"
+  "<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">"
   "The HTML tag used to start a table.
 This must be a <table> tag, but you may change the options like
 borders and spacing."
-  :group 'org-export
+  :group 'org-export-html
   :type 'string)
 
-(defcustom org-export-with-emphasize t
-  "Non-nil means, interpret *word*, /word/, and _word_ as emphasized text.
-If the export target supports emphasizing text, the word will be
-typeset in bold, italic, or underlined, respectively.  Works only for
-single words, but you can say: I *really* *mean* *this*.
-In ASCII export, this option has no effect.
-
-This option can also be set with the +OPTIONS line, e.g. \"*:nil\"."
-  :group 'org-export
-  :type 'boolean)
-
-(defcustom org-match-sexp-depth 3
-  "Number of stacked braces for sub/superscript matching.
-This has to be set before loading org.el to be effective."
-  :group 'org-export
-  :type 'integer)
-
-;; FIXME: Should () parens be removed as well in sub/superscripts?
-(defcustom org-export-with-sub-superscripts t
-  "Non-nil means, interpret \"_\" and \"^\" for export.
-When this option is turned on, you can use TeX-like syntax for sub- and
-superscripts.  Several characters after \"_\" or \"^\" will be
-considered as a single item - so grouping with {} is normally not
-needed.  For example, the following things will be parsed as single
-sub- or superscripts.
-
- 10^24   or   10^tau     several digits will be considered 1 item.
- 10^-12  or   10^-tau    a leading sign with digits or a word
- x^2-y^3                 will be read as x^2 - y^3, because items are
-                        terminated by almost any nonword/nondigit char.
- x_{i^2} or   x^(2-i)    braces or parenthesis do grouping.
-
-Still, ambiguity is possible - so when in doubt use {} to enclose the
-sub/superscript.
-In ASCII export, this option has no effect.
-
-This option can also be set with the +OPTIONS line, e.g. \"^:nil\"."
-  :group 'org-export
-  :type 'boolean)
-
-(defcustom org-export-with-TeX-macros t
-  "Non-nil means, interpret simple TeX-like macros when exporting.
-For example, HTML export converts \\alpha to &alpha; and \\AA to &Aring;.
-No only real TeX macros will work here, but the standard HTML entities
-for math can be used as macro names as well.  For a list of supported
-names in HTML export, see the constant `org-html-entities'.
-In ASCII export, this option has no effect.
-
-This option can also be set with the +OPTIONS line, e.g. \"TeX:nil\"."
-  :group 'org-export
-  :type 'boolean)
-
 (defcustom org-export-html-with-timestamp nil
   "If non-nil, write `org-export-html-html-helper-timestamp'
 into the exported HTML text.  Otherwise, the buffer will just be saved
 to a file."
-  :group 'org-export
+  :group 'org-export-html
   :type 'boolean)
 
 (defcustom org-export-html-html-helper-timestamp
-  "<br><br><hr><p><!-- hhmts start --> <!-- hhmts end -->\n"
+  "<br/><br/><hr><p><!-- hhmts start --> <!-- hhmts end --></p>\n"
   "The HTML tag used as timestamp delimiter for HTML-helper-mode."
-  :group 'org-export
+  :group 'org-export-html
   :type 'string)
 
-(defcustom org-export-ascii-show-new-buffer t
-  "Non-nil means, popup buffer containing the exported ASCII text.
-Otherwise the buffer will just be saved to a file and stay hidden."
-  :group 'org-export
-  :type 'boolean)
-
 (defcustom org-export-html-show-new-buffer nil
   "Non-nil means, popup buffer containing the exported html text.
 Otherwise, the buffer will just be saved to a file and stay hidden."
-  :group 'org-export
+  :group 'org-export-html
   :type 'boolean)
 
+(defgroup org-export-icalendar nil
+  "Options specific for iCalendar export of Org-mode files."
+  :tag "Org Export iCalendar"
+  :group 'org-export)
+
 (defcustom org-combined-agenda-icalendar-file "~/org.ics"
   "The file name for the iCalendar file covering all agenda files.
-This file is created with the command \\[org-export-icalendar-all-agenda-files]."
-  :group 'org-export
+This file is created with the command \\[org-export-icalendar-all-agenda-files].
+The file name should be absolute."
+  :group 'org-export-icalendar
   :type 'file)
 
 (defcustom org-icalendar-include-todo nil
   "Non-nil means, export to iCalendar files should also cover TODO items."
-  :group 'org-export
+  :group 'org-export-icalendar
   :type 'boolean)
 
 (defcustom org-icalendar-combined-name "OrgMode"
   "Calendar name for the combined iCalendar representing all agenda files."
-  :group 'org-export
+  :group 'org-export-icalendar
   :type 'string)
 
+(defgroup org-font-lock nil
+  "Font-lock settings for highlighting in Org-mode."
+  :tag "Org Font Lock"
+  :group 'org)
+
+(defcustom org-level-color-stars-only nil
+  "Non-nil means fontify only the stars in each headline.
+When nil, the entire headline is fontified.
+Changing it requires restart of `font-lock-mode' to become effective
+also in regions already fontified."
+  :group 'org-font-lock
+  :type 'boolean)
+
+(defcustom org-hide-leading-stars nil
+  "Non-nil means, hide the first N-1 stars in a headline.
+This works by using the face `org-hide' for these stars.  This
+face is white for a light background, and black for a dark
+background.  You may have to customize the face `org-hide' to
+make this work.
+Changing it requires restart of `font-lock-mode' to become effective
+also in regions already fontified.
+You may also set this on a per-file basis by adding one of the following
+lines to the buffer:
+
+   #+STARTUP: hidestars
+   #+STARTUP: showstars"
+  :group 'org-font-lock
+  :type 'boolean)
+
+(defcustom org-fontify-done-headline nil
+  "Non-nil means, change the face of a headline if it is marked DONE.
+Normally, only the TODO/DONE keyword indicates the state of a headline.
+When this is non-nil, the headline after the keyword is set to the
+`org-headline-done' as an additional indication."
+  :group 'org-font-lock
+  :type 'boolean)
+
+(defcustom org-fontify-emphasized-text t
+  "Non-nil means fontify *bold*, /italic/ and _underlined_ text.
+Changing this variable requires a restart of Emacs to take effect."
+  :group 'org-font-lock
+  :type 'boolean)
+
+(defvar org-emph-re nil
+  "Regular expression for matching emphasis.")
+(defvar org-emphasis-regexp-components) ; defined just below
+(defvar org-emphasis-alist) ; defined just below
+(defun org-set-emph-re (var val)
+  "Set variable and compute the emphasis regular expression."
+  (set var val)
+  (when (and (boundp 'org-emphasis-alist)
+            (boundp 'org-emphasis-regexp-components)
+            org-emphasis-alist org-emphasis-regexp-components)
+    (let* ((e org-emphasis-regexp-components)
+          (pre (car e))
+          (post (nth 1 e))
+          (border (nth 2 e))
+          (body (nth 3 e))
+          (nl (nth 4 e))
+          (stacked (nth 5 e))
+          (body1 (concat body "*?"))
+          (markers (mapconcat 'car org-emphasis-alist "")))
+      ;; make sure special characters appear at the right position in the class
+      (if (string-match "\\^" markers)
+         (setq markers (concat (replace-match "" t t markers) "^")))
+      (if (string-match "-" markers)
+         (setq markers (concat (replace-match "" t t markers) "-")))
+      (while (>= (setq nl (1- nl)) 0) (setq body1 (concat body1 "\n?" body "*?")))
+      ;; Make the regexp
+      (setq org-emph-re
+           (concat "\\([" pre (if stacked markers) "]\\|^\\)"
+                   "\\("
+                   "\\([" markers "]\\)"
+                   "\\("
+                   "[^" border markers "]"
+                   body1
+                   "[^" border markers "]"
+                   "\\)"
+                   "\\3\\)"
+                   "\\([" post (if stacked markers) "]\\|$\\)")))))
+
+(defcustom org-emphasis-regexp-components
+  '(" \t(" " \t.,?;:'\")" " \t\r\n,." "." 1 nil)
+  "Components used to build the reqular expression for emphasis.
+This is a list with 6 entries.  Terminology:  In an emphasis string
+like \" *strong word* \", we call the initial space PREMATCH, the final
+space POSTMATCH, the stars MARKERS, \"s\" and \"d\" are BORDER characters
+and \"trong wor\" is the body.  The different components in this variable
+specify what is allowed/forbidden in each part:
+
+pre          Chars allowed as prematch.  Beginning of line will be allowed too.
+post         Chars allowed as postmatch.  End of line will be allowed too.
+border       The chars *forbidden* as border characters.  In addition to the
+             characters given here, all marker characters are forbidden too.
+body-regexp  A regexp like \".\" to match a body character.  Don't use
+             non-shy groups here, and don't allow newline here.
+newline      The maximum number of newlines allowed in an emphasis exp.
+stacked      Non-nil means, allow stacked styles.  This works only in HTML
+             export.  When this is set, all marker characters (as given in
+             `org-emphasis-alist') will be allowed as pre/post, aiding
+             inside-out matching.
+Use customize to modify this, or restart emacs after changing it."
+  :group 'org-font-lock
+  :set 'org-set-emph-re
+  :type '(list
+         (sexp    :tag "Allowed chars in pre      ")
+         (sexp    :tag "Allowed chars in post     ")
+         (sexp    :tag "Forbidden chars in border ")
+         (sexp    :tag "Regexp for body           ")
+         (integer :tag "number of newlines allowed")
+         (boolean :tag "Stacking allowed          ")))
+
+(defcustom org-emphasis-alist
+  '(("*" bold "<b>" "</b>")
+    ("/" italic "<i>" "</i>")
+    ("_" underline "<u>" "</u>")
+    ("=" shadow "<code>" "</code>")
+    ("+" (:strike-through t) "<del>" "</del>")
+)
+"Special syntax for emphasised text.
+Text starting and ending with a special character will be emphasized, for
+example *bold*, _underlined_ and /italic/.  This variable sets the marker
+characters, the face to bbe used by font-lock for highlighting in Org-mode
+emacs buffers, and the HTML tags to be used for this.
+Use customize to modify this, or restart emacs after changing it."
+  :group 'org-font-lock
+  :set 'org-set-emph-re
+  :type '(repeat
+         (list
+          (string :tag "Marker character")
+          (choice
+           (face :tag "Font-lock-face")
+           (plist :tag "Face property list"))
+          (string :tag "HTML start tag")
+          (string :tag "HTML end tag"))))
+
 (defgroup org-faces nil
-  "Faces for highlighting in Org-mode."
+  "Faces in Org-mode."
   :tag "Org Faces"
-  :group 'org)
+  :group 'org-font-lock)
+
+(defun org-compatible-face (specs)
+  "Make a compatible face specification.
+XEmacs and Emacs 21 do not know about the `min-colors' attribute.
+For them we convert a (min-colors 8) entry to a `tty' entry and move it
+to the top of the list.  The `min-colors' attribute will be removed from
+any other entries, and any resulting duplicates will be removed entirely."
+  (if (or (featurep 'xemacs) (< emacs-major-version 22))
+      (let (r e a)
+       (while (setq e (pop specs))
+         (cond
+          ((memq (car e) '(t default)) (push e r))
+          ((setq a (member '(min-colors 8) (car e)))
+           (nconc r (list (cons (cons '(type tty) (delq (car a) (car e)))
+                                (cdr e)))))
+          ((setq a (assq 'min-colors (car e)))
+           (setq e (cons (delq a (car e)) (cdr e)))
+           (or (assoc (car e) r) (push e r)))
+          (t (or (assoc (car e) r) (push e r)))))
+       (nreverse r))
+    specs))
 
 (defface org-hide
-  '((((type tty) (class color)) (:foreground "blue" :weight bold))
-    (((class color) (background light)) (:foreground "white"))
-    (((class color) (background dark)) (:foreground "black"))
-;    (((class color) (background light)) (:foreground "grey90"))
-;    (((class color) (background dark)) (:foreground "grey10"))
-    (t (:inverse-video nil)))
-  "Face used for level 1 headlines."
+  '((((background light)) (:foreground "white"))
+    (((background dark)) (:foreground "black")))
+  "Face used to hide leading stars in headlines.
+The forground color of this face should be equal to the background
+color of the frame."
   :group 'org-faces)
 
 (defface org-level-1 ;; font-lock-function-name-face
-  '((((type tty) (class color)) (:foreground "blue" :weight bold))
-    (((class color) (background light)) (:foreground "Blue"))
-    (((class color) (background dark)) (:foreground "LightSkyBlue"))
-    (t (:inverse-video t :bold t)))
+  (org-compatible-face
+   '((((class color) (min-colors 88) (background light)) (:foreground "Blue1"))
+     (((class color) (min-colors 88) (background dark)) (:foreground "LightSkyBlue"))
+     (((class color) (min-colors 16) (background light)) (:foreground "Blue"))
+     (((class color) (min-colors 16) (background dark)) (:foreground "LightSkyBlue"))
+     (((class color) (min-colors 8)) (:foreground "blue" :bold t))
+     (t (:bold t))))
   "Face used for level 1 headlines."
   :group 'org-faces)
 
 (defface org-level-2 ;; font-lock-variable-name-face
-  '((((type tty) (class color)) (:foreground "yellow" :weight light))
-    (((class color) (background light)) (:foreground "DarkGoldenrod"))
-    (((class color) (background dark)) (:foreground "LightGoldenrod"))
-    (t (:bold t :italic t)))
+  (org-compatible-face
+   '((((class color) (min-colors 16) (background light)) (:foreground "DarkGoldenrod"))
+     (((class color) (min-colors 16) (background dark))  (:foreground "LightGoldenrod"))
+     (((class color) (min-colors 8)  (background light)) (:foreground "yellow"))
+     (((class color) (min-colors 8)  (background dark))  (:foreground "yellow" :bold t))
+     (t (:bold t))))
   "Face used for level 2 headlines."
   :group 'org-faces)
 
 (defface org-level-3 ;; font-lock-keyword-face
-  '((((type tty) (class color)) (:foreground "cyan" :weight bold))
-    (((class color) (background light)) (:foreground "Purple"))
-    (((class color) (background dark)) (:foreground "Cyan"))
-    (t (:bold t)))
+  (org-compatible-face
+   '((((class color) (min-colors 88) (background light)) (:foreground "Purple"))
+     (((class color) (min-colors 88) (background dark))  (:foreground "Cyan1"))
+     (((class color) (min-colors 16) (background light)) (:foreground "Purple"))
+     (((class color) (min-colors 16) (background dark))  (:foreground "Cyan"))
+     (((class color) (min-colors 8)  (background light)) (:foreground "purple" :bold t))
+     (((class color) (min-colors 8)  (background dark))  (:foreground "cyan" :bold t))
+     (t (:bold t))))
   "Face used for level 3 headlines."
   :group 'org-faces)
 
 (defface org-level-4   ;; font-lock-comment-face
-  '((((type tty pc) (class color) (background light)) (:foreground "red"))
-    (((type tty pc) (class color) (background dark)) (:foreground "red1"))
-    (((class color) (background light)) (:foreground "Firebrick"))
-    (((class color) (background dark)) (:foreground "chocolate1"))
-    (t (:bold t :italic t)))
+  (org-compatible-face
+   '((((class color) (min-colors 88) (background light)) (:foreground "Firebrick"))
+     (((class color) (min-colors 88) (background dark))  (:foreground "chocolate1"))
+     (((class color) (min-colors 16) (background light)) (:foreground "red"))
+     (((class color) (min-colors 16) (background dark))  (:foreground "red1"))
+     (((class color) (min-colors 8) (background light))  (:foreground "red" :bold t))
+     (((class color) (min-colors 8) (background dark))   (:foreground "red" :bold t))
+     (t (:bold t))))
   "Face used for level 4 headlines."
   :group 'org-faces)
 
 (defface org-level-5 ;; font-lock-type-face
-  '((((type tty) (class color)) (:foreground "green"))
-    (((class color) (background light)) (:foreground "ForestGreen"))
-    (((class color) (background dark)) (:foreground "PaleGreen"))
-    (t (:bold t :underline t)))
+  (org-compatible-face
+   '((((class color) (min-colors 16) (background light)) (:foreground "ForestGreen"))
+     (((class color) (min-colors 16) (background dark)) (:foreground "PaleGreen"))
+     (((class color) (min-colors 8)) (:foreground "green"))))
   "Face used for level 5 headlines."
   :group 'org-faces)
 
 (defface org-level-6 ;; font-lock-constant-face
-  '((((type tty) (class color)) (:foreground "magenta"))
-    (((class color) (background light)) (:foreground "CadetBlue"))
-    (((class color) (background dark)) (:foreground "Aquamarine"))
-    (t (:bold t :underline t)))
+  (org-compatible-face
+   '((((class color) (min-colors 16) (background light)) (:foreground "CadetBlue"))
+     (((class color) (min-colors 16) (background dark)) (:foreground "Aquamarine"))
+     (((class color) (min-colors 8)) (:foreground "magenta"))))
   "Face used for level 6 headlines."
   :group 'org-faces)
 
 (defface org-level-7 ;; font-lock-builtin-face
-  '((((type tty) (class color)) (:foreground "blue" :weight light))
-    (((class color) (background light)) (:foreground "Orchid"))
-    (((class color) (background dark)) (:foreground "LightSteelBlue"))
-    (t (:bold t)))
+  (org-compatible-face
+   '((((class color) (min-colors 16) (background light)) (:foreground "Orchid"))
+     (((class color) (min-colors 16) (background dark)) (:foreground "LightSteelBlue"))
+     (((class color) (min-colors 8)) (:foreground "blue"))))
   "Face used for level 7 headlines."
   :group 'org-faces)
 
 (defface org-level-8 ;; font-lock-string-face
-  '((((type tty) (class color)) (:foreground "green"))
-    (((class color) (background light)) (:foreground "RosyBrown"))
-    (((class color) (background dark)) (:foreground "LightSalmon"))
-    (t (:italic t)))
+  (org-compatible-face
+   '((((class color) (min-colors 16) (background light)) (:foreground "RosyBrown"))
+     (((class color) (min-colors 16) (background dark)) (:foreground "LightSalmon"))
+     (((class color) (min-colors 8)) (:foreground "green"))))
   "Face used for level 8 headlines."
   :group 'org-faces)
 
 (defface org-special-keyword ;; font-lock-string-face
-  '((((type tty) (class color)) (:foreground "green"))
-    (((class color) (background light)) (:foreground "RosyBrown"))
-    (((class color) (background dark)) (:foreground "LightSalmon"))
-    (t (:italic t)))
+  (org-compatible-face
+   '((((class color) (min-colors 16) (background light)) (:foreground "RosyBrown"))
+     (((class color) (min-colors 16) (background dark)) (:foreground "LightSalmon"))
+     (t (:italic t))))
   "Face used for special keywords."
   :group 'org-faces)
 
 (defface org-warning ;; font-lock-warning-face
-  '((((type tty) (class color)) (:foreground "red"))
-    (((class color) (background light)) (:foreground "Red" :bold t))
-    (((class color) (background dark)) (:foreground "Red1" :bold t))
-;    (((class color) (background dark)) (:foreground "Pink" :bold t))
-    (t (:inverse-video t :bold t)))
+  (org-compatible-face
+   '((((class color) (min-colors 16) (background light)) (:foreground "Red1" :bold t))
+     (((class color) (min-colors 16) (background dark))  (:foreground "Pink" :bold t))
+     (((class color) (min-colors 8)  (background light)) (:foreground "red"  :bold t))
+     (((class color) (min-colors 8)  (background dark))  (:foreground "red"  :bold t))
+     (t (:bold t))))
   "Face for deadlines and TODO keywords."
   :group 'org-faces)
 
-(defcustom org-fontify-done-headline nil
-  "Non-nil means, change the face of a headline if it is marked DONE.
-Normally, only the TODO/DONE keyword indicates the state of a headline.
-When this is non-nil, the headline after the keyword is set to the
-`org-headline-done' as an additional indication."
-  :group 'org-faces
-  :type 'boolean)
-
 (defface org-headline-done ;; font-lock-string-face
-  '((((type tty) (class color)) (:foreground "green"))
-    (((class color) (background light)) (:foreground "RosyBrown"))
-    (((class color) (background dark)) (:foreground "LightSalmon"))
-    (t (:italic t)))
-  "Face used to indicate that a headline is DONE.  See also the variable
-`org-fontify-done-headline'."
-  :group 'org-faces)
-
-;; Inheritance does not yet work for xemacs. So we just copy...
-
-(defface org-deadline-announce
-  '((((type tty) (class color)) (:foreground "blue" :weight bold))
-    (((class color) (background light)) (:foreground "Blue"))
-    (((class color) (background dark)) (:foreground "LightSkyBlue"))
-    (t (:inverse-video t :bold t)))
-  "Face for upcoming deadlines."
-  :group 'org-faces)
-
-(defface org-scheduled-today
-  '((((type tty) (class color)) (:foreground "green"))
-    (((class color) (background light)) (:foreground "DarkGreen"))
-    (((class color) (background dark)) (:foreground "PaleGreen"))
-    (t (:bold t :underline t)))
-  "Face for items scheduled for a certain day."
+  (org-compatible-face
+   '((((class color) (min-colors 16) (background light)) (:foreground "RosyBrown"))
+     (((class color) (min-colors 16) (background dark)) (:foreground "LightSalmon"))
+     (((class color) (min-colors 8)  (background light)) (:bold nil))))
+  "Face used to indicate that a headline is DONE.
+This face is only used if `org-fontify-done-headline' is set."
   :group 'org-faces)
 
-(defface org-scheduled-previously
-  '((((type tty pc) (class color) (background light)) (:foreground "red"))
-    (((type tty pc) (class color) (background dark)) (:foreground "red1"))
-    (((class color) (background light)) (:foreground "Firebrick"))
-    (((class color) (background dark)) (:foreground "chocolate1"))
-    (t (:bold t :italic t)))
-  "Face for items scheduled previously, and not yet done."
-  :group 'org-faces)
+(defface org-archived    ; similar to shadow
+  (org-compatible-face
+   '((((class color grayscale) (min-colors 88) (background light))
+      (:foreground "grey50"))
+     (((class color grayscale) (min-colors 88) (background dark))
+      (:foreground "grey70"))
+     (((class color) (min-colors 8) (background light))
+      (:foreground "green"))
+     (((class color) (min-colors 8) (background dark))
+      (:foreground "yellow"))))
+   "Face for headline with the ARCHIVE tag."
+   :group 'org-faces)
 
-(defface org-formula
-  '((((type tty pc) (class color) (background light)) (:foreground "red"))
-    (((type tty pc) (class color) (background dark)) (:foreground "red1"))
-    (((class color) (background light)) (:foreground "Firebrick"))
-    (((class color) (background dark)) (:foreground "chocolate1"))
-    (t (:bold t :italic t)))
-  "Face for formulas."
+(defface org-link
+  '((((class color) (background light)) (:foreground "Purple" :underline t))
+    (((class color) (background dark)) (:foreground "Cyan" :underline t))
+    (t (:underline t)))
+  "Face for links."
   :group 'org-faces)
 
-(defface org-link
-  '((((type tty) (class color)) (:foreground "cyan" :weight bold))
-    (((class color) (background light)) (:foreground "Purple"))
-    (((class color) (background dark)) (:foreground "Cyan"))
-    (t (:bold t)))
+(defface org-date
+  '((((class color) (background light)) (:foreground "Purple" :underline t))
+    (((class color) (background dark)) (:foreground "Cyan" :underline t))
+    (t (:underline t)))
   "Face for links."
   :group 'org-faces)
 
 (defface org-tag
-  '((((type tty) (class color)) (:foreground "cyan" :weight bold))
-    (((class color) (background light)) (:foreground "Purple" :weight bold))
-    (((class color) (background dark)) (:foreground "Cyan" :weight bold))
-    (t (:bold t)))
-  "Face for links."
+  '((t (:bold t)))
+  "Face for tags."
+  :group 'org-faces)
+
+(defface org-todo ;; font-lock-warning-face
+  (org-compatible-face
+   '((((class color) (min-colors 16) (background light)) (:foreground "Red1" :bold t))
+     (((class color) (min-colors 16) (background dark))  (:foreground "Pink" :bold t))
+     (((class color) (min-colors 8)  (background light)) (:foreground "red"  :bold t))
+     (((class color) (min-colors 8)  (background dark))  (:foreground "red"  :bold t))
+     (t (:inverse-video t :bold t))))
+  "Face for TODO keywords."
   :group 'org-faces)
 
 (defface org-done ;; font-lock-type-face
-  '((((type tty) (class color)) (:foreground "green"))
-    (((class color) (background light)) (:foreground "ForestGreen" :bold t))
-    (((class color) (background dark)) (:foreground "PaleGreen" :bold t))
-    (t (:bold t :underline t)))
+  (org-compatible-face
+   '((((class color) (min-colors 16) (background light)) (:foreground "ForestGreen"))
+     (((class color) (min-colors 16) (background dark)) (:foreground "PaleGreen"))
+     (((class color) (min-colors 8)) (:foreground "green"))
+     (t (:bold t))))
   "Face used for DONE."
   :group 'org-faces)
 
 (defface org-table ;; font-lock-function-name-face
-  '((((type tty) (class color)) (:foreground "blue" :weight bold))
-    (((class color) (background light)) (:foreground "Blue"))
-    (((class color) (background dark)) (:foreground "LightSkyBlue"))
-    (t (:inverse-video t :bold t)))
+  (org-compatible-face
+   '((((class color) (min-colors 88) (background light)) (:foreground "Blue1"))
+     (((class color) (min-colors 88) (background dark)) (:foreground "LightSkyBlue"))
+     (((class color) (min-colors 16) (background light)) (:foreground "Blue"))
+     (((class color) (min-colors 16) (background dark)) (:foreground "LightSkyBlue"))
+     (((class color) (min-colors 8)  (background light)) (:foreground "blue"))
+     (((class color) (min-colors 8)  (background dark)))))
   "Face used for tables."
   :group 'org-faces)
 
+(defface org-formula
+  (org-compatible-face
+   '((((class color) (min-colors 88) (background light)) (:foreground "Firebrick"))
+     (((class color) (min-colors 88) (background dark)) (:foreground "chocolate1"))
+     (((class color) (min-colors 8)  (background light)) (:foreground "red"))
+     (((class color) (min-colors 8)  (background dark)) (:foreground "red"))
+     (t (:bold t :italic t))))
+  "Face for formulas."
+  :group 'org-faces)
+
+(defface org-scheduled-today
+  (org-compatible-face
+   '((((class color) (min-colors 88) (background light)) (:foreground "DarkGreen"))
+     (((class color) (min-colors 88) (background dark)) (:foreground "PaleGreen"))
+     (((class color) (min-colors 8)) (:foreground "green"))
+     (t (:bold t :italic t))))
+  "Face for items scheduled for a certain day."
+  :group 'org-faces)
+
+(defface org-scheduled-previously
+  (org-compatible-face
+   '((((class color) (min-colors 88) (background light)) (:foreground "Firebrick"))
+     (((class color) (min-colors 88) (background dark)) (:foreground "chocolate1"))
+     (((class color) (min-colors 8)  (background light)) (:foreground "red"))
+     (((class color) (min-colors 8)  (background dark)) (:foreground "red" :bold t))
+     (t (:bold t))))
+  "Face for items scheduled previously, and not yet done."
+  :group 'org-faces)
+
+(defface org-upcoming-deadline
+  (org-compatible-face
+   '((((class color) (min-colors 88) (background light)) (:foreground "Firebrick"))
+     (((class color) (min-colors 88) (background dark)) (:foreground "chocolate1"))
+     (((class color) (min-colors 8)  (background light)) (:foreground "red"))
+     (((class color) (min-colors 8)  (background dark)) (:foreground "red" :bold t))
+     (t (:bold t))))
+  "Face for items scheduled previously, and not yet done."
+  :group 'org-faces)
+
 (defface org-time-grid ;; font-lock-variable-name-face
-  '((((type tty) (class color)) (:foreground "yellow" :weight light))
-    (((class color) (background light)) (:foreground "DarkGoldenrod"))
-    (((class color) (background dark)) (:foreground "LightGoldenrod"))
-    (t (:bold t :italic t)))
+  (org-compatible-face
+   '((((class color) (min-colors 16) (background light)) (:foreground "DarkGoldenrod"))
+     (((class color) (min-colors 16) (background dark)) (:foreground "LightGoldenrod"))
+     (((class color) (min-colors 8)) (:foreground "yellow" :weight light))))
   "Face used for time grids."
   :group 'org-faces)
 
-(defvar org-level-faces
+(defconst org-level-faces
   '(org-level-1 org-level-2 org-level-3 org-level-4
     org-level-5 org-level-6 org-level-7 org-level-8
     ))
-(defvar org-n-levels (length org-level-faces))
+(defconst org-n-levels (length org-level-faces))
+
+
+;; Variables for pre-computed regular expressions, all buffer local
+(defvar org-done-string nil
+  "The last string in `org-todo-keywords', indicating an item is DONE.")
+(make-variable-buffer-local 'org-done-string)
+(defvar org-todo-regexp nil
+  "Matches any of the TODO state keywords.")
+(make-variable-buffer-local 'org-todo-regexp)
+(defvar org-not-done-regexp nil
+  "Matches any of the TODO state keywords except the last one.")
+(make-variable-buffer-local 'org-not-done-regexp)
+(defvar org-todo-line-regexp nil
+  "Matches a headline and puts TODO state into group 2 if present.")
+(make-variable-buffer-local 'org-todo-line-regexp)
+(defvar org-todo-line-tags-regexp nil
+  "Matches a headline and puts TODO state into group 2 if present.
+Also put tags into group 4 if tags are present.")
+(make-variable-buffer-local 'org-todo-line-tags-regexp)
+(defvar org-nl-done-regexp nil
+  "Matches newline followed by a headline with the DONE keyword.")
+(make-variable-buffer-local 'org-nl-done-regexp)
+(defvar org-looking-at-done-regexp nil
+  "Matches the DONE keyword a point.")
+(make-variable-buffer-local 'org-looking-at-done-regexp)
+(defvar org-todo-kwd-priority-p nil
+  "Do TODO items have priorities?")
+(make-variable-buffer-local 'org-todo-kwd-priority-p)
+(defvar org-todo-kwd-max-priority nil
+  "Maximum priority of TODO items.")
+(make-variable-buffer-local 'org-todo-kwd-max-priority)
+(defvar org-ds-keyword-length 12
+  "Maximum length of the Deadline and SCHEDULED keywords.")
+(make-variable-buffer-local 'org-ds-keyword-length)
+(defvar org-deadline-regexp nil
+  "Matches the DEADLINE keyword.")
+(make-variable-buffer-local 'org-deadline-regexp)
+(defvar org-deadline-time-regexp nil
+  "Matches the DEADLINE keyword together with a time stamp.")
+(make-variable-buffer-local 'org-deadline-time-regexp)
+(defvar org-deadline-line-regexp nil
+  "Matches the DEADLINE keyword and the rest of the line.")
+(make-variable-buffer-local 'org-deadline-line-regexp)
+(defvar org-scheduled-regexp nil
+  "Matches the SCHEDULED keyword.")
+(make-variable-buffer-local 'org-scheduled-regexp)
+(defvar org-scheduled-time-regexp nil
+  "Matches the SCHEDULED keyword together with a time stamp.")
+(make-variable-buffer-local 'org-scheduled-time-regexp)
+(defvar org-closed-time-regexp nil
+  "Matches the CLOSED keyword together with a time stamp.")
+(make-variable-buffer-local 'org-closed-time-regexp)
+
+(defvar org-keyword-time-regexp nil
+  "Matches any of the 3 keywords, together with the time stamp.")
+(make-variable-buffer-local 'org-keyword-time-regexp)
+(defvar org-maybe-keyword-time-regexp nil
+  "Matches a timestamp, possibly preceeded by a keyword.")
+(make-variable-buffer-local 'org-keyword-time-regexp)
+
+(defconst org-rm-props '(invisible t face t keymap t intangible t mouse-face t
+                                   rear-nonsticky t mouse-map t)
+  "Properties to remove when a string without properties is wanted.")
+
+(defsubst org-match-string-no-properties (num &optional string)
+  (if (featurep 'xemacs)
+      (let ((s (match-string num string)))
+       (remove-text-properties 0 (length s) org-rm-props s)
+       s)
+    (match-string-no-properties num string)))
+
+(defsubst org-no-properties (s)
+  (remove-text-properties 0 (length s) org-rm-props s)
+  s)
+
+(defsubst org-set-local (var value)
+  "Make VAR local in current buffer and set it to VALUE."
+  (set (make-variable-buffer-local var) value))
+
+(defsubst org-mode-p ()
+  "Check if the current buffer is in Org-mode."
+  (eq major-mode 'org-mode))
 
 (defun org-set-regexps-and-options ()
   "Precompute regular expressions for current buffer."
-  (when (eq major-mode 'org-mode)
+  (when (org-mode-p)
     (let ((re (org-make-options-regexp
               '("CATEGORY" "SEQ_TODO" "PRI_TODO" "TYP_TODO"
-                "STARTUP" "ARCHIVE")))
+                "STARTUP" "ARCHIVE" "TAGS" "CALC")))
          (splitre "[ \t]+")
-         kwds int key value cat arch)
+         kwds int key value cat arch tags)
       (save-excursion
        (save-restriction
          (widen)
          (goto-char (point-min))
          (while (re-search-forward re nil t)
-           (setq key (match-string 1) value (match-string 2))
+           (setq key (match-string 1) value (org-match-string-no-properties 2))
            (cond
             ((equal key "CATEGORY")
              (if (string-match "[ \t]+$" value)
@@ -1934,11 +2740,23 @@ When this is non-nil, the headline after the keyword is set to the
             ((equal key "TYP_TODO")
              (setq int 'type
                    kwds (append kwds (org-split-string value splitre))))
+            ((equal key "TAGS")
+             (setq tags (append tags (org-split-string value splitre))))
             ((equal key "STARTUP")
              (let ((opts (org-split-string value splitre))
                    (set '(("fold" org-startup-folded t)
+                          ("overview" org-startup-folded t)
                           ("nofold" org-startup-folded nil)
+                          ("showall" org-startup-folded nil)
                           ("content" org-startup-folded content)
+                          ("hidestars" org-hide-leading-stars t)
+                          ("showstars" org-hide-leading-stars nil)
+                          ("odd" org-odd-levels-only t)
+                          ("oddeven" org-odd-levels-only nil)
+                          ("align" org-startup-align-all-tables t)
+                          ("noalign" org-startup-align-all-tables nil)
+                          ("logging" org-log-done t)
+                          ("nologging" org-log-done nil)
                           ("dlcheck" org-startup-with-deadline-check t)
                           ("nodlcheck" org-startup-with-deadline-check nil)))
                    l var val)
@@ -1951,10 +2769,27 @@ When this is non-nil, the headline after the keyword is set to the
              (remove-text-properties 0 (length arch)
                                      '(face t fontified t) arch)))
            )))
-      (and cat (set (make-local-variable 'org-category) cat))
-      (and kwds (set (make-local-variable 'org-todo-keywords) kwds))
-      (and arch (set (make-local-variable 'org-archive-location) arch))
-      (and int (set (make-local-variable 'org-todo-interpretation) int)))
+      (and cat (org-set-local 'org-category cat))
+      (and kwds (org-set-local 'org-todo-keywords kwds))
+      (and arch (org-set-local 'org-archive-location arch))
+      (and int (org-set-local 'org-todo-interpretation int))
+      (when tags
+       (let (e tgs)
+         (while (setq e (pop tags))
+           (cond
+            ((equal e "{") (push '(:startgroup) tgs))
+            ((equal e "}") (push '(:endgroup) tgs))
+            ((string-match "^\\([0-9a-zA-Z_@]+\\)(\\(.\\))$" e)
+             (push (cons (match-string 1 e)
+                         (string-to-char (match-string 2 e)))
+                   tgs))
+            (t (push (list e) tgs))))
+         (org-set-local 'org-tag-alist nil)
+         (while (setq e (pop tgs))
+           (or (and (stringp (car e))
+                    (assoc (car e) org-tag-alist))
+               (push e org-tag-alist))))))
+
     ;; Compute the regular expressions and other local variables
     (setq org-todo-kwd-priority-p (equal org-todo-interpretation 'priority)
          org-todo-kwd-max-priority (1- (length org-todo-keywords))
@@ -1977,6 +2812,10 @@ When this is non-nil, the headline after the keyword is set to the
                  "\\)? *\\(.*\\)")
          org-nl-done-regexp
          (concat "[\r\n]\\*+[ \t]+" org-done-string "\\>")
+         org-todo-line-tags-regexp
+         (concat "^\\(\\*+\\)[ \t]*\\("
+                 (mapconcat 'regexp-quote org-todo-keywords "\\|")
+                 "\\)? *\\(.*?\\([ \t]:[a-zA-Z0-9:_@]+:[ \t]*\\)?$\\)")
          org-looking-at-done-regexp (concat "^" org-done-string "\\>")
          org-deadline-regexp (concat "\\<" org-deadline-string)
          org-deadline-time-regexp
@@ -1986,62 +2825,84 @@ When this is non-nil, the headline after the keyword is set to the
          org-scheduled-regexp
          (concat "\\<" org-scheduled-string)
          org-scheduled-time-regexp
-         (concat "\\<" org-scheduled-string " *<\\([^>]+\\)>"))
+         (concat "\\<" org-scheduled-string " *<\\([^>]+\\)>")
+         org-closed-time-regexp
+         (concat "\\<" org-closed-string " *\\[\\([^]]+\\)\\]")
+         org-keyword-time-regexp
+         (concat "\\<\\(" org-scheduled-string
+                 "\\|" org-deadline-string
+                 "\\|" org-closed-string
+                 "\\|" org-clock-string "\\)"
+                 " *[[<]\\([^]>]+\\)[]>]")
+         org-maybe-keyword-time-regexp
+         (concat "\\(\\<\\(" org-scheduled-string
+                 "\\|" org-deadline-string
+                 "\\|" org-closed-string
+                 "\\|" org-clock-string "\\)\\)?"
+                 " *\\([[<][0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\}[^]\r\n>]*?[]>]\\)"))
+
     (org-set-font-lock-defaults)))
 
 ;; Tell the compiler about dynamically scoped variables,
 ;; and variables from other packages
-(defvar zmacs-regions)
-(defvar original-date)
-(defvar org-transient-mark-mode)
-(defvar org-old-auto-fill-inhibit-regexp)
-(defvar orgtbl-mode-menu)
-(defvar org-html-entities)
-(defvar org-goto-start-pos)
-(defvar org-cursor-color)
-(defvar org-time-was-given)
-(defvar org-ts-what)
-(defvar mark-active)
-(defvar timecnt)
-(defvar levels-open)
-(defvar title)
-(defvar author)
-(defvar email)
-(defvar text)
-(defvar entry)
-(defvar date)
-(defvar language)
-(defvar options)
-(defvar ans1)
-(defvar ans2)
-(defvar starting-day)
-(defvar include-all-loc)
-(defvar vm-message-pointer)
-(defvar vm-folder-directory)
-(defvar wl-summary-buffer-elmo-folder)
-(defvar wl-summary-buffer-folder-name)
-(defvar gnus-group-name)
-(defvar gnus-article-current)
-(defvar w3m-current-url)
-(defvar mh-progs)
-(defvar mh-current-folder)
-(defvar mh-show-folder-buffer)
-(defvar mh-index-folder)
-(defvar mh-searcher)
-(defvar org-selected-point)
-(defvar calendar-mode-map)
-(defvar remember-save-after-remembering)
-(defvar remember-data-file)
-(defvar last-arg)
+(defvar calc-embedded-close-formula)  ; defined by the calc package
+(defvar calc-embedded-open-formula)   ; defined by the calc package
+(defvar font-lock-unfontify-region-function) ; defined by font-lock.el
+(defvar zmacs-regions) ; XEmacs regions
+(defvar original-date) ; dynamically scoped in calendar
+(defvar org-old-auto-fill-inhibit-regexp) ; local variable used by `orgtbl-mode'
+(defvar orgtbl-mode-menu) ; defined when orgtbl mode get initialized
+(defvar org-html-entities) ; defined later in this file
+(defvar org-goto-start-pos) ; dynamically scoped parameter
+(defvar org-time-was-given) ; dynamically scoped parameter
+(defvar org-ts-what) ; dynamically scoped parameter
+(defvar org-current-export-file) ; dynamically scoped parameter
+(defvar org-current-export-dir) ; dynamically scoped parameter
+(defvar mark-active) ; Emacs only, not available in XEmacs.
+(defvar timecnt) ; dynamically scoped parameter
+(defvar levels-open) ; dynamically scoped parameter
+(defvar entry) ; dynamically scoped parameter
+(defvar state) ; dynamically scoped into `org-after-todo-state-change-hook'
+(defvar date) ; dynamically scoped parameter
+(defvar description) ; dynamically scoped parameter
+(defvar ans1) ; dynamically scoped parameter
+(defvar ans2) ; dynamically scoped parameter
+(defvar starting-day) ; local variable
+(defvar include-all-loc) ; local variable
+(defvar vm-message-pointer) ; from vm
+(defvar vm-folder-directory) ; from vm
+(defvar wl-summary-buffer-elmo-folder) ; from wanderlust
+(defvar wl-summary-buffer-folder-name) ; from wanderlust
+(defvar gnus-group-name) ; from gnus
+(defvar gnus-article-current) ; from gnus
+(defvar w3m-current-url) ; from w3m
+(defvar w3m-current-title) ; from w3m
+(defvar mh-progs) ; from MH-E
+(defvar mh-current-folder) ; from MH-E
+(defvar mh-show-folder-buffer) ; from MH-E
+(defvar mh-index-folder) ; from MH-E
+(defvar mh-searcher) ; from MH-E
+(defvar org-selected-point) ; dynamically scoped parameter
+(defvar calendar-mode-map) ; from calendar.el
+(defvar last-arg) ; local variable
+(defvar remember-save-after-remembering) ; from remember.el
+(defvar remember-data-file) ; from remember.el
+(defvar annotation) ; from remember.el, dynamically scoped in `remember-mode'
+(defvar initial)    ; from remember.el, dynamically scoped in `remember-mode'
+(defvar orgtbl-mode) ; defined later in this file
+(defvar Info-current-file) ; from info.el
+(defvar Info-current-node) ; from info.el
+(defvar texmathp-why) ; from texmathp.el
+(defvar org-latex-regexps)
 
 ;;; Define the mode
 
-(defvar org-mode-map (copy-keymap outline-mode-map)
-  "Keymap for Org-mode.")
+(if (and (not (keymapp outline-mode-map)) (featurep 'allout))
+    (error "Conflict with outdated version of allout.el.  Load org.el before allout.el, or ugrade to newer allout, for example by switching to Emacs 22."))
 
-(defvar org-struct-menu)
-(defvar org-org-menu)
-(defvar org-tbl-menu)
+(defvar org-struct-menu) ; defined later in this file
+(defvar org-org-menu) ; defined later in this file
+(defvar org-tbl-menu) ; defined later in this file
 
 ;; We use a before-change function to check if a table might need
 ;; an update.
@@ -2049,6 +2910,7 @@ When this is non-nil, the headline after the keyword is set to the
   "Indicates that a table might need an update.
 This variable is set by `org-before-change-function'.
 `org-table-align' sets it back to nil.")
+(defvar org-mode-map)
 (defvar org-mode-hook nil)
 (defvar org-inhibit-startup nil)        ; Dynamically-scoped param.
 (defvar org-agenda-keep-modes nil)      ; Dynamically-scoped param.
@@ -2073,45 +2935,63 @@ can be exported as a structured ASCII or HTML file.
 The following commands are available:
 
 \\{org-mode-map}"
+
+  ;; Get rid of Outline menus, they are not needed
+  ;; Need to do this here because define-derived-mode sets up
+  ;; the keymap so late.
+  (if (featurep 'xemacs)
+      (progn
+       ;; Assume this is Greg's port, it used easymenu
+       (easy-menu-remove outline-mode-menu-heading)
+       (easy-menu-remove outline-mode-menu-show)
+       (easy-menu-remove outline-mode-menu-hide))
+    (define-key org-mode-map [menu-bar headings] 'undefined)
+    (define-key org-mode-map [menu-bar hide] 'undefined)
+    (define-key org-mode-map [menu-bar show] 'undefined))
+
   (easy-menu-add org-org-menu)
   (easy-menu-add org-tbl-menu)
   (org-install-agenda-files-menu)
+  (if org-descriptive-links (org-add-to-invisibility-spec '(org-link)))
+  (org-add-to-invisibility-spec '(org-cwidth))
+  (when (featurep 'xemacs)
+    (org-set-local 'line-move-ignore-invisible t))
   (setq outline-regexp "\\*+")
-;  (setq outline-regexp "\\(?:\\*+\\|[ \t]*\\(?:[-+*]\\|[0-9]+[.)]\\) \\)")
+  ;;(setq outline-regexp "\\(?:\\*+\\|[ \t]*\\(?:[-+*]\\|[0-9]+[.)]\\) \\)")
   (setq outline-level 'org-outline-level)
-  (if org-startup-truncated (setq truncate-lines t))
+  (when (and org-ellipsis (stringp org-ellipsis))
+    (unless org-display-table
+      (setq org-display-table (make-display-table)))
+    (set-display-table-slot org-display-table
+                           4 (string-to-vector org-ellipsis))
+    (setq buffer-display-table org-display-table))
   (org-set-regexps-and-options)
-  (set (make-local-variable 'font-lock-unfontify-region-function)
-       'org-unfontify-region)
+  ;; Calc embedded
+  (org-set-local 'calc-embedded-open-mode "# ")
+  (modify-syntax-entry ?# "<")
+  (if org-startup-truncated (setq truncate-lines t))
+  (org-set-local 'font-lock-unfontify-region-function
+                'org-unfontify-region)
   ;; Activate before-change-function
-  (set (make-local-variable 'org-table-may-need-update) t)
+  (org-set-local 'org-table-may-need-update t)
   (org-add-hook 'before-change-functions 'org-before-change-function nil
                'local)
+  ;; Check for running clock before killing a buffer
+  (org-add-hook 'kill-buffer-hook 'org-check-running-clock nil 'local)
   ;; Paragraphs and auto-filling
   (org-set-autofill-regexps)
   (org-update-radio-target-regexp)
-  ;; Settings for Calc embedded mode
-  (set (make-local-variable 'calc-embedded-open-formula) "|\\|\n")
-  (set (make-local-variable 'calc-embedded-close-formula) "|\\|\n")
+
   (if (and org-insert-mode-line-in-empty-file
           (interactive-p)
           (= (point-min) (point-max)))
       (insert "    -*- mode: org -*-\n\n"))
 
-  ;; Get rid of Outline menus, they are not needed
-  ;; Need to do this here because define-derived-mode sets up
-  ;; the keymap so late.
-  (if org-xemacs-p
-      (progn
-       (delete-menu-item '("Headings"))
-       (delete-menu-item '("Show"))
-       (delete-menu-item '("Hide"))
-       (set-menubar-dirty-flag))
-    (define-key org-mode-map [menu-bar headings] 'undefined)
-    (define-key org-mode-map [menu-bar hide] 'undefined)
-    (define-key org-mode-map [menu-bar show] 'undefined))
-
   (unless org-inhibit-startup
+    (when org-startup-align-all-tables
+      (let ((bmp (buffer-modified-p)))
+       (org-table-map-tables 'org-table-align)
+       (set-buffer-modified-p bmp)))
     (if org-startup-with-deadline-check
        (call-interactively 'org-check-deadlines)
       (cond
@@ -2121,24 +3001,42 @@ The following commands are available:
        (let ((this-command 'org-cycle) (last-command 'org-cycle))
          (org-cycle '(4)) (org-cycle '(4))))))))
 
+(defsubst org-call-with-arg (command arg)
+  "Call COMMAND interactively, but pretend prefix are was ARG."
+  (let ((current-prefix-arg arg)) (call-interactively command)))
+
 (defsubst org-current-line (&optional pos)
   (+ (if (bolp) 1 0) (count-lines (point-min) (or pos (point)))))
 
-
-;; FIXME: Do we need to copy?
-(defun org-string-props (string &rest properties)
-  "Add PROPERTIES to string."
-  (add-text-properties 0 (length string) properties string)
+(defun org-current-time ()
+  "Current time, possibly rounded to `org-time-stamp-rounding-minutes'."
+  (if (> org-time-stamp-rounding-minutes 0)
+      (let ((r org-time-stamp-rounding-minutes)
+           (time (decode-time)))
+       (apply 'encode-time
+              (append (list 0 (* r (floor (+ .5 (/ (float (nth 1 time)) r)))))
+                      (nthcdr 2 time))))
+    (current-time)))
+
+(defun org-add-props (string plist &rest props)
+  "Add text properties to entire string, from beginning to end.
+PLIST may be a list of properties, PROPS are individual properties and values
+that will be added to PLIST.  Returns the string that was modified."
+  (add-text-properties
+   0 (length string) (if props (append plist props) plist) string)
   string)
+(put 'org-add-props 'lisp-indent-function 2)
+
 
 ;;; Font-Lock stuff
 
 (defvar org-mouse-map (make-sparse-keymap))
 (define-key org-mouse-map
-  (if org-xemacs-p [button2] [mouse-2]) 'org-open-at-mouse)
+  (if (featurep 'xemacs) [button2] [mouse-2]) 'org-open-at-mouse)
 (define-key org-mouse-map
-  (if org-xemacs-p [button3] [mouse-3]) 'org-find-file-at-mouse)
-(define-key org-mouse-map [follow-link] 'mouse-face)
+  (if (featurep 'xemacs) [button3] [mouse-3]) 'org-find-file-at-mouse)
+(when org-mouse-1-follows-link
+  (define-key org-mouse-map [follow-link] 'mouse-face))
 (when org-tab-follows-link
   (define-key org-mouse-map [(tab)] 'org-open-at-point)
   (define-key org-mouse-map "\C-i" 'org-open-at-point))
@@ -2148,26 +3046,57 @@ The following commands are available:
 
 (require 'font-lock)
 
-(defconst org-non-link-chars "\t\n\r|<>\000")
-(defconst org-link-regexp
-  (if org-allow-space-in-links
-      (concat
-       "\\(https?\\|ftp\\|mailto\\|file\\|news\\|bbdb\\|vm\\|wl\\|mhe\\|rmail\\|gnus\\|shell\\):\\([^" org-non-link-chars "]+[^ " org-non-link-chars "]\\)")
-    (concat
-     "\\(https?\\|ftp\\|mailto\\|file\\|news\\|bbdb\\|vm\\|wl\\|mhe\\|rmail\\|gnus\\|shell\\):\\([^ " org-non-link-chars "]+\\)")
-    )
-  "Regular expression for matching links.")
-(defconst org-link-maybe-angles-regexp
-  (concat "<?\\(" org-link-regexp "\\)>?")
-  "Matches a link and optionally surrounding angle brackets.")
-(defconst org-protected-link-regexp
-  (concat "\000" org-link-regexp "\000")
-  "Matches a link and optionally surrounding angle brackets.")
+(defconst org-non-link-chars "]\t\n\r<>")
+(defconst org-link-types '("https?" "ftp" "mailto" "file" "news" "bbdb" "vm"
+                          "wl" "mhe" "rmail" "gnus" "shell" "info" "elisp"))
+(defconst org-link-re-with-space
+  (concat
+   "<?\\(" (mapconcat 'identity org-link-types "\\|") "\\):"
+   "\\([^" org-non-link-chars " ]"
+   "[^" org-non-link-chars "]*"
+   "[^" org-non-link-chars " ]\\)>?")
+   "Matches a link with spaces, optional angular brackets around it.")
+
+(defconst org-link-re-with-space2
+  (concat
+   "<?\\(" (mapconcat 'identity org-link-types "\\|") "\\):"
+   "\\([^" org-non-link-chars " ]"
+   "[^]\t\n\r]*"
+   "[^" org-non-link-chars " ]\\)>?")
+   "Matches a link with spaces, optional angular brackets around it.")
+
+(defconst org-angle-link-re
+  (concat
+   "<\\(" (mapconcat 'identity org-link-types "\\|") "\\):"
+   "\\([^" org-non-link-chars " ]"
+   "[^" org-non-link-chars "]*"
+   "\\)>")
+   "Matches link with angular brackets, spaces are allowed.")
+(defconst org-plain-link-re
+  (concat
+   "\\(" (mapconcat 'identity org-link-types "\\|") "\\):"
+   "\\([^]\t\n\r<>,;() ]+\\)")
+   "Matches plain link, without spaces.")
 
 (defconst org-bracket-link-regexp
   "\\[\\[\\([^]]+\\)\\]\\(\\[\\([^]]+\\)\\]\\)?\\]"
   "Matches a link in double brackets.")
 
+(defconst org-bracket-link-analytic-regexp
+  (concat
+  "\\[\\["
+  "\\(\\(" (mapconcat 'identity org-link-types "\\|") "\\):\\)?"
+  "\\([^]]+\\)"
+  "\\]"
+  "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
+  "\\]"))
+; 1: http:
+; 2: http
+; 3: path
+; 4: [desc]
+; 5: desc
+
+
 (defconst org-ts-lengths
   (cons (length (format-time-string (car org-time-stamp-formats)))
        (length (format-time-string (cdr org-time-stamp-formats))))
@@ -2176,32 +3105,81 @@ The following commands are available:
   "Regular expression for fast time stamp matching.")
 (defconst org-ts-regexp-both "[[<]\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\}[^\r\n>]*?\\)[]>]"
   "Regular expression for fast time stamp matching.")
-(defconst org-ts-regexp1 "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\)\\([^0-9>\r\n]*\\)\\(\\([0-9]\\{2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
+(defconst org-ts-regexp1 "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\)\\([^]0-9>\r\n]*\\)\\(\\([0-9]\\{2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
   "Regular expression matching time strings for analysis.")
 (defconst org-ts-regexp2 (concat "<" org-ts-regexp1 ">")
   "Regular expression matching time stamps, with groups.")
+(defconst org-ts-regexp3 (concat "[[<]" org-ts-regexp1 "[]>]")
+  "Regular expression matching time stamps (also [..]), with groups.")
 (defconst org-tr-regexp (concat org-ts-regexp "--?-?" org-ts-regexp)
   "Regular expression matching a time stamp range.")
 (defconst org-tsr-regexp (concat org-ts-regexp "\\(--?-?"
                                 org-ts-regexp "\\)?")
   "Regular expression matching a time stamp or time stamp range.")
 
-(defun org-activate-links (limit)
+(defvar org-\81§emph-face nil)
+
+(defun org-do-emphasis-faces (limit)
+  "Run through the buffer and add overlays to links."
+  (if (re-search-forward org-emph-re limit t)
+      (progn
+       (font-lock-prepend-text-property (match-beginning 2) (match-end 2)
+                                        'face
+                                        (nth 1 (assoc (match-string 3)
+                                                      org-emphasis-alist)))
+       (add-text-properties (match-beginning 2) (match-end 2)
+                            '(font-lock-multiline t))
+       (backward-char 1)
+       t)))
+
+(defun org-activate-plain-links (limit)
   "Run through the buffer and add overlays to links."
-  (if (re-search-forward org-link-regexp limit t)
+  (if (re-search-forward org-plain-link-re limit t)
       (progn
        (add-text-properties (match-beginning 0) (match-end 0)
                             (list 'mouse-face 'highlight
-                                  'keymap org-mouse-map))
+                                  'rear-nonsticky t
+                                  'keymap org-mouse-map
+                                  ))
        t)))
 
-(defun org-activate-links2 (limit)
+(defun org-activate-angle-links (limit)
   "Run through the buffer and add overlays to links."
-  (if (re-search-forward org-bracket-link-regexp limit t)
+  (if (re-search-forward org-angle-link-re limit t)
       (progn
        (add-text-properties (match-beginning 0) (match-end 0)
                             (list 'mouse-face 'highlight
-                                  'keymap org-mouse-map))
+                                  'rear-nonsticky t
+                                  'keymap org-mouse-map
+                                  ))
+       t)))
+
+(defun org-activate-bracket-links (limit)
+  "Run through the buffer and add overlays to bracketed links."
+  (if (re-search-forward org-bracket-link-regexp limit t)
+      (let* ((help (concat "LINK: "
+                          (org-match-string-no-properties 1)))
+            ;; FIXME: above we should remove the escapes.
+            ;; but that requires another match, protecting match data,
+            ;; a lot of overhead for font-lock.
+            (ip (list 'invisible 'org-link 'intangible t 'rear-nonsticky t
+                      'keymap org-mouse-map 'mouse-face 'highlight
+                      'help-echo help))
+            (vp (list 'rear-nonsticky t
+                      'keymap org-mouse-map 'mouse-face 'highlight
+                      'help-echo help)))
+       ;; We need to remove the invisible property here.  Table narrowing
+       ;; may have made some of this invisible.
+       (remove-text-properties (match-beginning 0) (match-end 0)
+                               '(invisible nil))
+       (if (match-end 3)
+           (progn
+             (add-text-properties (match-beginning 0) (match-beginning 3) ip)
+             (add-text-properties (match-beginning 3) (match-end 3) vp)
+             (add-text-properties (match-end 3) (match-end 0) ip))
+         (add-text-properties (match-beginning 0) (match-beginning 1) ip)
+         (add-text-properties (match-beginning 1) (match-end 1) vp)
+         (add-text-properties (match-end 1) (match-end 0) ip))
        t)))
 
 (defun org-activate-dates (limit)
@@ -2210,6 +3188,7 @@ The following commands are available:
       (progn
        (add-text-properties (match-beginning 0) (match-end 0)
                             (list 'mouse-face 'highlight
+                                  'rear-nonsticky t
                                   'keymap org-mouse-map))
        t)))
 
@@ -2222,22 +3201,39 @@ The following commands are available:
 
 (defun org-activate-target-links (limit)
   "Run through the buffer and add overlays to target matches."
-  (when (and org-radio-targets org-target-link-regexp)
+  (when org-target-link-regexp
     (let ((case-fold-search t))
       (if (re-search-forward org-target-link-regexp limit t)
          (progn
            (add-text-properties (match-beginning 0) (match-end 0)
                                 (list 'mouse-face 'highlight
+                                      'rear-nonsticky t
                                       'keymap org-mouse-map
+                                      'help-echo "Radio target link"
                                       'org-linked-text t))
            t)))))
 
 (defun org-update-radio-target-regexp ()
   "Find all radio targets in this file and update the regular expression."
   (interactive)
-  (when org-radio-targets
+  (when (memq 'radio org-activate-links)
     (setq org-target-link-regexp
          (org-make-target-link-regexp (org-all-targets 'radio)))
+    (org-restart-font-lock)))
+
+(defun org-hide-wide-columns (limit)
+  (let (s e)
+    (setq s (text-property-any (point) (or limit (point-max))
+                              'org-cwidth t))
+    (when s
+      (setq e (next-single-property-change s 'org-cwidth))
+      (add-text-properties s e '(invisible org-cwidth intangible t))
+      (goto-char e)
+      t)))
+
+(defun org-restart-font-lock ()
+  "Restart font-lock-mode, to force refontification."
+  (when (and (boundp 'font-lock-mode) font-lock-mode)
     (font-lock-mode -1)
     (font-lock-mode 1)))
 
@@ -2249,10 +3245,7 @@ With optional argument RADIO, only find radio targets."
     (save-excursion
       (goto-char (point-min))
       (while (re-search-forward re nil t)
-       (add-to-list 'rtn (downcase
-                           (if (fboundp 'match-string-no-properties)
-                               (match-string-no-properties 1)
-                             (match-string 1)))))
+       (add-to-list 'rtn (downcase (org-match-string-no-properties 1))))
       rtn)))
 
 (defun org-make-target-link-regexp (targets)
@@ -2276,19 +3269,20 @@ between words."
 
 (defun org-activate-camels (limit)
   "Run through the buffer and add overlays to dates."
-  (if org-activate-camels
-      (if (re-search-forward org-camel-regexp limit t)
-         (progn
-           (add-text-properties (match-beginning 0) (match-end 0)
-                                (list 'mouse-face 'highlight
-                                      'keymap org-mouse-map))
-           t))))
+  (if (re-search-forward org-camel-regexp limit t)
+      (progn
+       (add-text-properties (match-beginning 0) (match-end 0)
+                            (list 'mouse-face 'highlight
+                                  'rear-nonsticky t
+                                  'keymap org-mouse-map))
+       t)))
 
 (defun org-activate-tags (limit)
   (if (re-search-forward "[ \t]\\(:[A-Za-z_@0-9:]+:\\)[ \r\n]" limit t)
       (progn
        (add-text-properties (match-beginning 1) (match-end 1)
                             (list 'mouse-face 'highlight
+                                  'rear-nonsticky t
                                   'keymap org-mouse-map))
        t)))
 
@@ -2307,49 +3301,64 @@ between words."
 (defvar org-font-lock-keywords nil)
 
 (defun org-set-font-lock-defaults ()
-  (let ((org-font-lock-extra-keywords
-        (list
-         '("^\\(\\**\\)\\(\\*\\)\\(.*\\)" (1 (org-get-level-face 1))
-           (2 (org-get-level-face 2)) (3 (org-get-level-face 3)))
-         '(org-activate-links (0 'org-link t))
-         '(org-activate-links2 (0 'org-link t))
-         '(org-activate-target-links (0 'org-link t))
-         '(org-activate-dates (0 'org-link t))
-         '(org-activate-camels (0 'org-link t))
-         '(org-activate-tags (1 'org-tag t))
-         (list (concat "^\\*+[ \t]*" org-not-done-regexp)
-               '(1 'org-warning t))
-         (list (concat "\\[#[A-Z]\\]") '(0 'org-special-keyword t))
-         (list (concat "\\<" org-deadline-string) '(0 'org-special-keyword t))
-         (list (concat "\\<" org-scheduled-string) '(0 'org-special-keyword t))
-         (list (concat "\\<" org-closed-string) '(0 'org-special-keyword t))
-         ;; '("\\(\\s-\\|^\\)\\(\\*\\([a-zA-Z]+\\)\\*\\)\\([^a-zA-Z*]\\|$\\)"
-         ;; (3 'bold))
-         ;; '("\\(\\s-\\|^\\)\\(/\\([a-zA-Z]+\\)/\\)\\([^a-zA-Z*]\\|$\\)"
-         ;; (3 'italic))
-         ;; '("\\(\\s-\\|^\\)\\(_\\([a-zA-Z]+\\)_\\)\\([^a-zA-Z*]\\|$\\)"
-         ;; (3 'underline))
-         (list (concat "^\\*+[ \t]*\\<\\(" org-comment-string
-                       "\\|" org-quote-string "\\)\\>")
-               '(1 'org-special-keyword t))
-         '("^#.*" (0 'font-lock-comment-face t))
-         (if org-fontify-done-headline
-             (list (concat "^[*]+ +\\<\\(" org-done-string "\\)\\(.*\\)\\>")
-                   '(1 'org-done t) '(2 'org-headline-done t))
-           (list (concat "^[*]+ +\\<\\(" org-done-string "\\)\\>")
-                 '(1 'org-done t)))
-         '("^[ \t]*\\(\\(|\\|\\+-[-+]\\).*\\S-\\)"
-           (1 'org-table t))
-         '("^[ \t]*\\(:.*\\)" (1 'org-table t))
-         '("| *\\(:?=[^|\n]*\\)" (1 'org-formula t))
-         '("^[ \t]*| *\\([#!$*_^]\\) *|" (1 'org-formula t))
-         )))
-
+  (let* ((em org-fontify-emphasized-text)
+        (lk org-activate-links)
+        (org-font-lock-extra-keywords
+         ;; Headlines
+         (list
+          '("^\\(\\**\\)\\(\\*\\)\\(.*\\)" (1 (org-get-level-face 1))
+            (2 (org-get-level-face 2)) (3 (org-get-level-face 3)))
+          '("^[ \t]*\\(\\(|\\|\\+-[-+]\\).*\\S-\\)"
+            (1 'org-table))
+          ;; Links
+          (if (memq 'angle lk) '(org-activate-angle-links (0 'org-link t)))
+          (if (memq 'plain lk) '(org-activate-plain-links (0 'org-link t)))
+          (if (memq 'bracket lk) '(org-activate-bracket-links (0 'org-link t)))
+          (if (memq 'radio lk) '(org-activate-target-links (0 'org-link t)))
+          (if (memq 'date lk) '(org-activate-dates (0 'org-date t)))
+          (if (memq 'camel lk) '(org-activate-camels (0 'org-link t)))
+          (if (memq 'tag lk) '(org-activate-tags (1 'org-tag prepend)))
+          (if org-table-limit-column-width
+              '(org-hide-wide-columns (0 nil append)))
+          ;; TODO lines
+          (list (concat "^\\*+[ \t]*" org-not-done-regexp)
+                '(1 'org-todo t))
+          ;; Priorities
+          (list (concat "\\[#[A-Z]\\]") '(0 'org-special-keyword t))
+          ;; Special keywords
+          (list (concat "\\<" org-deadline-string) '(0 'org-special-keyword t))
+          (list (concat "\\<" org-scheduled-string) '(0 'org-special-keyword t))
+          (list (concat "\\<" org-closed-string) '(0 'org-special-keyword t))
+          (list (concat "\\<" org-clock-string) '(0 'org-special-keyword t))
+          ;; Emphasis
+          (if em '(org-do-emphasis-faces))
+          ;; Checkboxes, similar to Frank Ruell's org-checklet.el
+          '("^[ \t]*\\([-+*]\\|[0-9]+[.)]\\) +\\(\\[[ X]\\]\\)"
+            2 'bold prepend)
+          ;; COMMENT
+          (list (concat "^\\*+[ \t]*\\<\\(" org-comment-string
+                        "\\|" org-quote-string "\\)\\>")
+                '(1 'org-special-keyword t))
+          '("^#.*" (0 'font-lock-comment-face t))
+          ;; DONE
+          (if org-fontify-done-headline
+              (list (concat "^[*]+ +\\<\\(" org-done-string "\\)\\(.*\\)\\>")
+                    '(1 'org-done t) '(2 'org-headline-done t))
+            (list (concat "^[*]+ +\\<\\(" org-done-string "\\)\\>")
+                  '(1 'org-done t)))
+          ;; Table stuff
+          '("^[ \t]*\\(:.*\\)" (1 'org-table t))
+          '("| *\\(:?=[^|\n]*\\)" (1 'org-formula t))
+          '("^[ \t]*| *\\([#!$*_^]\\) *|" (1 'org-formula t))
+          (if org-format-transports-properties-p
+              '("| *\\(<[0-9]+>\\) *" (1 'org-formula t)))
+          '("^\\*+ \\(.*:ARCHIVE:.*\\)" (1 'org-archived prepend))
+          )))
+    (setq org-font-lock-extra-keywords (delq nil org-font-lock-extra-keywords))
     ;; Now set the full font-lock-keywords
-    (set (make-local-variable 'org-font-lock-keywords)
-        org-font-lock-extra-keywords)
-    (set (make-local-variable 'font-lock-defaults)
-        '(org-font-lock-keywords t nil nil backward-paragraph))
+    (org-set-local 'org-font-lock-keywords org-font-lock-extra-keywords)
+    (org-set-local 'font-lock-defaults
+                  '(org-font-lock-keywords t nil nil backward-paragraph))
     (kill-local-variable 'font-lock-keywords) nil))
 
 (defvar org-m nil)
@@ -2359,7 +3368,8 @@ between words."
   "Get the right face for match N in font-lock matching of healdines."
   (setq org-l (- (match-end 2) (match-beginning 1)))
   (if org-odd-levels-only (setq org-l (1+ (/ org-l 2))))
-  (setq org-f (nth (1- (% org-l org-n-levels)) org-level-faces))
+;  (setq org-f (nth (1- (% org-l org-n-levels)) org-level-faces))
+  (setq org-f (nth (% (1- org-l) org-n-levels) org-level-faces))
   (cond
    ((eq n 1) (if org-hide-leading-stars 'org-hide org-f))
    ((eq n 2) org-f)
@@ -2373,12 +3383,17 @@ between words."
         (inhibit-modification-hooks t)
         deactivate-mark buffer-file-name buffer-file-truename)
     (remove-text-properties beg end
-                           '(mouse-face nil keymap nil org-linked-text nil))))
-
+                           '(mouse-face nil keymap nil org-linked-text nil
+                                        rear-nonsticky nil
+                                        invisible nil intangible nil))))
 ;;; Visibility cycling
 
 (defvar org-cycle-global-status nil)
+(make-variable-buffer-local 'org-cycle-global-status)
 (defvar org-cycle-subtree-status nil)
+(make-variable-buffer-local 'org-cycle-subtree-status)
+
+;;;###autoload
 (defun org-cycle (&optional arg)
   "Visibility cycling for Org-mode.
 
@@ -2408,15 +3423,22 @@ between words."
   no headline in line 1, this function will act as if called with prefix arg."
   (interactive "P")
 
-  (if (or (and (bobp) (not (looking-at outline-regexp)))
-         (equal arg '(4)))
-      ;; special case:  use global cycling
-      (setq arg t))
-
-  (let ((outline-regexp
-        (if org-cycle-include-plain-lists
-            "\\*+\\|\\([ \t]*\\)\\([-+*]\\|[0-9]+[.)]\\) "
-          outline-regexp)))
+  (let* ((outline-regexp
+         (if org-cycle-include-plain-lists
+             "\\*+\\|\\([ \t]*\\)\\([-+*]\\|[0-9]+[.)]\\) "
+           outline-regexp))
+        (bob-special (and org-cycle-global-at-bob (bobp)
+                          (not (looking-at outline-regexp))))
+        (org-cycle-hook
+         (if bob-special
+             (delq 'org-optimize-window-after-visibility-change
+                   (copy-sequence org-cycle-hook))
+           org-cycle-hook))
+        (pos (point)))
+
+    (if (or bob-special (equal arg '(4)))
+       ;; special case:  use global cycling
+       (setq arg t))
 
     (cond
 
@@ -2424,29 +3446,20 @@ between words."
       ;; Enter the table or move to the next field in the table
       (or (org-table-recognize-table.el)
          (progn
-           (org-table-justify-field-maybe)
-           (org-table-next-field))))
+           (if arg (org-table-edit-field t)
+             (org-table-justify-field-maybe)
+             (call-interactively 'org-table-next-field)))))
 
      ((eq arg t) ;; Global cycling
-
+      
       (cond
        ((and (eq last-command this-command)
             (eq org-cycle-global-status 'overview))
        ;; We just created the overview - now do table of contents
        ;; This can be slow in very large buffers, so indicate action
        (message "CONTENTS...")
-       (save-excursion
-         ;; Visit all headings and show their offspring
-         (goto-char (point-max))
-         (catch 'exit
-           (while (and (progn (condition-case nil
-                                  (outline-previous-visible-heading 1)
-                                (error (goto-char (point-min))))
-                              t)
-                       (looking-at outline-regexp))
-             (show-branches)
-             (if (bobp) (throw 'exit nil))))
-         (message "CONTENTS...done"))
+       (org-content)
+       (message "CONTENTS...done")
        (setq org-cycle-global-status 'contents)
        (run-hook-with-args 'org-cycle-hook 'contents))
 
@@ -2460,7 +3473,7 @@ between words."
 
        (t
        ;; Default action: go to overview
-       (hide-sublevels 1)
+       (org-overview)
        (message "OVERVIEW")
        (setq org-cycle-global-status 'overview)
        (run-hook-with-args 'org-cycle-hook 'overview))))
@@ -2490,10 +3503,10 @@ between words."
          (outline-next-heading))
        ;; Find out what to do next and set `this-command'
        (cond
-        ((= eos eoh)
+        ((and (= eos eoh)
          ;; Nothing is hidden behind this heading
          (message "EMPTY ENTRY")
-         (setq org-cycle-subtree-status nil))
+         (setq org-cycle-subtree-status nil)))
         ((>= eol eos)
          ;; Entire subtree is hidden in one line: open it
          (org-show-entry)
@@ -2517,8 +3530,15 @@ between words."
 
      ;; TAB emulation
      (buffer-read-only (org-back-to-heading))
-     ((if (and (eq org-cycle-emulate-tab 'white)
-              (save-excursion (beginning-of-line 1) (looking-at "[ \t]+$")))
+
+     ((org-try-cdlatex-tab))
+
+     ((if (and (memq org-cycle-emulate-tab '(white whitestart))
+              (save-excursion (beginning-of-line 1) (looking-at "[ \t]*"))
+              (or (and (eq org-cycle-emulate-tab 'white)
+                       (= (match-end 0) (point-at-eol)))
+                  (and (eq org-cycle-emulate-tab 'whitestart)
+                       (>= (match-end 0) pos))))
          t
        (eq org-cycle-emulate-tab t))
       (if (and (looking-at "[ \n\r\t]")
@@ -2533,16 +3553,60 @@ between words."
          (org-back-to-heading)
          (org-cycle))))))
 
+;;;###autoload
+(defun org-global-cycle (&optional arg)
+  "Cycle the global visibility.  For details see `org-cycle'."
+  (interactive "P")
+  (if (integerp arg)
+      (progn
+       (show-all)
+       (hide-sublevels arg)
+       (setq org-cycle-global-status 'contents))
+    (org-cycle '(4))))
+
+(defun org-overview ()
+  "Switch to overview mode, shoing only top-level headlines.
+Really, this shows all headlines with level equal or greater than the level
+of the first headline in the buffer.  This is important, because if the
+first headline is not level one, then (hide-sublevels 1) gives confusing
+results."
+  (interactive)
+  (hide-sublevels (save-excursion
+                   (goto-char (point-min))
+                   (if (re-search-forward (concat "^" outline-regexp) nil t)
+                       (progn
+                         (goto-char (match-beginning 0))
+                         (funcall outline-level))
+                     1))))
+
+;; FIXME: allow an argument to give a limiting level for this.
+(defun org-content ()
+  "Show all headlines in the buffer, like a table of contents"
+  (interactive)
+  (save-excursion
+    ;; Visit all headings and show their offspring
+    (goto-char (point-max))
+    (catch 'exit
+      (while (and (progn (condition-case nil
+                            (outline-previous-visible-heading 1)
+                          (error (goto-char (point-min))))
+                        t)
+                 (looking-at outline-regexp))
+       (show-branches)
+       (if (bobp) (throw 'exit nil))))))
+
+
 (defun org-optimize-window-after-visibility-change (state)
   "Adjust the window after a change in outline visibility.
 This function is the default value of the hook `org-cycle-hook'."
-  (cond
-   ((eq state 'overview) (org-first-headline-recenter 1))
-   ((eq state 'content)  nil)
-   ((eq state 'all)      nil)
-   ((eq state 'folded)   nil)
-   ((eq state 'children) (or (org-subtree-end-visible-p) (recenter 1)))
-   ((eq state 'subtree)  (or (org-subtree-end-visible-p) (recenter 1)))))
+  (when (get-buffer-window (current-buffer))
+    (cond
+     ((eq state 'overview) (org-first-headline-recenter 1))
+     ((eq state 'content)  nil)
+     ((eq state 'all)      nil)
+     ((eq state 'folded)   nil)
+     ((eq state 'children) (or (org-subtree-end-visible-p) (recenter 1)))
+     ((eq state 'subtree)  (or (org-subtree-end-visible-p) (recenter 1))))))
 
 (defun org-subtree-end-visible-p ()
   "Is the end of the current subtree visible?"
@@ -2553,7 +3617,7 @@ This function is the default value of the hook `org-cycle-hook'."
   "Move cursor to the first headline and recenter the headline.
 Optional argument N means, put the headline into the Nth line of the window."
   (goto-char (point-min))
-  (when (re-search-forward (concat "^" outline-regexp) nil t)
+  (when (re-search-forward (concat "^\\(" outline-regexp "\\)") nil t)
     (beginning-of-line)
     (recenter (prefix-numeric-value N))))
 
@@ -2569,6 +3633,7 @@ Optional argument N means, put the headline into the Nth line of the window."
 (define-key org-goto-map [(?q)]     'org-goto-quit)
 (define-key org-goto-map [(control ?g)] 'org-goto-quit)
 (define-key org-goto-map "\C-i" 'org-cycle)
+(define-key org-goto-map [(tab)] 'org-cycle)
 (define-key org-goto-map [(down)] 'outline-next-visible-heading)
 (define-key org-goto-map [(up)] 'outline-previous-visible-heading)
 (define-key org-goto-map "n" 'outline-next-visible-heading)
@@ -2630,6 +3695,7 @@ or nil."
        (insert-buffer-substring buf)
        (let ((org-startup-truncated t)
              (org-startup-folded t)
+             (org-startup-align-all-tables nil)
              (org-startup-with-deadline-check nil))
          (org-mode))
        (setq buffer-read-only t)
@@ -2650,7 +3716,6 @@ or nil."
     (kill-buffer "*org-goto*")
     org-selected-point))
 
-;;  FIXME:  It may not be a good idea to temper with the prefix argument...
 (defun org-goto-ret (&optional arg)
   "Finish `org-goto' by going to the new location."
   (interactive "P")
@@ -2693,24 +3758,38 @@ or nil."
   "To temporarily disable the active region.")
 
 (defun org-insert-heading (&optional force-heading)
-  "Insert a new heading or item with same depth at point."
+  "Insert a new heading or item with same depth at point.
+If point is in a plain list and FORCE-HEADING is nil, create a new list item.
+If point is at the beginning of a headline, insert a sibling before the
+current headline.  If point is in the middle of a headline, split the headline
+at that position and make the rest of the headline part of the sibling below
+the current headline."
   (interactive "P")
-  (when (or force-heading (not (org-insert-item)))
-    (let* ((head (save-excursion
-                  (condition-case nil
-                      (org-back-to-heading)
-                    (error (outline-next-heading)))
-                  (prog1 (match-string 0)
-                    (funcall outline-level)))))
-      (unless (bolp) (newline))
-      (insert head)
-      (unless (eolp)
-       (save-excursion (newline-and-indent)))
-      (unless (equal (char-before) ?\ )
-       (insert " "))
-      (run-hooks 'org-insert-heading-hook))))
-
-(defun org-insert-item ()
+  (if (= (buffer-size) 0)
+      (insert "\n* ")
+    (when (or force-heading (not (org-insert-item)))
+      (let* ((head (save-excursion
+                    (condition-case nil
+                        (progn
+                          (org-back-to-heading)
+                          (match-string 0))
+                      (error "*"))))
+            pos)
+       (cond
+        ((and (org-on-heading-p) (bolp)
+              (save-excursion (backward-char 1) (not (org-invisible-p))))
+         (open-line 1))
+        ((and (bolp) (save-excursion
+                       (backward-char 1) (not (org-invisible-p))))
+         nil)
+        (t (newline)))
+       (insert head) (just-one-space)
+       (setq pos (point))
+       (end-of-line 1)
+       (unless (= (point) pos) (just-one-space) (backward-delete-char 1))
+       (run-hooks 'org-insert-heading-hook)))))
+
+(defun org-insert-item (&optional checkbox)
   "Insert a new item at the current level.
 Return t when things worked, nil when we are not in an item."
   (when (save-excursion
@@ -2720,8 +3799,23 @@ Return t when things worked, nil when we are not in an item."
                (org-at-item-p)
                t)
            (error nil)))
-    (unless (bolp) (newline))
-    (insert (match-string 0))
+    (let* ((bul (match-string 0))
+          (eow (save-excursion (beginning-of-line 1) (looking-at "[ \t]*")
+                               (match-end 0)))
+          pos)
+      (cond
+       ((and (org-at-item-p) (<= (point) eow))
+       ;; before the bullet
+       (beginning-of-line 1)
+       (open-line 1))
+       ((<= (point) eow)
+       (beginning-of-line 1))
+       (t (newline)))
+      (insert bul (if checkbox "[ ]" ""))
+      (just-one-space)
+      (setq pos (point))
+      (end-of-line 1)
+      (unless (= (point) pos) (just-one-space) (backward-delete-char 1)))
     (org-maybe-renumber-ordered-list)
     t))
 
@@ -2730,16 +3824,17 @@ Return t when things worked, nil when we are not in an item."
 If the heading has no TODO state, or if the state is DONE, use the first
 state (TODO by default).  Also with prefix arg, force first state."
   (interactive "P")
-  (org-insert-heading)
-  (save-excursion
-    (org-back-to-heading)
-    (outline-previous-heading)
-    (looking-at org-todo-line-regexp))
-  (if (or arg
-         (not (match-beginning 2))
-         (equal (match-string 2) org-done-string))
-      (insert (car org-todo-keywords) " ")
-    (insert (match-string 2) " ")))
+  (when (not (org-insert-item 'checkbox))
+    (org-insert-heading)
+    (save-excursion
+      (org-back-to-heading)
+      (outline-previous-heading)
+      (looking-at org-todo-line-regexp))
+    (if (or arg
+           (not (match-beginning 2))
+           (equal (match-string 2) org-done-string))
+       (insert (car org-todo-keywords) " ")
+      (insert (match-string 2) " "))))
 
 (defun org-promote-subtree ()
   "Promote the entire subtree.
@@ -2806,9 +3901,7 @@ in the region."
     (replace-match up-head nil t)
     ;; Fixup tag positioning
     (and org-auto-align-tags (org-set-tags nil t))
-    (if org-adapt-indentation
-       (org-fixup-indentation (if (> diff 1) "^  " "^ ") ""
-                              (if (> diff 1) "^ ? ?\\S-" "^ ?\\S-")))))
+    (if org-adapt-indentation (org-fixup-indentation (- diff)))))
 
 (defun org-demote ()
   "Demote the current heading lower down the tree.
@@ -2821,8 +3914,7 @@ in the region."
     (replace-match down-head nil t)
     ;; Fixup tag positioning
     (and org-auto-align-tags (org-set-tags nil t))
-    (if org-adapt-indentation
-       (org-fixup-indentation "^ " (if (> diff 1) "   " "  ") "^\\S-"))))
+    (if org-adapt-indentation (org-fixup-indentation diff))))
 
 (defun org-map-tree (fun)
   "Call FUN for every heading underneath the current one."
@@ -2851,19 +3943,23 @@ in the region."
                  (not (eobp)))
        (funcall fun)))))
 
-(defun org-fixup-indentation (from to prohibit)
-  "Change the indentation in the current entry by re-replacing FROM with TO.
-However, if the regexp PROHIBIT matches at all, don't do anything.
-This is being used to change indentation along with the length of the
-heading marker.  But if there are any lines which are not indented, nothing
-is changed at all."
+(defun org-fixup-indentation (diff)
+  "Change the indentation in the current entry by DIFF
+However, if any line in the current entry has no indentation, or if it
+would end up with no indentation after the change, nothing at all is done."
   (save-excursion
     (let ((end (save-excursion (outline-next-heading)
-                              (point-marker))))
+                              (point-marker)))
+         (prohibit (if (> diff 0)
+                       "^\\S-" 
+                     (concat "^ \\{0," (int-to-string (- diff)) "\\}\\S-")))
+         col)
       (unless (save-excursion (re-search-forward prohibit end t))
-       (while (re-search-forward from end t)
-         (replace-match to)
-         (beginning-of-line 2)))
+       (while (re-search-forward "^[ \t]+" end t)
+         (goto-char (match-end 0))
+         (setq col (current-column))
+         (if (< diff 0) (replace-match ""))
+         (indent-to (+ diff col))))
       (move-marker end nil))))
 
 ;;; Vertical tree motion, cutting and pasting of subtrees
@@ -2951,7 +4047,6 @@ If CUT is non nil, actually cut the subtree."
               (if cut "Cut" "Copied")
               (length org-subtree-clip)))))
 
-;; FIXME: this needs to be adapted for the odd-level-only stuff.
 (defun org-paste-subtree (&optional level tree)
   "Paste the clipboard as a subtree, with modification of headline level.
 The entire subtree is promoted or demoted in order to match a new headline
@@ -2974,7 +4069,7 @@ If optional TREE is given, use this text instead of the kill ring."
     (error
      (substitute-command-keys
       "The kill is not a (set of) tree(s) - please use \\[yank] to yank anyway")))
-  (let* ((txt (or tree (current-kill 0)))
+  (let* ((txt (or tree (and kill-ring (current-kill 0))))
         (^re (concat "^\\(" outline-regexp "\\)"))
         (re  (concat "\\(" outline-regexp "\\)"))
         (^re_ (concat "\\(" outline-regexp "\\)[  \t]*"))
@@ -3023,8 +4118,12 @@ If optional TREE is given, use this text instead of the kill ring."
        (progn (insert "\n") (backward-char 1)))
     ;; Paste
     (setq beg (point))
+    (if (string-match "[ \t\r\n]+\\'" txt)
+       (setq txt (replace-match "\n" t t txt)))
     (insert txt)
     (setq end (point))
+    (if (looking-at "[ \t\r\n]+")
+       (replace-match "\n"))
     (goto-char beg)
     ;; Shift if necessary
     (if (= shift 0)
@@ -3037,7 +4136,8 @@ If optional TREE is given, use this text instead of the kill ring."
        (goto-char (point-min))
        (message "Pasted at level %d, with shift by %d levels"
                 new-level shift1)))
-    (if (and (eq org-subtree-clip (current-kill 0))
+    (if (and kill-ring
+            (eq org-subtree-clip (current-kill 0))
             org-subtree-clip-folded)
        ;; The tree was folded before it was killed/copied
        (hide-subtree))))
@@ -3049,8 +4149,9 @@ headline level is not the largest headline level in the tree.
 So this will actually accept several entries of equal levels as well,
 which is OK for `org-paste-subtree'.
 If optional TXT is given, check this string instead of the current kill."
-  (let* ((kill (or txt (current-kill 0) ""))
-        (start-level (and (string-match (concat "\\`" outline-regexp) kill)
+  (let* ((kill (or txt (and kill-ring (current-kill 0)) ""))
+        (start-level (and kill
+                          (string-match (concat "\\`" outline-regexp) kill)
                           (- (match-end 0) (match-beginning 0))))
         (re (concat "^" outline-regexp))
         (start 1))
@@ -3062,6 +4163,14 @@ If optional TXT is given, check this string instead of the current kill."
              (throw 'exit nil)))
        t))))
 
+(defun org-narrow-to-subtree ()
+  "Narrow buffer to the current subtree."
+  (interactive)
+  (save-excursion
+    (narrow-to-region
+     (progn (org-back-to-heading) (point))
+     (progn (org-end-of-subtree t) (point)))))
+
 ;;; Plain list items
 
 (defun org-at-item-p ()
@@ -3076,16 +4185,79 @@ If optional TXT is given, check this string instead of the current kill."
        ((= llt ?\)) "\\([ \t]*\\([-+]\\|\\([0-9]+)\\)\\)\\|[ \t]+\\*\\)\\( \\|$\\)")
        (t (error "Invalid value of `org-plain-list-ordered-item-terminator'")))))))
 
-(defun org-get-indentation ()
-  "Get the indentation of the current line, interpreting tabs."
-  (save-excursion
-    (beginning-of-line 1)
-    (skip-chars-forward " \t")
-    (current-column)))
+(defun org-at-item-checkbox-p ()
+  "Is point at a line starting a plain-list item with a checklet?"
+  (and (org-at-item-p)
+       (save-excursion
+        (goto-char (match-end 0))
+        (skip-chars-forward " \t")
+        (looking-at "\\[[ X]\\]"))))
+
+(defun org-toggle-checkbox (&optional arg)
+  "Toggle the checkbox in the current line."
+  (interactive "P")
+  (catch 'exit
+    (let (beg end status (firstnew 'unknown))
+      (cond
+       ((org-region-active-p)
+       (setq beg (region-beginning) end (region-end)))
+       ((org-on-heading-p)
+       (setq beg (point) end (save-excursion (outline-next-heading) (point))))
+       ((org-at-item-checkbox-p)
+       (save-excursion
+         (replace-match (if (equal (match-string 0) "[ ]") "[X]" "[ ]") t t))
+       (throw 'exit t))
+       (t (error "Not at a checkbox or heading, and no active region")))
+      (save-excursion
+       (goto-char beg)
+       (while (< (point) end)
+         (when (org-at-item-checkbox-p)
+           (setq status (equal (match-string 0) "[X]"))
+           (when (eq firstnew 'unknown)
+             (setq firstnew (not status)))
+           (replace-match 
+            (if (if arg (not status) firstnew) "[X]" "[ ]") t t))
+         (beginning-of-line 2))))))
+
+(defun org-get-indentation (&optional line)
+  "Get the indentation of the current line, interpreting tabs.
+When LINE is given, assume it represents a line and compute its indentation."
+  (if line
+      (if (string-match "^ *" (org-remove-tabs line))
+         (match-end 0))
+    (save-excursion
+      (beginning-of-line 1)
+      (skip-chars-forward " \t")
+      (current-column))))
+
+(defun org-remove-tabs (s &optional width)
+  "Replace tabulators in S with spaces.
+Assumes that s is a single line, starting in column 0."
+  (setq width (or width tab-width))
+  (while (string-match "\t" s)
+    (setq s (replace-match
+            (make-string
+             (- (* width (/ (+ (match-beginning 0) width) width))
+                (match-beginning 0)) ?\ )
+            t t s)))
+  s)
+
+;; FIXME: document properly.
+(defun org-fix-indentation (line ind)
+  "If the current indenation is smaller than ind1, leave it alone.
+If it is larger than ind, reduce it by ind."
+  (let* ((l (org-remove-tabs line))
+        (i (org-get-indentation l))
+        (i1 (car ind)) (i2 (cdr ind)))
+    (if (>= i i2) (setq l (substring line i2)))
+    (if (> i1 0)
+       (concat (make-string i1 ?\ ) l)
+      l)))
 
 (defun org-beginning-of-item ()
   "Go to the beginning of the current hand-formatted item.
 If the cursor is not in an item, throw an error."
+  (interactive)
   (let ((pos (point))
        (limit (save-excursion (org-back-to-heading)
                               (beginning-of-line 2) (point)))
@@ -3099,7 +4271,7 @@ If the cursor is not in an item, throw an error."
            (while t
              (beginning-of-line 0)
              (if (< (point) limit) (throw 'exit nil))
-             (unless (looking-at " \t]*$")
+             (unless (looking-at "[ \t]*$")
                (skip-chars-forward " \t")
                (setq ind1 (current-column))
                (if (< ind1 ind)
@@ -3111,6 +4283,7 @@ If the cursor is not in an item, throw an error."
 (defun org-end-of-item ()
   "Go to the end of the current hand-formatted item.
 If the cursor is not in an item, throw an error."
+  (interactive)
   (let ((pos (point))
        (limit (save-excursion (outline-next-heading) (point)))
        (ind (save-excursion
@@ -3130,11 +4303,45 @@ If the cursor is not in an item, throw an error."
       (goto-char pos)
       (error "Not in an item"))))
 
-(defun org-move-item-down (arg)
+(defun org-next-item ()
+  "Move to the beginning of the next item in the current plain list.
+Error if not at a plain list, or if this is the last item in the list."
+  (interactive)
+  (let (ind ind1 (pos (point)))
+    (org-beginning-of-item)
+    (setq ind (org-get-indentation))
+    (org-end-of-item)
+    (setq ind1 (org-get-indentation))
+    (unless (and (org-at-item-p) (= ind ind1))
+      (goto-char pos)
+      (error "On last item"))))
+
+(defun org-previous-item ()
+  "Move to the beginning of the previous item in the current plain list.
+Error if not at a plain list, or if this is the last item in the list."
+  (interactive)
+  (let (beg ind (pos (point)))
+    (org-beginning-of-item)
+    (setq beg (point))
+    (setq ind (org-get-indentation))
+    (goto-char beg)
+    (catch 'exit
+      (while t
+       (beginning-of-line 0)
+       (if (looking-at "[ \t]*$")
+           nil
+         (if (<= (org-get-indentation) ind)
+             (throw 'exit t)))))
+    (condition-case nil
+       (org-beginning-of-item)
+      (error (goto-char pos)
+            (error "On first item")))))
+
+(defun org-move-item-down ()
   "Move the plain list item at point down, i.e. swap with following item.
 Subitems (items with larger indentation) are considered part of the item,
 so this really moves item trees."
-  (interactive "p")
+  (interactive)
   (let (beg end ind ind1 (pos (point)) txt)
     (org-beginning-of-item)
     (setq beg (point))
@@ -3213,7 +4420,7 @@ doing the renumbering."
 
 (defun org-renumber-ordered-list (arg)
   "Renumber an ordered plain list.
-Cursor next to be in the first line of an item, the line that starts
+Cursor needs to be in the first line of an item, the line that starts
 with something like \"1.\" or \"2)\"."
   (interactive "p")
   (unless (and (org-at-item-p)
@@ -3258,7 +4465,6 @@ with something like \"1.\" or \"2)\"."
 (defvar org-last-indent-begin-marker (make-marker))
 (defvar org-last-indent-end-marker (make-marker))
 
-
 (defun org-outdent-item (arg)
   "Outdent a local list item."
   (interactive "p")
@@ -3269,125 +4475,414 @@ with something like \"1.\" or \"2)\"."
   (interactive "p")
   (unless (org-at-item-p)
     (error "Not on an item"))
-  (let (beg end ind ind1)
-    (if (memq last-command '(org-shiftmetaright org-shiftmetaleft))
+  (save-excursion
+    (let (beg end ind ind1)
+      (if (memq last-command '(org-shiftmetaright org-shiftmetaleft))
          (setq beg org-last-indent-begin-marker
                end org-last-indent-end-marker)
-      (org-beginning-of-item)
-      (setq beg (move-marker org-last-indent-begin-marker (point)))
-      (org-end-of-item)
-      (setq end (move-marker org-last-indent-end-marker (point))))
-    (goto-char beg)
-    (skip-chars-forward " \t") (setq ind (current-column))
-    (if (< (+ arg ind) 0) (error "Cannot outdent beyond margin"))
-    (while (< (point) end)
-      (beginning-of-line 1)
-      (skip-chars-forward " \t") (setq ind1 (current-column))
-      (delete-region (point-at-bol) (point))
-      (indent-to-column (+ ind1 arg))
-      (beginning-of-line 2))
-    (goto-char beg)))
+       (org-beginning-of-item)
+       (setq beg (move-marker org-last-indent-begin-marker (point)))
+       (org-end-of-item)
+       (setq end (move-marker org-last-indent-end-marker (point))))
+      (goto-char beg)
+      (skip-chars-forward " \t") (setq ind (current-column))
+      (if (< (+ arg ind) 0) (error "Cannot outdent beyond margin"))
+      (while (< (point) end)
+       (beginning-of-line 1)
+       (skip-chars-forward " \t") (setq ind1 (current-column))
+       (delete-region (point-at-bol) (point))
+       (indent-to-column (+ ind1 arg))
+       (beginning-of-line 2)))))
 
 ;;; Archiving
 
-(defun org-archive-subtree ()
+(defun org-archive-subtree (&optional find-done)
   "Move the current subtree to the archive.
 The archive can be a certain top-level heading in the current file, or in
 a different file.  The tree will be moved to that location, the subtree
-heading be marked DONE, and the current time will be added."
-  (interactive)
-  ;; Save all relevant TODO keyword-relatex variables
-  (let ((tr-org-todo-line-regexp org-todo-line-regexp) ; keep despite compiler
-       (tr-org-todo-keywords org-todo-keywords)
-       (tr-org-todo-interpretation org-todo-interpretation)
-       (tr-org-done-string org-done-string)
-       (tr-org-todo-regexp org-todo-regexp)
-       (tr-org-todo-line-regexp org-todo-line-regexp)
-       (this-buffer (current-buffer))
-       file heading buffer level newfile-p)
-    (if (string-match "\\(.*\\)::\\(.*\\)" org-archive-location)
+heading be marked DONE, and the current time will be added.
+
+When called with prefix argument FIND-DONE, find whole trees without any
+open TODO items and archive them (after getting confirmation from the user).
+If the cursor is not at a headline when this comand is called, try all level
+1 trees.  If the cursor is on a headline, only try the direct children of
+this heading. "
+  (interactive "P")
+  (if find-done
+      (org-archive-all-done)
+    ;; Save all relevant TODO keyword-relatex variables
+    
+    (let ((tr-org-todo-line-regexp org-todo-line-regexp) ; keep despite compiler
+         (tr-org-todo-keywords org-todo-keywords)
+         (tr-org-todo-interpretation org-todo-interpretation)
+         (tr-org-done-string org-done-string)
+         (tr-org-todo-regexp org-todo-regexp)
+         (tr-org-todo-line-regexp org-todo-line-regexp)
+         (this-buffer (current-buffer))
+         file heading buffer level newfile-p)
+      (if (string-match "\\(.*\\)::\\(.*\\)" org-archive-location)
+         (progn
+           (setq file (format (match-string 1 org-archive-location)
+                              (file-name-nondirectory buffer-file-name))
+                 heading (match-string 2 org-archive-location)))
+       (error "Invalid `org-archive-location'"))
+      (if (> (length file) 0)
+         (setq newfile-p (not (file-exists-p file))
+               buffer (find-file-noselect file))
+       (setq buffer (current-buffer)))
+      (unless buffer
+       (error "Cannot access file \"%s\"" file))
+      (if (and (> (length heading) 0)
+              (string-match "^\\*+" heading))
+         (setq level (match-end 0))
+       (setq heading nil level 0))
+      (save-excursion
+       ;; We first only copy, in case something goes wrong
+       ;; we need to protect this-command, to avoid kill-region sets it,
+       ;; which would lead to duplication of subtrees
+       (let (this-command) (org-copy-subtree))
+       (set-buffer buffer)
+       ;; Enforce org-mode for the archive buffer
+       (if (not (org-mode-p))
+           ;; Force the mode for future visits.
+           (let ((org-insert-mode-line-in-empty-file t))
+             (call-interactively 'org-mode)))
+       (when newfile-p
+         (goto-char (point-max))
+         (insert (format "\nArchived entries from file %s\n\n"
+                         (buffer-file-name this-buffer))))
+       ;; Force the TODO keywords of the original buffer
+       (let ((org-todo-line-regexp tr-org-todo-line-regexp)
+             (org-todo-keywords tr-org-todo-keywords)
+             (org-todo-interpretation tr-org-todo-interpretation)
+             (org-done-string tr-org-done-string)
+             (org-todo-regexp tr-org-todo-regexp)
+             (org-todo-line-regexp tr-org-todo-line-regexp))
+         (goto-char (point-min))
+         (if heading
+             (progn
+               (if (re-search-forward
+                    (concat "\\(^\\|\r\\)"
+                            (regexp-quote heading) "[ \t]*\\($\\|\r\\)")
+                    nil t)
+                   (goto-char (match-end 0))
+                 ;; Heading not found, just insert it at the end
+                 (goto-char (point-max))
+                 (or (bolp) (insert "\n"))
+                 (insert "\n" heading "\n")
+                 (end-of-line 0))
+               ;; Make the subtree visible
+               (show-subtree)
+               (org-end-of-subtree t)
+               (skip-chars-backward " \t\r\n")
+               (and (looking-at "[ \t\r\n]*")
+                    (replace-match "\n\n")))
+           ;; No specific heading, just go to end of file.
+           (goto-char (point-max)) (insert "\n"))
+         ;; Paste
+         (org-paste-subtree (1+ level))
+         ;; Mark the entry as done, i.e. set to last work in org-todo-keywords
+         (if org-archive-mark-done
+             (org-todo (length org-todo-keywords)))
+         ;; Move cursor to right after the TODO keyword
+         (when org-archive-stamp-time
+           (beginning-of-line 1)
+           (looking-at org-todo-line-regexp)
+           (goto-char (or (match-end 2) (match-beginning 3)))
+           (insert "(" (format-time-string (cdr org-time-stamp-formats)
+                                           (org-current-time))
+                   ")"))
+         ;; Save the buffer, if it is not the same buffer.
+         (if (not (eq this-buffer buffer)) (save-buffer))))
+      ;; Here we are back in the original buffer.  Everything seems to have
+      ;; worked.  So now cut the tree and finish up.
+      (let (this-command) (org-cut-subtree))
+      (if (and (not (eobp)) (looking-at "[ \t]*$")) (kill-line))
+      (message "Subtree archived %s"
+              (if (eq this-buffer buffer)
+                  (concat "under heading: " heading)
+                (concat "in file: " (abbreviate-file-name file)))))))
+
+(defun org-archive-all-done (&optional tag)
+  "Archive sublevels of the current tree without open TODO items.
+If the cursor is not on a headline, try all level 1 trees.  If
+it is on a headline, try all direct children.
+When TAG is non-nil, don't move trees, but mark them with the ARCHIVE tag."
+  (let ((re (concat "^\\*+ +" org-not-done-regexp)) re1
+       (rea (concat ".*:" org-archive-tag ":"))
+       (begm (make-marker))
+       (endm (make-marker))
+       (question (if tag "Set ARCHIVE tag (no open TODO items)? "
+                   "Move subtree to archive (no open TODO items)? "))
+       beg end (cntarch 0))
+    (if (org-on-heading-p)
        (progn
-         (setq file (format (match-string 1 org-archive-location)
-                            (file-name-nondirectory buffer-file-name))
-               heading (match-string 2 org-archive-location)))
-      (error "Invalid `org-archive-location'"))
-    (if (> (length file) 0)
-       (setq newfile-p (not (file-exists-p file))
-             buffer (find-file-noselect file))
-      (setq buffer (current-buffer)))
-    (unless buffer
-      (error "Cannot access file \"%s\"" file))
-    (if (and (> (length heading) 0)
-            (string-match "^\\*+" heading))
-       (setq level (match-end 0))
-      (setq heading nil level 0))
+         (setq re1 (concat "^" (regexp-quote
+                                (make-string 
+                                 (1+ (- (match-end 0) (match-beginning 0)))
+                                 ?*))
+                           " "))
+         (move-marker begm (point))
+         (move-marker endm (org-end-of-subtree)))
+      (setq re1 "^* ")
+      (move-marker begm (point-min))
+      (move-marker endm (point-max)))
     (save-excursion
-      ;; We first only copy, in case something goes wrong
-      ;; we need to protect this-command, to avoid kill-region sets it,
-      ;; which would lead to duplication of subtrees
-      (let (this-command) (org-copy-subtree))
-      (set-buffer buffer)
-      ;; Enforce org-mode for the archive buffer
-      (if (not (eq major-mode 'org-mode))
-         ;; Force the mode for future visits.
-         (let ((org-insert-mode-line-in-empty-file t))
-           (call-interactively 'org-mode)))
-      (when newfile-p
-       (goto-char (point-max))
-       (insert (format "\nArchived entries from file %s\n\n"
-                       (buffer-file-name this-buffer))))
-      ;; Force the TODO keywords of the original buffer
-      (let ((org-todo-line-regexp tr-org-todo-line-regexp)
-           (org-todo-keywords tr-org-todo-keywords)
-           (org-todo-interpretation tr-org-todo-interpretation)
-           (org-done-string tr-org-done-string)
-           (org-todo-regexp tr-org-todo-regexp)
-           (org-todo-line-regexp tr-org-todo-line-regexp))
-       (goto-char (point-min))
-       (if heading
-           (progn
-             (if (re-search-forward
-                  (concat "\\(^\\|\r\\)"
-                          (regexp-quote heading) "[ \t]*\\($\\|\r\\)")
-                  nil t)
-                 (goto-char (match-end 0))
-               ;; Heading not found, just insert it at the end
-               (goto-char (point-max))
-               (or (bolp) (insert "\n"))
-               (insert "\n" heading "\n")
-               (end-of-line 0))
-             ;; Make the heading visible, and the following as well
-             (let ((org-show-following-heading t)) (org-show-hierarchy-above))
-             (if (re-search-forward
-                  (concat "^" (regexp-quote (make-string level ?*)) "[ \t]")
-                  nil t)
-                 (progn (goto-char (match-beginning 0)) (insert "\n")
-                        (beginning-of-line 0))
-               (goto-char (point-max)) (insert "\n")))
-         (goto-char (point-max)) (insert "\n"))
-       ;; Paste
-       (org-paste-subtree (1+ level))
-       ;; Mark the entry as done, i.e. set to last work in org-todo-keywords
-       (if org-archive-mark-done
-           (org-todo (length org-todo-keywords)))
-       ;; Move cursor to right after the TODO keyword
-       (when org-archive-stamp-time
-         (beginning-of-line 1)
-         (looking-at org-todo-line-regexp)
-         (goto-char (or (match-end 2) (match-beginning 3)))
-         (insert "(" (format-time-string (cdr org-time-stamp-formats)
-                                         (current-time))
-                 ")"))
-       ;; Save the buffer, if it is not the same buffer.
-       (if (not (eq this-buffer buffer)) (save-buffer))))
-    ;; Here we are back in the original buffer.  Everything seems to have
-    ;; worked.  So now cut the tree and finish up.
-    (let (this-command) (org-cut-subtree))
-    (if (looking-at "[ \t]*$") (kill-line))
-    (message "Subtree archived %s"
-            (if (eq this-buffer buffer)
-                (concat "under heading: " heading)
-              (concat "in file: " (abbreviate-file-name file))))))
+      (goto-char begm)
+      (while (re-search-forward re1 endm t)
+       (setq beg (match-beginning 0)
+             end (save-excursion (org-end-of-subtree t) (point)))
+       (goto-char beg)
+       (if (re-search-forward re end t)
+           (goto-char end)
+         (goto-char beg)
+         (if (and (or (not tag) (not (looking-at rea)))
+                  (y-or-n-p question))
+             (progn
+               (if tag
+                   (org-toggle-tag org-archive-tag 'on)
+                 (org-archive-subtree))
+               (setq cntarch (1+ cntarch)))
+           (goto-char end)))))
+    (message "%d trees archived" cntarch)))
+
+(defun org-cycle-hide-archived-subtrees (state)
+  "Re-hide all archived subtrees after a visibility state change."
+  (when (and (not org-cycle-open-archived-trees)
+             (not (memq state '(overview folded))))
+    (save-excursion
+      (let* ((globalp (memq state '(contents all)))
+             (beg (if globalp (point-min) (point)))
+             (end (if globalp (point-max) (org-end-of-subtree))))
+       (org-hide-archived-subtrees beg end)))))
+
+(defun org-hide-archived-subtrees (beg end)
+  "Re-hide all archived subtrees after a visibility state change."
+  (save-excursion
+    (let* ((re (concat ":" org-archive-tag ":")))
+      (goto-char beg)
+      (while (re-search-forward re end t)
+       (and (org-on-heading-p) (hide-subtree))
+       (org-end-of-subtree)))))
+
+(defun org-toggle-tag (tag &optional onoff)
+  "Toggle the tag TAG for the current line.
+If ONOFF is `on' or `off', don't toggle but set to this state."
+  (unless (org-on-heading-p) (error "Not on headling"))
+  (let (res current)
+    (save-excursion
+      (beginning-of-line)
+      (if (re-search-forward "[ \t]:\\([a-zA-Z0-9_@:]+\\):[ \t]*$"
+                            (point-at-eol) t)
+         (progn
+           (setq current (match-string 1))
+           (replace-match ""))
+       (setq current ""))
+      (setq current (nreverse (org-split-string current ":")))
+      (cond
+       ((eq onoff 'on)
+       (setq res t)
+       (or (member tag current) (push tag current)))
+       ((eq onoff 'off)
+       (or (not (member tag current)) (setq current (delete tag current))))
+       (t (if (member tag current)
+             (setq current (delete tag current))
+           (setq res t)
+           (push tag current))))
+      (end-of-line 1)
+      (when current
+       (insert " :" (mapconcat 'identity (nreverse current) ":") ":"))
+      (org-set-tags nil t))
+    res))
+
+(defun org-toggle-archive-tag (&optional arg)
+  "Toggle the archive tag for the current headline.
+With prefix ARG, check all children of current headline and offer tagging
+the children that do not contain any open TODO items."
+  (interactive "P")
+  (if arg
+      (org-archive-all-done 'tag)
+    (let (set)
+      (save-excursion
+       (org-back-to-heading t)
+       (setq set (org-toggle-tag org-archive-tag))
+       (when set (hide-subtree)))
+      (and set (beginning-of-line 1))
+      (message "Subtree %s" (if set "archived" "unarchived")))))
+
+(defun org-prepare-agenda-buffers (files)
+  "Create buffers for all agenda files, protect archived trees and comments."
+  (interactive)
+  (let ((pa '(:org-archived t))
+       (pc '(:org-comment t))
+       (pall '(:org-archived t :org-comment t))
+       (rea (concat ":" org-archive-tag ":"))
+            bmp file re)
+    (save-excursion
+      (while (setq file (pop files))
+       (org-check-agenda-file file)
+       (set-buffer (org-get-agenda-file-buffer file))
+       (widen)
+       (setq bmp (buffer-modified-p))
+       (save-excursion
+         (remove-text-properties (point-min) (point-max) pall)
+         (when org-agenda-skip-archived-trees
+           (goto-char (point-min))
+           (while (re-search-forward rea nil t)
+             (if (org-on-heading-p)
+                 (add-text-properties (point-at-bol) (org-end-of-subtree t) pa))))
+         (goto-char (point-min))
+         (setq re (concat "^\\*+ +" org-comment-string "\\>"))
+         (while (re-search-forward re nil t)
+           (add-text-properties
+            (match-beginning 0) (org-end-of-subtree t) pc)))
+       (set-buffer-modified-p bmp)))))
+
+(defun org-agenda-skip ()
+  "Throw to `:skip' in places that should be skipped."
+  (let ((p (point-at-bol)))
+    (and org-agenda-skip-archived-trees
+        (get-text-property p :org-archived)
+        (org-end-of-subtree)
+        (throw :skip t))
+    (and (get-text-property p :org-comment)
+        (org-end-of-subtree)
+        (throw :skip t))
+    (if (equal (char-after p) ?#) (throw :skip t))))
+  
+(defun org-agenda-toggle-archive-tag ()
+  "Toggle the archive tag for the current entry."
+  (interactive)
+  (org-agenda-check-no-diary)
+  (org-agenda-show)   ;;; FIXME This is a stupid hack and should not be needed
+  (let* ((hdmarker (or (get-text-property (point) 'org-hd-marker)
+                       (org-agenda-error)))
+        (buffer (marker-buffer hdmarker))
+        (pos (marker-position hdmarker))
+        (buffer-read-only nil)
+        newhead)
+    (with-current-buffer buffer
+      (widen)
+      (goto-char pos)
+      (org-show-hidden-entry)
+      (save-excursion
+       (and (outline-next-heading)
+            (org-flag-heading nil)))   ; show the next heading
+      (call-interactively 'org-toggle-archive-tag)
+      (end-of-line 1)
+      (setq newhead (org-get-heading)))
+    (org-agenda-change-all-lines newhead hdmarker)
+    (beginning-of-line 1)))
+
+;;; Dynamic blocks
+
+(defun org-find-dblock (name)
+  "Find the first dynamic block with name NAME in the buffer.
+If not found, stay at current position and return nil."
+  (let (pos)
+    (save-excursion
+      (goto-char (point-min))
+      (setq pos (and (re-search-forward (concat "^#\\+BEGIN:[ \t]+" name "\\>")
+                                       nil t)
+                    (match-beginning 0))))
+    (if pos (goto-char pos))
+    pos))
+
+(defconst org-dblock-start-re
+  "^#\\+BEGIN:[ \t]+\\(\\S-+\\)\\([ \t]+\\(.*\\)\\)?"
+  "Matches the startline of a dynamic block, with parameters.")
+
+(defconst org-dblock-end-re "^#\\+END\\([: \t\r\n]\\|$\\)"
+  "Matches the end of a dyhamic block.")
+
+(defun org-create-dblock (plist)
+  "Create a dynamic block section, with parameters taken from PLIST.
+PLIST must containe a :name entry which is used as name of the block."
+  (unless (bolp) (newline))
+  (let ((name (plist-get plist :name)))
+    (insert "#+BEGIN: " name)
+    (while plist
+      (if (eq (car plist) :name)
+         (setq plist (cddr plist))
+       (insert " " (prin1-to-string (pop plist)))))
+    (insert "\n\n#+END:\n")
+    (beginning-of-line -2)))
+
+(defun org-prepare-dblock ()
+  "Prepare dynamic block for refresh.
+This empties the block, puts the cursor at the insert position and returns
+the property list including an extra property :name with the block name."
+  (unless (looking-at org-dblock-start-re)
+    (error "Not at a dynamic block"))
+  (let* ((begdel (1+ (match-end 0)))
+        (name (match-string 1))
+        (params (append (list :name name)
+                        (read (concat "(" (match-string 3) ")")))))
+    (unless (re-search-forward org-dblock-end-re nil t)
+      (error "Dynamic block not terminated"))
+    (delete-region begdel (match-beginning 0))
+    (goto-char begdel)
+    (open-line 1)
+    params))
+
+(defun org-map-dblocks (&optional command)
+  "Apply COMMAND to all dynamic blocks in the current buffer.
+If COMMAND is not given, use `org-update-dblock'."
+  (let ((cmd (or command 'org-update-dblock))
+       pos)
+    (save-excursion
+      (goto-char (point-min))
+      (while (re-search-forward org-dblock-start-re nil t)
+       (goto-char (setq pos (match-beginning 0)))
+       (condition-case nil
+           (funcall cmd)
+         (error (message "Error during update of dynamic block")))
+       (goto-char pos)
+       (unless (re-search-forward org-dblock-end-re nil t)
+         (error "Dynamic block not terminated"))))))
+
+(defun org-dblock-update (&optional arg)
+  "User command for updating dynamic blocks.
+Update the dynamic block at point.  With prefix ARG, update all dynamic
+blocks in the buffer."
+  (interactive "P")
+  (if arg
+      (org-update-all-dblocks)
+    (or (looking-at org-dblock-start-re)
+       (org-beginning-of-dblock))
+    (org-update-dblock)))
+
+(defun org-update-dblock ()
+  "Update the dynamic block at point
+This means to empty the block, parse for parameters and then call
+the correct writing function."
+  (let* ((pos (point))
+        (params (org-prepare-dblock))
+        (name (plist-get params :name))
+        (cmd (intern (concat "org-dblock-write:" name))))
+    (funcall cmd params)
+    (goto-char pos)))
+
+(defun org-beginning-of-dblock ()
+  "Find the beginning of the dynamic block at point.
+Error if there is no scuh block at point."
+  (let ((pos (point))
+       beg)
+    (end-of-line 1)
+    (if (and (re-search-backward org-dblock-start-re nil t)
+            (setq beg (match-beginning 0))
+            (re-search-forward org-dblock-end-re nil t)
+            (> (match-end 0) pos))
+       (goto-char beg)
+      (goto-char pos)
+      (error "Not in a dynamic block"))))
+
+(defun org-update-all-dblocks ()
+  "Update all dynamic blocks in the buffer.
+This function can be used in a hook."
+  (when (org-mode-p)
+    (org-map-dblocks 'org-update-dblock)))
+
 
 ;;; Completion
 
@@ -3411,6 +4906,7 @@ At all other locations, this simply calls `ispell-complete-word'."
                  (if (equal (char-before (point)) ?\ ) (backward-char 1))
                  (skip-chars-backward "a-zA-Z0-9_:$")
                  (point)))
+          (confirm (lambda (x) (stringp (car x))))
           (camel (equal (char-before beg) ?*))
           (tag (equal (char-before beg1) ?:))
           (texp (equal (char-before beg) ?\\))
@@ -3447,10 +4943,10 @@ At all other locations, this simply calls `ispell-complete-word'."
                              tbl)))
                    tbl)
                   (tag (setq type :tag beg beg1)
-                       (org-get-buffer-tags))
+                       (or org-tag-alist (org-get-buffer-tags)))
                   (t (progn (ispell-complete-word arg) (throw 'exit nil)))))
           (pattern (buffer-substring-no-properties beg end))
-          (completion (try-completion pattern table)))
+          (completion (try-completion pattern table confirm)))
       (cond ((eq completion t)
             (if (equal type :opt)
                 (insert (substring (cdr (assoc (upcase pattern) table))
@@ -3473,7 +4969,8 @@ At all other locations, this simply calls `ispell-complete-word'."
                                "Press \\[org-complete] again to insert example settings"))))
            (t
             (message "Making completion list...")
-            (let ((list (sort (all-completions pattern table) 'string<)))
+            (let ((list (sort (all-completions pattern table confirm)
+                              'string<)))
               (with-output-to-temp-buffer "*Completions*"
                 (condition-case nil
                     ;; Protection needed for XEmacs and emacs 21
@@ -3527,44 +5024,44 @@ prefix arg, switch to that state."
           (member (member this org-todo-keywords))
           (tail (cdr member))
           (state (cond
-                 ((equal arg '(4))
-                  ;; Read a state with completion
-                  (completing-read "State: " (mapcar (lambda(x) (list x))
-                                                     org-todo-keywords)
-                                   nil t))
-                 ((eq arg 'right)
-                  (if this
-                      (if tail (car tail) nil)
-                    (car org-todo-keywords)))
-                 ((eq arg 'left)
-                  (if (equal member org-todo-keywords)
-                      nil
-                    (if this
-                        (nth (- (length org-todo-keywords) (length tail) 2)
-                             org-todo-keywords)
-                      org-done-string)))
-                 (arg
-                  ;; user requests a specific state
-                  (nth (1- (prefix-numeric-value arg))
-                       org-todo-keywords))
-                 ((null member) (car org-todo-keywords))
-                 ((null tail) nil) ;; -> first entry
-                 ((eq org-todo-interpretation 'sequence)
-                  (car tail))
-                 ((memq org-todo-interpretation '(type priority))
-                  (if (eq this-command last-command)
-                      (car tail)
-                    (if (> (length tail) 0) org-done-string nil)))
-                 (t nil)))
+                  ((equal arg '(4))
+                   ;; Read a state with completion
+                   (completing-read "State: " (mapcar (lambda(x) (list x))
+                                                      org-todo-keywords)
+                                    nil t))
+                  ((eq arg 'right)
+                   (if this
+                       (if tail (car tail) nil)
+                     (car org-todo-keywords)))
+                  ((eq arg 'left)
+                   (if (equal member org-todo-keywords)
+                       nil
+                     (if this
+                         (nth (- (length org-todo-keywords) (length tail) 2)
+                              org-todo-keywords)
+                       org-done-string)))
+                  (arg
+                   ;; user requests a specific state
+                   (nth (1- (prefix-numeric-value arg))
+                        org-todo-keywords))
+                  ((null member) (car org-todo-keywords))
+                  ((null tail) nil) ;; -> first entry
+                  ((eq org-todo-interpretation 'sequence)
+                   (car tail))
+                  ((memq org-todo-interpretation '(type priority))
+                   (if (eq this-command last-command)
+                       (car tail)
+                     (if (> (length tail) 0) org-done-string nil)))
+                  (t nil)))
           (next (if state (concat " " state " ") " ")))
       (replace-match next t t)
       (setq org-last-todo-state-is-todo
            (not (equal state org-done-string)))
       (when org-log-done
        (if (equal state org-done-string)
-           (org-log-done)
+           (org-add-planning-info 'closed (current-time) 'scheduled)
          (if (not this)
-             (org-log-done t))))
+             (org-add-planning-info nil nil 'closed))))
       ;; Fixup tag positioning
       (and org-auto-align-tags (org-set-tags nil t))
       (run-hooks 'org-after-todo-state-change-hook)))
@@ -3607,7 +5104,7 @@ When UNDONE is non-nil, remove such a time stamp again."
        (insert org-closed-string " "
                (format-time-string
                 (concat "[" (substring (cdr org-time-stamp-formats) 1 -1) "]")
-                (current-time))
+                (org-current-time))
                "\n")))))
 
 (defun org-show-todo-tree (arg)
@@ -3634,25 +5131,79 @@ of `org-todo-keywords'."
 A timestamp is also inserted - use \\[org-timestamp-up] and \\[org-timestamp-down]
 to modify it to the correct date."
   (interactive)
-  (insert
-   org-deadline-string " "
-   (format-time-string (car org-time-stamp-formats)
-                      (org-read-date nil 'to-time)))
-  (message "%s" (substitute-command-keys
-                "Use \\[org-timestamp-up-day] and \\[org-timestamp-down-day] to change the date.")))
+  (org-add-planning-info 'deadline nil 'closed))
 
 (defun org-schedule ()
   "Insert the SCHEDULED: string to schedule a TODO item.
 A timestamp is also inserted - use \\[org-timestamp-up] and \\[org-timestamp-down]
 to modify it to the correct date."
   (interactive)
-  (insert
-   org-scheduled-string " "
-   (format-time-string (car org-time-stamp-formats)
-                      (org-read-date nil 'to-time)))
-  (message "%s" (substitute-command-keys
-                "Use \\[org-timestamp-up-day] and \\[org-timestamp-down-day] to change the date.")))
-
+  (org-add-planning-info 'scheduled nil 'closed))
+
+(defun org-add-planning-info (what &optional time &rest remove)
+  "Insert new timestamp with keyword in the line directly after the headline.
+WHAT indicates what kind of time stamp to add.  TIME indicated the time to use.
+If non is given, the user is prompted for a date.
+REMOVE indicates what kind of entries to remove.  An old WHAT entry will also
+be removed."
+  (interactive)
+  (when what (setq time (or time (org-read-date nil 'to-time))))
+  (when (and org-insert-labeled-timestamps-at-point
+            (member what '(scheduled deadline)))
+    (insert
+     (if (eq what 'scheduled) org-scheduled-string org-deadline-string)
+     " "
+     (format-time-string (car org-time-stamp-formats) time))
+    (setq what nil))
+  (save-excursion
+    (let (col list elt (buffer-invisibility-spec nil) ts)
+      (org-back-to-heading t)
+      (looking-at (concat outline-regexp "\\( *\\)[^\r\n]*"))
+      (goto-char (match-end 1))
+      (setq col (current-column))
+      (goto-char (1+ (match-end 0)))
+      (if (and (not (looking-at outline-regexp))
+              (looking-at (concat "[^\r\n]*?" org-keyword-time-regexp
+                                  "[^\r\n]*"))
+              (not (equal (match-string 1) org-clock-string)))
+         (narrow-to-region (match-beginning 0) (match-end 0))
+       (insert "\n")
+       (backward-char 1)
+       (narrow-to-region (point) (point))
+       (indent-to-column col))
+      ;; Check if we have to remove something.
+      (setq list (cons what remove))
+      (while list
+       (setq elt (pop list))
+       (goto-char (point-min))
+       (when (or (and (eq elt 'scheduled)
+                      (re-search-forward org-scheduled-time-regexp nil t))
+                 (and (eq elt 'deadline)
+                      (re-search-forward org-deadline-time-regexp nil t))
+                 (and (eq elt 'closed)
+                      (re-search-forward org-closed-time-regexp nil t)))
+         (replace-match "")
+         (if (looking-at " +") (replace-match ""))))
+      (goto-char (point-max))
+      (when what
+       (insert
+        (if (not (equal (char-before) ?\ )) " " "")
+        (cond ((eq what 'scheduled) org-scheduled-string)
+              ((eq what 'deadline) org-deadline-string)
+              ((eq what 'closed) org-closed-string))
+        " ")
+       (insert
+        (setq ts
+              (format-time-string
+               (if (eq what 'closed)
+                   (concat "[" (substring (cdr org-time-stamp-formats) 1 -1) "]")
+                 (car org-time-stamp-formats))
+               time))))
+      (goto-char (point-min))
+      (widen)
+      (if (looking-at "[ \t]+\r?\n")
+         (replace-match ""))
+      ts)))
 
 (defun org-occur (regexp &optional callback)
   "Make a compact tree which shows all matches of REGEXP.
@@ -3663,11 +5214,10 @@ If CALLBACK is non-nil, it is a function which is called to confirm
 that the match should indeed be shown."
   (interactive "sRegexp: ")
   (org-remove-occur-highlights nil nil t)
-  (setq regexp (org-check-occur-regexp regexp))
   (let ((cnt 0))
     (save-excursion
       (goto-char (point-min))
-      (hide-sublevels 1)
+      (org-overview)
       (while (re-search-forward regexp nil t)
        (when (or (not callback)
                  (save-match-data (funcall callback)))
@@ -3676,6 +5226,8 @@ that the match should indeed be shown."
          (org-show-hierarchy-above))))
     (org-add-hook 'before-change-functions 'org-remove-occur-highlights
                  nil 'local)
+    (unless org-sparse-tree-open-archived-trees
+      (org-hide-archived-subtrees (point-min) (point-max)))
     (run-hooks 'org-occur-hook)
     (if (interactive-p)
        (message "%d match(es) for regexp %s" cnt regexp))
@@ -3702,37 +5254,48 @@ that the match should indeed be shown."
 
 ;; Overlay compatibility functions
 (defun org-make-overlay (beg end &optional buffer)
-  (if org-xemacs-p (make-extent beg end buffer) (make-overlay beg end buffer)))
+  (if (featurep 'xemacs)
+      (make-extent beg end buffer)
+    (make-overlay beg end buffer)))
 (defun org-delete-overlay (ovl)
-  (if org-xemacs-p (delete-extent ovl) (delete-overlay ovl)))
+  (if (featurep 'xemacs) (delete-extent ovl) (delete-overlay ovl)))
 (defun org-detatch-overlay (ovl)
-  (if org-xemacs-p (detach-extent ovl) (delete-overlay ovl)))
+  (if (featurep 'xemacs) (detach-extent ovl) (delete-overlay ovl)))
 (defun org-move-overlay (ovl beg end &optional buffer)
-  (if org-xemacs-p
+  (if (featurep 'xemacs)
       (set-extent-endpoints ovl beg end buffer)
     (move-overlay ovl beg end buffer)))
 (defun org-overlay-put (ovl prop value)
-  (if org-xemacs-p
+  (if (featurep 'xemacs)
       (set-extent-property ovl prop value)
     (overlay-put ovl prop value)))
+(defun org-overlays-at (pos)
+  (if (featurep 'xemacs) (extents-at pos) (overlays-at pos)))
+(defun org-overlay-start (o)
+  (if (featurep 'xemacs) (extent-start-position o) (overlay-start o)))
+(defun org-overlay-end (o)
+  (if (featurep 'xemacs) (extent-end-position o) (overlay-end o)))
 
 (defvar org-occur-highlights nil)
+(make-variable-buffer-local 'org-occur-highlights)
 (defun org-highlight-new-match (beg end)
   "Highlight from BEG to END and mark the highlight is an occur headline."
   (let ((ov (org-make-overlay beg end)))
     (org-overlay-put ov 'face 'secondary-selection)
     (push ov org-occur-highlights)))
 
+(defvar org-inhibit-highlight-removal nil)
 (defun org-remove-occur-highlights (&optional beg end noremove)
   "Remove the occur highlights from the buffer.
 BEG and END are ignored.  If NOREMOVE is nil, remove this function
 from the `before-change-functions' in the current buffer."
   (interactive)
-  (mapc 'org-delete-overlay org-occur-highlights)
-  (setq org-occur-highlights nil)
-  (unless noremove
-    (remove-hook 'before-change-functions
-                'org-remove-occur-highlights 'local)))
+  (unless org-inhibit-highlight-removal
+    (mapc 'org-delete-overlay org-occur-highlights)
+    (setq org-occur-highlights nil)
+    (unless noremove
+      (remove-hook 'before-change-functions
+                  'org-remove-occur-highlights 'local))))
 
 ;;; Priorities
 
@@ -3851,7 +5414,6 @@ An inactive time stamp is enclosed in square brackets instead of angle
 brackets.  It is inactive in the sense that it does not trigger agenda entries,
 does not link to the calendar and cannot be changed with the S-cursor keys.
 So these are more for recording a certain time/date."
-  ;; FIXME:  Would it be better not to ask for a date/time here?
   (interactive "P")
   (let ((fmt (if arg (cdr org-time-stamp-formats)
               (car org-time-stamp-formats)))
@@ -3866,8 +5428,6 @@ So these are more for recording a certain time/date."
 (org-overlay-put org-date-ovl 'face 'org-warning)
 (org-detatch-overlay org-date-ovl)
 
-;;; FIXME: Make the function take "Fri" as "next friday"
-;;; because these are mostly being used to record the current time.
 (defun org-read-date (&optional with-time to-time)
   "Read a date and make things smooth for the user.
 The prompt will suggest to enter an ISO date, but you can also enter anything
@@ -3880,6 +5440,7 @@ hour and minute.  For example,
   12:45         --> today 12:45
   22 sept 0:34  --> currentyear-09-22 0:34
   12            --> currentyear-currentmonth-12
+  Fri           --> nearest Friday (today or later)
   etc.
 The function understands only English month and weekday abbreviations,
 but this can be configured with the variables `parse-time-months' and
@@ -3899,29 +5460,31 @@ enter a time, and this function will inform the calling routine about
 this change.  The calling routine may then choose to change the format
 used to insert the time stamp into the buffer to include the time."
   (require 'parse-time)
-  (let* ((default-time
+  (let* ((org-time-stamp-rounding-minutes
+         (if (equal with-time '(16)) 0 org-time-stamp-rounding-minutes))
+        (ct (org-current-time))
+        (default-time
           ;; Default time is either today, or, when entering a range,
           ;; the range start.
           (if (save-excursion
                 (re-search-backward
-                 (concat org-ts-regexp "--\\=")
+                 (concat org-ts-regexp "--?-?\\=") ; 1-3 minuses
                  (- (point) 20) t))
               (apply
                'encode-time
-               (mapcar (lambda(x) (or x 0))  ;; FIXME: Problem with timezone?
+               (mapcar (lambda(x) (or x 0))
                        (parse-time-string (match-string 1))))
-            (current-time)))
+            ct))
         (calendar-move-hook nil)
         (view-diary-entries-initially nil)
+        (view-calendar-holidays-initially nil)
         (timestr (format-time-string
                   (if with-time "%Y-%m-%d %H:%M" "%Y-%m-%d") default-time))
         (prompt (format "YYYY-MM-DD [%s]: " timestr))
         ans ans1 ans2
-        second minute hour day month year tl)
+        second minute hour day month year tl wday wday1)
 
     (if org-popup-calendar-for-date-prompt
-       ;; Also show a calendar for date selection
-       ;; Copied (with modifications) from planner.el by John Wiegley
        (save-excursion
          (save-window-excursion
            (calendar)
@@ -3933,9 +5496,9 @@ used to insert the time stamp into the buffer to include the time."
                   (map (copy-keymap calendar-mode-map))
                   (minibuffer-local-map (copy-keymap minibuffer-local-map)))
              (define-key map (kbd "RET") 'org-calendar-select)
-             (define-key map (if org-xemacs-p [button1] [mouse-1])
+             (define-key map (if (featurep 'xemacs) [button1] [mouse-1])
                'org-calendar-select-mouse)
-             (define-key map (if org-xemacs-p [button2] [mouse-2])
+             (define-key map (if (featurep 'xemacs) [button2] [mouse-2])
                'org-calendar-select-mouse)
              (define-key minibuffer-local-map [(meta shift left)]
                (lambda () (interactive)
@@ -3981,15 +5544,22 @@ used to insert the time stamp into the buffer to include the time."
                month (string-to-number (match-string 3 ans))
                day (string-to-number (match-string 4 ans)))
          (if (< year 100) (setq year (+ 2000 year)))
-         (setq ans (replace-match (format "%04d-%02d-%02d" year month day)
-                                  t t ans))))
+         (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
+                                  t nil ans))))
     (setq tl (parse-time-string ans)
-         year (or (nth 5 tl) (string-to-number (format-time-string "%Y")))
-         month (or (nth 4 tl) (string-to-number (format-time-string "%m")))
-         day (or (nth 3 tl) (string-to-number (format-time-string "%d")))
-         hour (or (nth 2 tl) (string-to-number (format-time-string "%H")))
-         minute (or (nth 1 tl) (string-to-number (format-time-string "%M")))
-         second (or (nth 0 tl) 0))
+         year (or (nth 5 tl) (string-to-number (format-time-string "%Y" ct)))
+         month (or (nth 4 tl) (string-to-number (format-time-string "%m" ct)))
+         day (or (nth 3 tl) (string-to-number (format-time-string "%d" ct)))
+         hour (or (nth 2 tl) (string-to-number (format-time-string "%H" ct)))
+         minute (or (nth 1 tl) (string-to-number (format-time-string "%M" ct)))
+         second (or (nth 0 tl) 0)
+         wday (nth 6 tl))
+    (when (and wday (not (nth 3 tl)))
+      ;; Weekday was given, but no day, so pick that day in the week
+      ;; on or after the derived date.
+      (setq wday1 (nth 6 (decode-time (encode-time 0 0 0 day month year))))
+      (unless (equal wday wday1)
+       (setq day (+ day (% (- wday wday1 -7) 7)))))
     (if (and (boundp 'org-time-was-given)
             (nth 2 tl))
        (setq org-time-was-given t))
@@ -4068,58 +5638,58 @@ next column.
 For time difference computation, a year is assumed to be exactly 365
 days in order to avoid rounding problems."
   (interactive "P")
-  (save-excursion
-    (unless (org-at-date-range-p)
-      (goto-char (point-at-bol))
-      (re-search-forward org-tr-regexp (point-at-eol) t))
-    (if (not (org-at-date-range-p))
-       (error "Not at a time-stamp range, and none found in current line")))
-  (let* ((ts1 (match-string 1))
-        (ts2 (match-string 2))
-        (havetime (or (> (length ts1) 15) (> (length ts2) 15)))
-        (match-end (match-end 0))
-        (time1 (org-time-string-to-time ts1))
-        (time2 (org-time-string-to-time ts2))
-        (t1 (time-to-seconds time1))
-        (t2 (time-to-seconds time2))
-        (diff (abs (- t2 t1)))
-        (negative (< (- t2 t1) 0))
-        ;; (ys (floor (* 365 24 60 60)))
-        (ds (* 24 60 60))
-        (hs (* 60 60))
-        (fy "%dy %dd %02d:%02d")
-        (fy1 "%dy %dd")
-        (fd "%dd %02d:%02d")
-        (fd1 "%dd")
-        (fh "%02d:%02d")
-        y d h m align)
-    ;; FIXME:  Should I re-introduce years, make year refer to same date?
-    ;; This would be the only useful way to have years, actually.
-    (if havetime
-       (setq ; y (floor (/ diff ys))  diff (mod diff ys)
-        y 0
-        d (floor (/ diff ds))  diff (mod diff ds)
-        h (floor (/ diff hs))  diff (mod diff hs)
-        m (floor (/ diff 60)))
-      (setq ; y (floor (/ diff ys))  diff (mod diff ys)
-       y 0
-       d (floor (+ (/ diff ds) 0.5))
-       h 0 m 0))
-    (if (not to-buffer)
-       (message (org-make-tdiff-string y d h m))
-      (when (org-at-table-p)
-       (goto-char match-end)
-       (setq align t)
-       (and (looking-at " *|") (goto-char (match-end 0))))
-      (if (looking-at
-          "\\( *-? *[0-9]+y\\)?\\( *[0-9]+d\\)? *[0-9][0-9]:[0-9][0-9]")
-         (replace-match ""))
-      (if negative (insert " -"))
-      (if (> y 0) (insert " " (format (if havetime fy fy1) y d h m))
-       (if (> d 0) (insert " " (format (if havetime fd fd1) d h m))
-         (insert " " (format fh h m))))
-      (if align (org-table-align))
-      (message "Time difference inserted"))))
+  (or
+   (org-clock-update-time-maybe)
+   (save-excursion
+     (unless (org-at-date-range-p)
+       (goto-char (point-at-bol))
+       (re-search-forward org-tr-regexp (point-at-eol) t))
+     (if (not (org-at-date-range-p))
+        (error "Not at a time-stamp range, and none found in current line")))
+   (let* ((ts1 (match-string 1))
+         (ts2 (match-string 2))
+         (havetime (or (> (length ts1) 15) (> (length ts2) 15)))
+         (match-end (match-end 0))
+         (time1 (org-time-string-to-time ts1))
+         (time2 (org-time-string-to-time ts2))
+         (t1 (time-to-seconds time1))
+         (t2 (time-to-seconds time2))
+         (diff (abs (- t2 t1)))
+         (negative (< (- t2 t1) 0))
+         ;; (ys (floor (* 365 24 60 60)))
+         (ds (* 24 60 60))
+         (hs (* 60 60))
+         (fy "%dy %dd %02d:%02d")
+         (fy1 "%dy %dd")
+         (fd "%dd %02d:%02d")
+         (fd1 "%dd")
+         (fh "%02d:%02d")
+         y d h m align)
+     (if havetime
+        (setq ; y (floor (/ diff ys))  diff (mod diff ys)
+         y 0
+         d (floor (/ diff ds))  diff (mod diff ds)
+         h (floor (/ diff hs))  diff (mod diff hs)
+         m (floor (/ diff 60)))
+       (setq ; y (floor (/ diff ys))  diff (mod diff ys)
+       y 0
+       d (floor (+ (/ diff ds) 0.5))
+       h 0 m 0))
+     (if (not to-buffer)
+        (message (org-make-tdiff-string y d h m))
+       (when (org-at-table-p)
+        (goto-char match-end)
+        (setq align t)
+        (and (looking-at " *|") (goto-char (match-end 0))))
+       (if (looking-at
+           "\\( *-? *[0-9]+y\\)?\\( *[0-9]+d\\)? *[0-9][0-9]:[0-9][0-9]")
+          (replace-match ""))
+       (if negative (insert " -"))
+       (if (> y 0) (insert " " (format (if havetime fy fy1) y d h m))
+        (if (> d 0) (insert " " (format (if havetime fd fd1) d h m))
+          (insert " " (format fh h m))))
+       (if align (org-table-align))
+       (message "Time difference inserted")))))
 
 (defun org-make-tdiff-string (y d h m)
   (let ((fmt "")
@@ -4174,7 +5744,7 @@ With prefix ARG, change by that many units."
   "Increase the date in the time stamp by one day.
 With prefix ARG, change that many days."
   (interactive "p")
-  (if (and (not (org-at-timestamp-p))
+  (if (and (not (org-at-timestamp-p t))
           (org-on-heading-p))
       (org-todo 'up)
     (org-timestamp-change (prefix-numeric-value arg) 'day)))
@@ -4183,7 +5753,7 @@ With prefix ARG, change that many days."
   "Decrease the date in the time stamp by one day.
 With prefix ARG, change that many days."
   (interactive "p")
-  (if (and (not (org-at-timestamp-p))
+  (if (and (not (org-at-timestamp-p t))
           (org-on-heading-p))
       (org-todo 'down)
     (org-timestamp-change (- (prefix-numeric-value arg)) 'day)))
@@ -4193,14 +5763,14 @@ With prefix ARG, change that many days."
        (<= (match-beginning n) pos)
        (>= (match-end n) pos)))
 
-(defun org-at-timestamp-p ()
+(defun org-at-timestamp-p (&optional also-inactive)
   "Determine if the cursor is in or at a timestamp."
   (interactive)
-  (let* ((tsr org-ts-regexp2)
+  (let* ((tsr (if also-inactive org-ts-regexp3 org-ts-regexp2))
         (pos (point))
         (ans (or (looking-at tsr)
                  (save-excursion
-                   (skip-chars-backward "^<\n\r\t")
+                   (skip-chars-backward "^[<\n\r\t")
                    (if (> (point) 1) (backward-char 1))
                    (and (looking-at tsr)
                         (> (- (match-end 0) pos) -1))))))
@@ -4225,7 +5795,7 @@ in the timestamp determines what will be changed."
        org-ts-what
        (pos (point))
        ts time time0)
-    (if (not (org-at-timestamp-p))
+    (if (not (org-at-timestamp-p t))
        (error "Not at a timestamp"))
     (setq org-ts-what (or what org-ts-what))
     (setq fmt (if (<= (abs (- (cdr org-ts-lengths)
@@ -4233,6 +5803,8 @@ in the timestamp determines what will be changed."
                      1)
                  (cdr org-time-stamp-formats)
                (car org-time-stamp-formats)))
+    (if (= (char-after (match-beginning 0)) ?\[)
+       (setq fmt (concat "[" (substring fmt 1 -1) "]")))
     (setq ts (match-string 0))
     (replace-match "")
     (setq time0 (org-parse-time-string ts))
@@ -4260,6 +5832,7 @@ in the timestamp determines what will be changed."
          (setcar (nthcdr 2 time0) (or (nth 1 time0) 0))
          (setq time (apply 'encode-time time0))))
     (insert (setq org-last-changed-timestamp (format-time-string fmt time)))
+    (org-clock-update-time-maybe)
     (goto-char pos)
     ;; Try to recenter the calendar window, if any
     (if (and org-calendar-follow-timestamp-change
@@ -4285,6 +5858,7 @@ A prefix ARG can be used to force the current date."
   (interactive "P")
   (let ((tsr org-ts-regexp) diff
        (calendar-move-hook nil)
+       (view-calendar-holidays-initially nil)
        (view-diary-entries-initially nil))
     (if (or (org-at-timestamp-p)
            (save-excursion
@@ -4298,11 +5872,404 @@ A prefix ARG can be used to force the current date."
     (calendar-goto-today)
     (if (and diff (not arg)) (calendar-forward-day diff))))
 
-(defun org-date-from-calendar ()
-  "Insert time stamp corresponding to cursor date in *Calendar* buffer.
-If there is already a time stamp at the cursor position, update it."
+(defun org-date-from-calendar ()
+  "Insert time stamp corresponding to cursor date in *Calendar* buffer.
+If there is already a time stamp at the cursor position, update it."
+  (interactive)
+  (org-timestamp-change 0 'calendar))
+
+;;; The clock for measuring work time.
+
+(defvar org-clock-marker (make-marker)
+  "Marker recording the last clock-in.")
+
+(defun org-clock-in ()
+  "Start the clock on the current item.
+If necessary, clock-out of the currently active clock."
+  (interactive)
+  (org-clock-out t)
+  (let (ts)
+    (save-excursion
+      (org-back-to-heading t)
+      (beginning-of-line 2)
+      (if (and (looking-at (concat "[ \t]*" org-keyword-time-regexp))
+              (not (equal (match-string 1) org-clock-string)))
+         (beginning-of-line 1))
+      (insert "\n") (backward-char 1)
+      (indent-relative)
+      (insert org-clock-string " "
+             (setq ts (concat "[" (format-time-string
+                                   (substring
+                                    (cdr org-time-stamp-formats) 1 -1)
+                                   (current-time))
+                              "]")))
+      (move-marker org-clock-marker (point))
+      (message "Clock started at %s" ts))))
+
+(defun org-clock-out (&optional fail-quietly)
+  "Stop the currently running clock.
+If there is no running clock, throw an error, unless FAIL-QUIETLY is set."
+  (interactive)
+  (catch 'exit
+  (if (not (marker-buffer org-clock-marker))
+      (if fail-quietly (throw 'exit t) (error "No active clock")))
+  (let (ts te s h m)
+    (save-excursion
+      (set-buffer (marker-buffer org-clock-marker))
+      (goto-char org-clock-marker)
+      (beginning-of-line 1)
+      (if (and (looking-at (concat "[ \t]*" org-keyword-time-regexp))
+              (equal (match-string 1) org-clock-string))
+         (setq ts (match-string 2))
+       (if fail-quietly (throw 'exit nil) (error "Clock start time is gone")))
+      (goto-char org-clock-marker)
+      (setq te (concat "[" (format-time-string
+                           (substring
+                            (cdr org-time-stamp-formats) 1 -1)
+                           (current-time))
+                      "]"))
+      (setq s (- (time-to-seconds (apply 'encode-time (org-parse-time-string te)))
+                (time-to-seconds (apply 'encode-time (org-parse-time-string ts))))
+           h (floor (/ s 3600))
+           s (- s (* 3600 h))
+           m (floor (/ s 60))
+           s (- s (* 60 s)))
+      (insert "--" te " => " (format "%2d:%02d" h m))
+      (move-marker org-clock-marker nil)
+      (message "Clock stopped at %s after HH:MM = %d:%02d" te h m)))))
+
+(defun org-clock-cancel ()
+  "Cancel the running clock be removing the start timestamp."
+  (interactive)
+  (if (not (marker-buffer org-clock-marker))
+      (error "No active clock"))
+  (save-excursion
+    (set-buffer (marker-buffer org-clock-marker))
+    (goto-char org-clock-marker)
+    (delete-region (1- (point-at-bol)) (point-at-eol)))
+  (message "Clock canceled"))
+
+(defvar org-clock-file-total-minutes nil
+  "Holds the file total time in minutes, after a call to `org-clock-sum'.")
+  (make-variable-buffer-local 'org-clock-file-total-minutes)
+
+(defun org-clock-sum (&optional tstart tend)
+  "Sum the times for each subtree.
+Puts the resulting times in minutes as a text property on each headline."
+  (interactive)
+  (let* ((bmp (buffer-modified-p))
+        (re (concat "^\\(\\*+\\)[ \t]\\|^[ \t]*"
+                    org-clock-string
+                    "[ \t]*\\(\\[.*?\\]\\)-+\\(\\[.*?\\]\\)"))
+        (lmax 30)
+        (ltimes (make-vector lmax 0))
+        (t1 0)
+        (level 0)
+        ts te dt
+        time)
+    (remove-text-properties (point-min) (point-max) '(:org-clock-minutes t))
+    (save-excursion
+      (goto-char (point-max))
+      (while (re-search-backward re nil t)
+       (if (match-end 2)
+           ;; A time
+           (setq ts (match-string 2)
+                 te (match-string 3)
+                 ts (time-to-seconds
+                     (apply 'encode-time (org-parse-time-string ts)))
+                 te (time-to-seconds
+                     (apply 'encode-time (org-parse-time-string te)))
+                 ts (if tstart (max ts tstart) ts)
+                 te (if tend (min te tend) te)
+                 dt (- te ts)
+                 t1 (if (> dt 0) (+ t1 (floor (/ dt 60))) t1))
+         ;; A headline
+         (setq level (- (match-end 1) (match-beginning 1)))
+         (when (or (> t1 0) (> (aref ltimes level) 0))
+           (loop for l from 0 to level do
+                 (aset ltimes l (+ (aref ltimes l) t1)))
+           (setq t1 0 time (aref ltimes level))
+           (loop for l from level to (1- lmax) do
+                 (aset ltimes l 0))
+           (goto-char (match-beginning 0))
+           (put-text-property (point) (point-at-eol) :org-clock-minutes time))))
+      (setq org-clock-file-total-minutes (aref ltimes 0)))
+    (set-buffer-modified-p bmp)))
+
+(defun org-clock-display (&optional total-only)
+  "Show subtree times in the entire buffer.
+If TOTAL-ONLY is non-nil, only show the total time for the entire file
+in the echo area."
+  (interactive)
+  (org-remove-clock-overlays)
+  (let (time h m p)
+    (org-clock-sum)
+    (unless total-only
+      (save-excursion
+       (goto-char (point-min))
+       (while (setq p (next-single-property-change (point) :org-clock-minutes))
+         (goto-char p)
+         (when (setq time (get-text-property p :org-clock-minutes))
+           (org-put-clock-overlay time (funcall outline-level))))
+       (setq h (/ org-clock-file-total-minutes 60)
+             m (- org-clock-file-total-minutes (* 60 h)))
+       ;; Arrange to remove the overlays upon next change.
+       (org-add-hook 'before-change-functions 'org-remove-clock-overlays
+                     nil 'local)))
+  (message "Total file time: %d:%02d (%d hours and %d minutes)" h m h m)))
+
+(defvar org-clock-overlays nil)
+(make-variable-buffer-local 'org-clock-overlays)
+
+(defun org-put-clock-overlay (time &optional level)
+  "Put an overlays on the current line, displaying TIME.
+If LEVEL is given, prefix time with a corresponding number of stars.
+This creates a new overlay and stores it in `org-clock-overlays', so that it
+will be easy to remove."
+  (let* ((c 60) (h (floor (/ time 60))) (m (- time (* 60 h)))
+        (l (if level (org-get-legal-level level 0) 0))
+        (off 0)
+        ov tx)
+    (move-to-column c)
+    (unless (eolp) (skip-chars-backward "^ \t"))
+    (skip-chars-backward " \t")
+    (setq ov (org-make-overlay (1- (point)) (point-at-eol))
+         tx (concat (buffer-substring (1- (point)) (point))
+                    (make-string (+ off (max 0 (- c (current-column)))) ?.)
+                    (org-add-props (format "%s %2d:%02d%s"
+                                           (make-string l ?*) h m
+                                           (make-string (- 10 l) ?\ ))
+                        '(face secondary-selection))
+                    ""))
+    (org-overlay-put ov 'display tx)
+    (push ov org-clock-overlays)))
+
+(defun org-remove-clock-overlays (&optional beg end noremove)
+  "Remove the occur highlights from the buffer.
+BEG and END are ignored.  If NOREMOVE is nil, remove this function
+from the `before-change-functions' in the current buffer."
+  (interactive)
+  (unless org-inhibit-highlight-removal
+    (mapc 'org-delete-overlay org-clock-overlays)
+    (setq org-clock-overlays nil)
+    (unless noremove
+      (remove-hook 'before-change-functions
+                  'org-remove-clock-overlays 'local))))
+
+(defun org-clock-out-if-current ()
+  "Clock out if the current entry contains the running clock.
+This is used to stop the clock after a TODO entry is marked DONE."
+  (when (and (equal state org-done-string)
+            (equal (marker-buffer org-clock-marker) (current-buffer))
+            (< (point) org-clock-marker)
+            (> (save-excursion (outline-next-heading) (point))
+               org-clock-marker))
+    (org-clock-out)))
+
+(add-hook 'org-after-todo-state-change-hook
+         'org-clock-out-if-current)
+
+(defun org-check-running-clock ()
+  "Check if the current buffer contains the running clock.
+If yes, offer to stop it and to save the buffer with the changes."
+  (when (and (equal (marker-buffer org-clock-marker) (current-buffer))
+            (y-or-n-p (format "Clock-out in buffer %s before killing it? "
+                              (buffer-name))))
+    (org-clock-out)
+    (when (y-or-n-p "Save changed buffer?")
+      (save-buffer))))
+
+(defun org-clock-report ()
+  "Create a table containing a report about clocked time.
+If the buffer contains lines
+#+BEGIN: clocktable :maxlevel 3 :emphasize nil
+
+#+END: clocktable
+then the table will be inserted between these lines, replacing whatever
+is was there before.  If these lines are not in the buffer, the table
+is inserted at point, surrounded by the special lines.
+The BEGIN line can contain parameters.  Allowed are:
+:maxlevel   The maximum level to be included in the table.  Default is 3.
+:emphasize  t/nil, if levell 1 and level 2 should be bold/italic in the table."
+  (interactive)
+  (org-remove-clock-overlays)
+  (unless (org-find-dblock "clocktable")
+    (org-create-dblock (list :name "clocktable"
+                            :maxlevel 2 :emphasize nil)))
+  (org-update-dblock))
+
+(defun org-clock-update-time-maybe ()
+  "If this is a CLOCK line, update it and return t.
+Otherwise, return nil."
+  (interactive)
+  (save-excursion
+    (beginning-of-line 1)
+    (skip-chars-forward " \t")
+    (when (looking-at org-clock-string)
+      (let ((re (concat "[ \t]*" org-clock-string
+                       " *[[<]\\([^]>]+\\)[]>]-+[[<]\\([^]>]+\\)[]>]"
+                       "\\([ \t]*=>.*\\)?"))
+           ts te h m s)
+       (if (not (looking-at re))
+           nil
+         (and (match-end 3) (delete-region (match-beginning 3) (match-end 3)))
+         (end-of-line 1)
+         (setq ts (match-string 1)
+               te (match-string 2))
+         (setq s (- (time-to-seconds
+                     (apply 'encode-time (org-parse-time-string te)))
+                    (time-to-seconds
+                     (apply 'encode-time (org-parse-time-string ts))))
+               h (floor (/ s 3600))
+               s (- s (* 3600 h))
+               m (floor (/ s 60))
+               s (- s (* 60 s)))
+         (insert " => " (format "%2d:%02d" h m))
+         t)))))
+
+(defun org-clock-special-range (key &optional time as-strings)
+  "Return two times bordering a special time range.
+Key is a symbol specifying the range and can be one of `today', `yesterday',
+`thisweek', `lastweek', `thismonth', `lastmonth', `thisyear', `lastyear'.
+A week starts Monday 0:00 and ends Sunday 24:00.
+The range is determined relative to TIME.  TIME defaults to the current time.
+The return value is a cons cell with two internal times like the ones
+returned by `current time' or `encode-time'. if AS-STRINGS is non-nil,
+the returned times will be formatted strings."
+  (let* ((tm (decode-time (or time (current-time))))
+        (s 0) (m (nth 1 tm)) (h (nth 2 tm))
+        (d (nth 3 tm)) (month (nth 4 tm)) (y (nth 5 tm))
+        (dow (nth 6 tm))
+        s1 m1 h1 d1 month1 y1 diff ts te fm)
+    (cond
+     ((eq key 'today)
+      (setq h 0 m 0 h1 24 m1 0))
+     ((eq key 'yesterday)
+      (setq d (1- d) h 0 m 0 h1 24 m1 0))
+     ((eq key 'thisweek)
+      (setq diff (if (= dow 0) 6 (1- dow))
+           m 0 h 0 d (- d diff) d1 (+ 7 d)))
+     ((eq key 'lastweek)
+      (setq diff (+ 7 (if (= dow 0) 6 (1- dow)))
+           m 0 h 0 d (- d diff) d1 (+ 7 d)))
+     ((eq key 'thismonth)
+      (setq d 1 h 0 m 0 d1 1 month1 (1+ month) h1 0 m1 0))
+     ((eq key 'lastmonth)
+      (setq d 1 h 0 m 0 d1 1 month (1- month) month1 (1+ month) h1 0 m1 0))
+     ((eq key 'thisyear)
+      (setq m 0 h 0 d 1 month 1 y1 (1+ y)))
+     ((eq key 'lastyear)
+      (setq m 0 h 0 d 1 month 1 y (1- y) y1 (1+ y)))
+     (t (error "No such time block %s" key)))
+    (setq ts (encode-time s m h d month y)
+         te (encode-time (or s1 s) (or m1 m) (or h1 h)
+                         (or d1 d) (or month1 month) (or y1 y)))
+    (setq fm (cdr org-time-stamp-formats))
+    (if as-strings
+       (cons (format-time-string fm ts) (format-time-string fm te))
+      (cons ts te))))
+
+(defun org-dblock-write:clocktable (params)
+  "Write the standard clocktable."
+  (let ((hlchars '((1 . "*") (2 . ?/)))
+       (emph nil)
+       (ins (make-marker))
+       ipos time h m p level hlc hdl maxlevel
+       ts te cc block)
+    (setq maxlevel (or (plist-get params :maxlevel) 3)
+         emph (plist-get params :emphasize)
+         ts (plist-get params :tstart)
+         te (plist-get params :tend)
+         block (plist-get params :block))
+    (when block
+      (setq cc (org-clock-special-range block nil t)
+           ts (car cc) te (cdr cc)))
+    (if ts (setq ts (time-to-seconds
+                    (apply 'encode-time (org-parse-time-string ts)))))
+    (if te (setq te (time-to-seconds
+                    (apply 'encode-time (org-parse-time-string te)))))
+    (move-marker ins (point))
+    (setq ipos (point))
+    (insert-before-markers "Clock summary at [" 
+                          (substring
+                           (format-time-string (cdr org-time-stamp-formats))
+                           1 -1)
+                          "]."
+                          (if block 
+                              (format "  Considered range is /%s/." block)
+                            "")
+                          "\n\n|L|Headline|Time|\n")
+    (org-clock-sum ts te)
+    (setq h (/ org-clock-file-total-minutes 60)
+         m (- org-clock-file-total-minutes (* 60 h)))
+    (insert-before-markers "|-\n|0|" "*Total file time*| "
+                          (format "*%d:%02d*" h m)
+                          "|\n")
+    (goto-char (point-min))
+    (while (setq p (next-single-property-change (point) :org-clock-minutes))
+      (goto-char p)
+      (when (setq time (get-text-property p :org-clock-minutes))
+       (save-excursion
+         (beginning-of-line 1)
+         (when (and (looking-at "\\(\\*+\\)[ \t]+\\(.*?\\)\\([ \t]+:[0-9a-zA-Z_@:]+:\\)?[ \t]*$")
+                    (setq level (- (match-end 1) (match-beginning 1)))
+                    (<= level maxlevel))
+           (setq hlc (if emph (or (cdr (assoc level hlchars)) "") "")
+                 hdl (match-string 2)
+                 h (/ time 60)
+                 m (- time (* 60 h)))
+           (goto-char ins)
+           (if (= level 1) (insert-before-markers "|-\n"))
+           (insert-before-markers
+            "| " (int-to-string level) "|" hlc hdl hlc " |" 
+            (make-string (1- level) ?|)
+            hlc
+            (format "%d:%02d" h m)
+            hlc
+            " |\n")))))
+    (goto-char ins)
+    (backward-delete-char 1)
+    (goto-char ipos)
+    (skip-chars-forward "^|")
+    (org-table-align)))
+
+(defun org-collect-clock-time-entries ()
+  "Return an internal list with clocking information.
+This list has one entry for each CLOCK interval.
+FIXME: describe the elements."
   (interactive)
-  (org-timestamp-change 0 'calendar))
+  (let ((re (concat "^[ \t]*" org-clock-string
+                   " *\\[\\(.*?\\)\\]--\\[\\(.*?\\)\\]"))
+       rtn beg end next cont level title total closedp leafp
+       clockpos titlepos h m donep)
+    (save-excursion
+      (org-clock-sum)
+      (goto-char (point-min))
+      (while (re-search-forward re nil t)
+       (setq clockpos (match-beginning 0)
+             beg (match-string 1) end (match-string 2)
+             cont (match-end 0))
+       (setq beg (apply 'encode-time (org-parse-time-string beg))
+             end (apply 'encode-time (org-parse-time-string end)))
+       (org-back-to-heading t)
+       (setq donep (org-entry-is-done-p))
+       (setq titlepos (point)
+             total (or (get-text-property (1+ (point)) :org-clock-minutes) 0)
+             h (/ total 60) m (- total (* 60 h))
+             total (cons h m))
+       (looking-at "\\(\\*+\\) +\\(.*\\)")
+       (setq level (- (match-end 1) (match-beginning 1))
+             title (org-match-string-no-properties 2))
+       (save-excursion (outline-next-heading) (setq next (point)))
+       (setq closedp (re-search-forward org-closed-time-regexp next t))
+       (goto-char next)
+       (setq leafp (and (looking-at "^\\*+ ")
+                        (<= (- (match-end 0) (point)) level)))
+       (push (list beg end clockpos closedp donep
+                   total title titlepos level leafp)
+             rtn)
+       (goto-char cont)))
+    (nreverse rtn)))
 
 ;;; Agenda, and Diary Integration
 
@@ -4311,7 +6278,7 @@ If there is already a time stamp at the cursor position, update it."
 (defvar org-agenda-mode-map (make-sparse-keymap)
   "Keymap for `org-agenda-mode'.")
 
-(defvar org-agenda-menu)
+(defvar org-agenda-menu) ; defined later in this file.
 (defvar org-agenda-follow-mode nil)
 (defvar org-agenda-show-log nil)
 (defvar org-agenda-buffer-name "*Org Agenda*")
@@ -4320,7 +6287,6 @@ If there is already a time stamp at the cursor position, update it."
 (defvar org-agenda-type nil)
 (defvar org-agenda-force-single-file nil)
 
-;;;###autoload
 (defun org-agenda-mode ()
   "Mode for time-sorted view on action items in Org-mode files.
 
@@ -4337,7 +6303,7 @@ The following commands are available:
   (org-add-hook 'post-command-hook 'org-agenda-post-command-hook nil 'local)
   (org-add-hook 'pre-command-hook 'org-unhighlight nil 'local)
   (unless org-agenda-keep-modes
-    (setq org-agenda-follow-mode nil
+    (setq org-agenda-follow-mode org-agenda-start-with-follow-mode
          org-agenda-show-log nil))
   (easy-menu-change
    '("Agenda") "Agenda Files"
@@ -4347,7 +6313,7 @@ The following commands are available:
       (if (get 'org-agenda-files 'org-restrict)
          "Restricted to single file"
        "Edit File List")
-      '(customize-variable 'org-agenda-files)
+      '(org-edit-agenda-file-list)
       (not (get 'org-agenda-files 'org-restrict)))
      "--")
     (mapcar 'org-file-menu-entry (org-agenda-files))))
@@ -4357,12 +6323,14 @@ The following commands are available:
    (list 'org-agenda-mode-hook)))
 
 (define-key org-agenda-mode-map "\C-i"     'org-agenda-goto)
+(define-key org-agenda-mode-map [(tab)]    'org-agenda-goto)
 (define-key org-agenda-mode-map "\C-m"     'org-agenda-switch-to)
 (define-key org-agenda-mode-map " "        'org-agenda-show)
 (define-key org-agenda-mode-map "\C-c\C-t" 'org-agenda-todo)
 (define-key org-agenda-mode-map "o"        'delete-other-windows)
 (define-key org-agenda-mode-map "L"        'org-agenda-recenter)
 (define-key org-agenda-mode-map "t"        'org-agenda-todo)
+(define-key org-agenda-mode-map "a"        'org-agenda-toggle-archive-tag)
 (define-key org-agenda-mode-map ":"        'org-agenda-set-tags)
 (define-key org-agenda-mode-map "."        'org-agenda-goto-today)
 (define-key org-agenda-mode-map "d"        'org-agenda-day-view)
@@ -4373,6 +6341,8 @@ The following commands are available:
 (define-key org-agenda-mode-map [?\C-c ?\C-x (left)] 'org-agenda-date-earlier)
 
 (define-key org-agenda-mode-map ">" 'org-agenda-date-prompt)
+(define-key org-agenda-mode-map "\C-c\C-s" 'org-agenda-schedule)
+(define-key org-agenda-mode-map "\C-c\C-d" 'org-agenda-deadline)
 (let ((l '(1 2 3 4 5 6 7 8 9 0)))
   (while l (define-key org-agenda-mode-map
             (int-to-string (pop l)) 'digit-argument)))
@@ -4384,6 +6354,7 @@ The following commands are available:
 (define-key org-agenda-mode-map "r" 'org-agenda-redo)
 (define-key org-agenda-mode-map "q" 'org-agenda-quit)
 (define-key org-agenda-mode-map "x" 'org-agenda-exit)
+(define-key org-agenda-mode-map "s" 'org-save-all-org-buffers)
 (define-key org-agenda-mode-map "P" 'org-agenda-show-priority)
 (define-key org-agenda-mode-map "T" 'org-agenda-show-tags)
 (define-key org-agenda-mode-map "n" 'next-line)
@@ -4400,11 +6371,13 @@ The following commands are available:
 (define-key org-agenda-mode-map "C" 'org-agenda-convert-date)
 (define-key org-agenda-mode-map "m" 'org-agenda-phases-of-moon)
 (define-key org-agenda-mode-map "M" 'org-agenda-phases-of-moon)
-(define-key org-agenda-mode-map "s" 'org-agenda-sunrise-sunset)
 (define-key org-agenda-mode-map "S" 'org-agenda-sunrise-sunset)
 (define-key org-agenda-mode-map "h" 'org-agenda-holidays)
 (define-key org-agenda-mode-map "H" 'org-agenda-holidays)
 (define-key org-agenda-mode-map "+" 'org-agenda-priority-up)
+(define-key org-agenda-mode-map "I" 'org-agenda-clock-in)
+(define-key org-agenda-mode-map "O" 'org-clock-out)
+(define-key org-agenda-mode-map "X" 'org-clock-cancel)
 (define-key org-agenda-mode-map "-" 'org-agenda-priority-down)
 (define-key org-agenda-mode-map (org-key 'S-up) 'org-agenda-priority-up)
 (define-key org-agenda-mode-map (org-key 'S-down) 'org-agenda-priority-down)
@@ -4417,10 +6390,11 @@ The following commands are available:
   "Local keymap for agenda entries from Org-mode.")
 
 (define-key org-agenda-keymap
-  (if org-xemacs-p [(button2)] [(mouse-2)]) 'org-agenda-goto-mouse)
+  (if (featurep 'xemacs) [(button2)] [(mouse-2)]) 'org-agenda-goto-mouse)
 (define-key org-agenda-keymap
-  (if org-xemacs-p [(button3)] [(mouse-3)]) 'org-agenda-show-mouse)
-(define-key org-agenda-keymap [follow-link] 'mouse-face)
+  (if (featurep 'xemacs) [(button3)] [(mouse-3)]) 'org-agenda-show-mouse)
+(when org-agenda-mouse-1-follows-link
+  (define-key org-agenda-keymap [follow-link] 'mouse-face))
 (easy-menu-define org-agenda-menu org-agenda-mode-map "Agenda menu"
   '("Agenda"
     ("Agenda Files")
@@ -4435,10 +6409,12 @@ The following commands are available:
     ("Tags"
      ["Show all Tags" org-agenda-show-tags t]
      ["Set Tags" org-agenda-set-tags t])
-    ("Reschedule"
+    ("Schedule"
+     ["Schedule" org-agenda-schedule t]
+     ["Set Deadline" org-agenda-deadline t]
+     "--"
      ["Reschedule +1 day" org-agenda-date-later (org-agenda-check-type nil 'agenda 'timeline)]
      ["Reschedule -1 day" org-agenda-date-earlier (org-agenda-check-type nil 'agenda 'timeline)]
-     "--"
      ["Reschedule to ..." org-agenda-date-prompt (org-agenda-check-type nil 'agenda 'timeline)])
     ("Priority"
      ["Set Priority" org-agenda-priority t]
@@ -4448,6 +6424,7 @@ The following commands are available:
     "--"
     ;; ["New agenda command" org-agenda t]
     ["Rebuild buffer" org-agenda-redo t]
+    ["Save all Org-mode Buffers" org-save-all-org-buffers t]
     "--"
     ["Goto Today" org-agenda-goto-today (org-agenda-check-type nil 'agenda 'timeline)]
     ["Next Dates" org-agenda-later (org-agenda-check-type nil 'agenda)]
@@ -4501,7 +6478,8 @@ first press `1' to indicate that the agenda should be temporarily (until the
 next use of \\[org-agenda]) restricted to the current file."
   (interactive "P")
   (catch 'exit
-    (let ((restrict-ok (and buffer-file-name (eq major-mode 'org-mode)))
+    (let ((restrict-ok (and buffer-file-name (org-mode-p)))
+         (bfn buffer-file-name)
          (custom org-agenda-custom-commands)
          c entry key type string)
       (put 'org-agenda-files 'org-restrict nil)
@@ -4527,7 +6505,7 @@ C   Configure your own agenda commands")
                           ((eq type 'todo-tree) "TODO kwd tree")
                           ((eq type 'occur-tree) "Occur tree")
                           (t "???"))
-                         (org-string-props string 'face 'org-link))))
+                         (org-add-props string nil 'face 'org-warning))))
        (goto-char (point-min))
        (if (fboundp 'fit-window-to-buffer) (fit-window-to-buffer))
        (message "Press key for agenda command%s"
@@ -4536,7 +6514,7 @@ C   Configure your own agenda commands")
        (message "")
        (when (equal c ?1)
          (if restrict-ok
-             (put 'org-agenda-files 'org-restrict (list buffer-file-name))
+             (put 'org-agenda-files 'org-restrict (list bfn))
            (error "Cannot restrict agenda to current buffer"))
          (message "Press key for agenda command%s"
                   (if restrict-ok " (restricted to current file)" ""))
@@ -4548,18 +6526,16 @@ C   Configure your own agenda commands")
        ((equal c ?C) (customize-variable 'org-agenda-custom-commands))
        ((equal c ?a) (call-interactively 'org-agenda-list))
        ((equal c ?t) (call-interactively 'org-todo-list))
-       ((equal c ?T)
-       (setq current-prefix-arg (or arg '(4)))
-       (call-interactively 'org-todo-list))
+       ((equal c ?T) (org-call-with-arg 'org-todo-list (or arg '(4))))
        ((equal c ?m) (call-interactively 'org-tags-view))
-       ((equal c ?M)
-       (setq current-prefix-arg (or arg '(4)))
-       (call-interactively 'org-tags-view))
+       ((equal c ?M) (org-call-with-arg 'org-tags-view (or arg '(4))))
        ((setq entry (assoc (char-to-string c) org-agenda-custom-commands))
        (setq type (nth 1 entry) string (nth 2 entry))
        (cond
         ((eq type 'tags)
          (org-tags-view current-prefix-arg string))
+        ((eq type 'tags-todo)
+         (org-tags-view '(4) string))
         ((eq type 'todo)
          (org-todo-list string))
         ((eq type 'tags-tree)
@@ -4577,7 +6553,7 @@ C   Configure your own agenda commands")
 
 (defun org-check-for-org-mode ()
   "Make sure current buffer is in org-mode.  Error if not."
-  (or (eq major-mode 'org-mode)
+  (or (org-mode-p)
       (error "Cannot execute org-mode agenda command on buffer in %s."
             major-mode)))
 
@@ -4588,10 +6564,58 @@ C   Configure your own agenda commands")
        (fit-window-to-buffer nil (/ (* (frame-height) 3) 4)
                              (/ (frame-height) 2))))
 
-(defun org-agenda-files ()
-  "Get the list of agenda files."
-  (or (get 'org-agenda-files 'org-restrict)
-      org-agenda-files))
+(defun org-agenda-files (&optional unrestricted)
+  "Get the list of agenda files.
+Optional UNRESTRICTED means return the full list even if a restriction
+is currently in place."
+  (cond
+   ((and (not unrestricted) (get 'org-agenda-files 'org-restrict)))
+   ((stringp org-agenda-files) (org-read-agenda-file-list))
+   ((listp org-agenda-files) org-agenda-files)
+   (t (error "Invalid value of `org-agenda-files'"))))
+
+(defvar org-window-configuration)
+
+(defun org-edit-agenda-file-list ()
+  "Edit the list of agenda files.
+Depending on setup, this either uses customize to edit the variable
+`org-agenda-files', or it visits the file that is holding the list.  In the
+latter case, the buffer is set up in a way that saving it automatically kills
+the buffer and restores the previous window configuration."
+  (interactive)
+  (if (stringp org-agenda-files)
+      (let ((cw (current-window-configuration)))
+       (find-file org-agenda-files)
+       (org-set-local 'org-window-configuration cw)
+       (org-add-hook 'after-save-hook
+                     (lambda ()
+                       (set-window-configuration
+                        (prog1 org-window-configuration
+                          (kill-buffer (current-buffer))))
+                       (org-install-agenda-files-menu)
+                       (message "New agenda file list installed"))
+                     nil 'local)
+       (message (substitute-command-keys
+                 "Edit list and finish with \\[save-buffer]")))
+    (customize-variable 'org-agenda-files)))
+
+(defun org-store-new-agenda-file-list (list)
+  "Set new value for the agenda file list and save it correcly."
+  (if (stringp org-agenda-files)
+      (let ((f org-agenda-files) b)
+       (while (setq b (find-buffer-visiting f)) (kill-buffer b))
+       (with-temp-file f
+         (insert (mapconcat 'identity list "\n") "\n")))
+    (let ((org-mode-hook nil) (default-major-mode 'fundamental-mode))
+      (setq org-agenda-files list)
+      (customize-save-variable 'org-agenda-files org-agenda-files))))
+
+(defun org-read-agenda-file-list ()
+  "Read the list of agenda files from a file."
+  (when (stringp org-agenda-files)
+    (with-temp-buffer
+      (insert-file-contents org-agenda-files)
+      (org-split-string (buffer-string) "[ \t\r\n]*?[\r\n][ \t\r\n]*"))))
 
 (defvar org-agenda-markers nil
   "List of all currently active markers created by `org-agenda'.")
@@ -4668,12 +6692,14 @@ dates."
         (beg (if (org-region-active-p) (region-beginning) (point-min)))
         (end (if (org-region-active-p) (region-end) (point-max)))
         (day-numbers (org-get-all-dates beg end 'no-ranges
-                                        t doclosed)) ; always include today
+                                        t doclosed ; always include today
+                                        org-timeline-show-empty-dates))
         (today (time-to-days (current-time)))
         (org-respect-restriction t)
         (past t)
         args
-        s e rtn d)
+        s e rtn d emptyp)
+    (org-prepare-agenda-buffers org-agenda-files)
     (setq org-agenda-redo-command
          (list 'progn
                (list 'switch-to-buffer-other-window (current-buffer))
@@ -4688,33 +6714,40 @@ dates."
     (setq buffer-read-only nil)
     (erase-buffer)
     (org-agenda-mode) (setq buffer-read-only nil)
-    (set (make-local-variable 'org-agenda-type) 'timeline)
+    (org-set-local 'org-agenda-type 'timeline)
     (if doclosed (push :closed args))
     (push :timestamp args)
     (if dotodo (push :todo args))
     (while (setq d (pop day-numbers))
-      (if (and (>= d today)
-              dopast
-              past)
+      (if (and (listp d) (eq (car d) :omitted))
          (progn
-           (setq past nil)
-           (insert (make-string 79 ?-) "\n")))
-      (setq date (calendar-gregorian-from-absolute d))
-      (setq s (point))
-      (setq rtn (apply 'org-agenda-get-day-entries
-                      entry date args))
-      (if (or rtn (equal d today))
-         (progn
-           (insert (calendar-day-name date) " "
-                   (number-to-string (extract-calendar-day date)) " "
-                   (calendar-month-name (extract-calendar-month date)) " "
-                   (number-to-string (extract-calendar-year date)) "\n")
-           (put-text-property s (1- (point)) 'face
-                              'org-link)
-           (if (equal d today)
-               (put-text-property s (1- (point)) 'org-today t))
-           (insert (org-finalize-agenda-entries rtn) "\n")
-           (put-text-property s (1- (point)) 'day d))))
+           (setq s (point))
+           (insert (format "\n[... %d empty days omitted]\n\n" (cdr d)))
+           (put-text-property s (1- (point)) 'face 'org-level-3))
+       (if (listp d) (setq d (car d) emptyp t) (setq emptyp nil))
+       (if (and (>= d today)
+                dopast
+                past)
+           (progn
+             (setq past nil)
+             (insert (make-string 79 ?-) "\n")))
+       (setq date (calendar-gregorian-from-absolute d))
+       (setq s (point))
+       (setq rtn (and (not emptyp)
+                      (apply 'org-agenda-get-day-entries
+                             entry date args)))
+       (if (or rtn (equal d today) org-timeline-show-empty-dates)
+           (progn
+             (insert (calendar-day-name date) " "
+                     (number-to-string (extract-calendar-day date)) " "
+                     (calendar-month-name (extract-calendar-month date)) " "
+                     (number-to-string (extract-calendar-year date)) "\n")
+             (put-text-property s (1- (point)) 'face
+                                'org-level-3)
+             (if (equal d today)
+                 (put-text-property s (1- (point)) 'org-today t))
+             (and rtn (insert (org-finalize-agenda-entries rtn) "\n"))
+             (put-text-property s (1- (point)) 'day d)))))
     (goto-char (point-min))
     (setq buffer-read-only t)
     (goto-char (or (text-property-any (point-min) (point-max) 'org-today t)
@@ -4745,7 +6778,8 @@ NDAYS defaults to `org-agenda-ndays'."
                  (and (null ndays) (equal 1 org-agenda-ndays)))
              nil org-agenda-start-on-weekday))
         (org-agenda-keep-modes keep-modes)
-        (files (copy-sequence (org-agenda-files)))
+        (thefiles (org-agenda-files))
+        (files thefiles)
         (win (selected-window))
         (today (time-to-days (current-time)))
         (sd (or start-day today))
@@ -4760,6 +6794,7 @@ NDAYS defaults to `org-agenda-ndays'."
         (day-numbers (list start))
         (inhibit-redisplay t)
         s e rtn rtnall file date d start-pos end-pos todayp nd)
+    (org-prepare-agenda-buffers files)
     (setq org-agenda-redo-command
          (list 'org-agenda-list (list 'quote include-all) start-day ndays t))
     ;; Make the list of days
@@ -4777,12 +6812,12 @@ NDAYS defaults to `org-agenda-ndays'."
     (setq buffer-read-only nil)
     (erase-buffer)
     (org-agenda-mode) (setq buffer-read-only nil)
-    (set (make-local-variable 'org-agenda-type) 'agenda)
-    (set (make-local-variable 'starting-day) (car day-numbers))
-    (set (make-local-variable 'include-all-loc) include-all)
+    (org-set-local 'org-agenda-type 'agenda)
+    (org-set-local 'starting-day (car day-numbers))
+    (org-set-local 'include-all-loc include-all)
     (when (and (or include-all org-agenda-include-all-todo)
               (member today day-numbers))
-      (setq files (org-agenda-files)
+      (setq files thefiles
            rtnall nil)
       (while (setq file (pop files))
        (catch 'nextfile
@@ -4794,7 +6829,7 @@ NDAYS defaults to `org-agenda-ndays'."
       (when rtnall
        (insert "ALL CURRENTLY OPEN TODO ITEMS:\n")
        (add-text-properties (point-min) (1- (point))
-                            (list 'face 'org-link))
+                            (list 'face 'org-level-3))
        (insert (org-finalize-agenda-entries rtnall) "\n")))
     (while (setq d (pop day-numbers))
       (setq date (calendar-gregorian-from-absolute d)
@@ -4804,7 +6839,7 @@ NDAYS defaults to `org-agenda-ndays'."
          (setq start-pos (point))
        (if (and start-pos (not end-pos))
            (setq end-pos (point))))
-      (setq files (org-agenda-files)
+      (setq files thefiles
            rtnall nil)
       (while (setq file (pop files))
        (catch 'nextfile
@@ -4830,7 +6865,7 @@ NDAYS defaults to `org-agenda-ndays'."
                            (calendar-month-name (extract-calendar-month date))
                            (extract-calendar-year date)))
            (put-text-property s (1- (point)) 'face
-                              'org-link)
+                              'org-level-3)
            (if rtnall (insert
                        (org-finalize-agenda-entries
                         (org-agenda-add-time-grid-maybe
@@ -4872,7 +6907,8 @@ for a keyword.  A numeric prefix directly selects the Nth keyword in
         (completion-ignore-case t)
         (org-select-this-todo-keyword
          (if (stringp arg) arg
-           (and arg (integerp arg) (nth (1- arg) org-todo-keywords))))
+           (and arg (integerp arg) (> arg 0)
+                 (nth (1- arg) org-todo-keywords))))
         rtn rtnall files file pos)
     (when (equal arg '(4))
       (setq org-select-this-todo-keyword
@@ -4887,13 +6923,14 @@ for a keyword.  A numeric prefix directly selects the Nth keyword in
     (setq buffer-read-only nil)
     (erase-buffer)
     (org-agenda-mode) (setq buffer-read-only nil)
-    (set (make-local-variable 'org-agenda-type) 'todo)
-    (set (make-local-variable 'last-arg) arg)
-    (set (make-local-variable 'org-todo-keywords) kwds)
-    (set (make-local-variable 'org-agenda-redo-command)
-        '(org-todo-list (or current-prefix-arg last-arg) t))
+    (org-set-local 'org-agenda-type 'todo)
+    (org-set-local 'last-arg arg)
+    (org-set-local 'org-todo-keywords kwds)
+    (org-set-local 'org-agenda-redo-command
+                  '(org-todo-list (or current-prefix-arg last-arg) t))
     (setq files (org-agenda-files)
          rtnall nil)
+    (org-prepare-agenda-buffers files)
     (while (setq file (pop files))
       (catch 'nextfile
        (org-check-agenda-file file)
@@ -4901,7 +6938,7 @@ for a keyword.  A numeric prefix directly selects the Nth keyword in
        (setq rtnall (append rtnall rtn))))
     (insert "Global list of TODO items of type: ")
     (add-text-properties (point-min) (1- (point))
-                        (list 'face 'org-link))
+                        (list 'face 'org-level-3))
     (setq pos (point))
     (insert (or org-select-this-todo-keyword "ALL") "\n")
     (add-text-properties pos (1- (point)) (list 'face 'org-warning))
@@ -4913,7 +6950,7 @@ for a keyword.  A numeric prefix directly selects the Nth keyword in
                    (format "(%d)%s" (setq n (1+ n)) x))
                  org-todo-keywords " "))
      "\n")
-    (add-text-properties pos (1- (point)) (list 'face 'org-link))
+    (add-text-properties pos (1- (point)) (list 'face 'org-level-3))
     (when rtnall
       (insert (org-finalize-agenda-entries rtnall) "\n"))
     (goto-char (point-min))
@@ -4923,12 +6960,9 @@ for a keyword.  A numeric prefix directly selects the Nth keyword in
 
 (defun org-check-agenda-file (file)
   "Make sure FILE exists.  If not, ask user what to do."
-  ;; FIXME:  this does not correctly change the menus
-  ;; Could probably be fixed by explicitly going to the buffer where
-  ;; the call originated.
   (when (not (file-exists-p file))
-    (message "non-existent file %s.  [R]emove from agenda-files or [A]bort?"
-            file)
+    (message "non-existent file %s. [R]emove from list or [A]bort?"
+            (abbreviate-file-name file))
     (let ((r (downcase (read-char-exclusive))))
       (cond
        ((equal r ?r)
@@ -4942,7 +6976,7 @@ If ERROR is non-nil, throw an error, otherwise just return nil."
   (if (memq org-agenda-type types)
       t
     (if error
-       (error "Now allowed in %s-type agenda buffers" org-agenda-type)
+       (error "Not allowed in %s-type agenda buffers" org-agenda-type)
       nil)))
 
 (defun org-agenda-quit ()
@@ -4962,6 +6996,14 @@ Org-mode buffers visited directly by the user will not be touched."
   (setq org-agenda-new-buffers nil)
   (org-agenda-quit))
 
+;; FIXME: move this function.
+(defun org-save-all-org-buffers ()
+  "Save all Org-mode buffers without user confirmation."
+  (interactive)
+  (message "Saving all Org-mode buffers...")
+  (save-some-buffers t 'org-mode-p)
+  (message "Saving all Org-mode buffers... done"))
+
 (defun org-agenda-redo ()
   "Rebuild Agenda.
 When this is the global TODO list, a prefix argument will be interpreted."
@@ -5049,12 +7091,12 @@ With prefix ARG, go back that many times `org-agenda-ndays'."
 
 (defun org-highlight (begin end &optional buffer)
   "Highlight a region with overlay."
-  (funcall (if org-xemacs-p 'set-extent-endpoints 'move-overlay)
+  (funcall (if (featurep 'xemacs) 'set-extent-endpoints 'move-overlay)
           org-hl begin end (or buffer (current-buffer))))
 
 (defun org-unhighlight ()
   "Detach overlay INDEX."
-  (funcall (if org-xemacs-p 'detach-extent 'delete-overlay) org-hl))
+  (funcall (if (featurep 'xemacs) 'detach-extent 'delete-overlay) org-hl))
 
 
 (defun org-agenda-follow-mode ()
@@ -5127,7 +7169,7 @@ With prefix ARG, go back that many times `org-agenda-ndays'."
         (org-disable-agenda-to-diary t))
     (save-excursion
       (save-window-excursion
-       (list-diary-entries date 1)))
+       (list-diary-entries date 1)))  ;; Keep this name for now, compatibility
     (if (not (get-buffer fancy-diary-buffer))
        (setq entries nil)
       (with-current-buffer fancy-diary-buffer
@@ -5150,11 +7192,7 @@ With prefix ARG, go back that many times `org-agenda-ndays'."
             (lambda (x)
               (setq x (org-format-agenda-item "" x "Diary" nil 'time))
               ;; Extend the text properties to the beginning of the line
-              (add-text-properties
-               0 (length x)
-               (text-properties-at (1- (length x)) x)
-               x)
-              x)
+              (org-add-props x (text-properties-at (1- (length x)) x)))
             entries)))))
 
 (defun org-agenda-cleanup-fancy-diary ()
@@ -5193,18 +7231,13 @@ date.  It also removes lines that contain only whitespace."
 
 (defun org-modify-diary-entry-string (string)
   "Add text properties to string, allowing org-mode to act on it."
-  (add-text-properties
-   0 (length string)
-   (list 'mouse-face 'highlight
-        'keymap org-agenda-keymap
-        'help-echo
-        (format
-         "mouse-2 or RET jump to diary file %s"
-         (abbreviate-file-name buffer-file-name))
-        'org-agenda-diary-link t
-        'org-marker (org-agenda-new-marker (point-at-bol)))
-   string)
-  string)
+  (org-add-props string nil
+    'mouse-face 'highlight
+    'keymap org-agenda-keymap
+    'help-echo (format "mouse-2 or RET jump to diary file %s"
+                      (abbreviate-file-name buffer-file-name))
+    'org-agenda-diary-link t
+    'org-marker (org-agenda-new-marker (point-at-bol))))
 
 (defun org-diary-default-entry ()
   "Add a dummy entry to the diary.
@@ -5221,9 +7254,10 @@ Needed to avoid empty dates which mess up holiday display."
 If the current buffer visits an agenda file, find the next one in the list.
 If the current buffer does not, find the first agenda file."
   (interactive)
-  (let ((files (append org-agenda-files (list (car org-agenda-files))))
-       (tcf (if buffer-file-name (file-truename buffer-file-name)))
-       file)
+  (let* ((fs (org-agenda-files t))
+        (files (append fs (list (car fs))))
+        (tcf (if buffer-file-name (file-truename buffer-file-name)))
+        file)
     (unless files (error "No agenda files"))
     (catch 'exit
       (while (setq file (pop files))
@@ -5231,7 +7265,7 @@ If the current buffer does not, find the first agenda file."
            (when (car files)
              (find-file (car files))
              (throw 'exit t))))
-      (find-file (car org-agenda-files)))))
+      (find-file (car fs)))))
 
 (defun org-agenda-file-to-end ()
   "Move/add the current file to the end of the agenda file list.
@@ -5248,7 +7282,7 @@ end of the list."
   (interactive "P")
   (let ((file-alist (mapcar (lambda (x)
                              (cons (file-truename x) x))
-                           org-agenda-files))
+                           (org-agenda-files t)))
        (ctf (file-truename buffer-file-name))
        x had)
     (setq x (assoc ctf file-alist) had x)
@@ -5257,9 +7291,7 @@ end of the list."
     (if to-end
        (setq file-alist (append (delq x file-alist) (list x)))
       (setq file-alist (cons x (delq x file-alist))))
-    (setq org-agenda-files (mapcar 'cdr file-alist))
-    (let ((org-mode-hook nil) (default-major-mode 'fundamental-mode))
-      (customize-save-variable 'org-agenda-files org-agenda-files))
+    (org-store-new-agenda-file-list (mapcar 'cdr file-alist))
     (org-install-agenda-files-menu)
     (message "File %s to %s of agenda file list"
             (if had "moved" "added") (if to-end "end" "front"))))
@@ -5277,29 +7309,26 @@ Optional argument FILE means, use this file instead of the current."
                             (if (equal true-file
                                        (file-truename x))
                                 nil x))
-                          org-agenda-files))))
-    (if (not (= (length files) (length org-agenda-files)))
+                          (org-agenda-files t)))))
+    (if (not (= (length files) (length (org-agenda-files t))))
        (progn
-         (setq org-agenda-files files)
-         (customize-save-variable 'org-agenda-files org-agenda-files)
+         (org-store-new-agenda-file-list files)
          (org-install-agenda-files-menu)
          (message "Removed file: %s" afile))
       (message "File was not in list: %s" afile))))
 
 (defun org-file-menu-entry (file)
   (vector file (list 'find-file file) t))
-;; FIXME: Maybe we removed a buffer visited through the menu from
-;; org-agenda-new-buffers, so that the buffer will not be removed
-;; when exiting the agenda????
 
-(defun org-get-all-dates (beg end &optional no-ranges force-today inactive)
+(defun org-get-all-dates (beg end &optional no-ranges force-today inactive empty)
   "Return a list of all relevant day numbers from BEG to END buffer positions.
 If NO-RANGES is non-nil, include only the start and end dates of a range,
 not every single day in the range.  If FORCE-TODAY is non-nil, make
 sure that TODAY is included in the list.  If INACTIVE is non-nil, also
-inactive time stamps (those in square brackets) are included."
+inactive time stamps (those in square brackets) are included.
+When EMPTY is non-nil, also include days without any entries."
   (let ((re (if inactive org-ts-regexp-both org-ts-regexp))
-        dates date day day1 day2 ts1 ts2)
+        dates dates1 date day day1 day2 ts1 ts2)
     (if force-today
        (setq dates (list (time-to-days (current-time)))))
     (save-excursion
@@ -5317,7 +7346,19 @@ inactive time stamps (those in square brackets) are included."
                day2 (time-to-days (org-time-string-to-time ts2)))
          (while (< (setq day1 (1+ day1)) day2)
            (or (memq day1 dates) (push day1 dates)))))
-      (sort dates '<))))
+      (setq dates (sort dates '<))
+      (when empty
+       (while (setq day (pop dates))
+         (setq day2 (car dates))
+         (push day dates1)
+         (when (and day2 empty)
+           (if (or (eq empty t)
+                   (and (numberp empty) (<= (- day2 day) empty)))
+               (while (< (setq day (1+ day)) day2)
+                 (push (list day) dates1))
+             (push (cons :omitted (- day2 day)) dates1))))
+       (setq dates (nreverse dates1)))
+      dates)))
 
 ;;;###autoload
 (defun org-diary (&rest args)
@@ -5368,7 +7409,7 @@ function from a program - use `org-agenda-get-day-entries' instead."
   (setq args (or args '(:deadline :scheduled :timestamp)))
   (let* ((files (if (and entry (stringp entry) (string-match "\\S-" entry))
                    (list entry)
-                 org-agenda-files))
+                 (org-agenda-files t)))
         file rtn results)
     ;; If this is called during org-agenda, don't return any entries to
     ;; the calendar.  Org Agenda will list these entries itself.
@@ -5415,6 +7456,7 @@ the documentation of `org-diary'."
   (setq args (or args '(:deadline :scheduled :timestamp)))
   (let* ((org-startup-with-deadline-check nil)
         (org-startup-folded nil)
+        (org-startup-align-all-tables nil)
         (buffer (if (file-exists-p file)
                     (org-get-agenda-file-buffer file)
                   (error "No such file %s" file)))
@@ -5423,7 +7465,7 @@ the documentation of `org-diary'."
        ;; If file does not exist, make sure an error message ends up in diary
        (list (format "ORG-AGENDA-ERROR: No such org-file %s" file))
       (with-current-buffer buffer
-       (unless (eq major-mode 'org-mode)
+       (unless (org-mode-p)
          (error "Agenda file %s is not in `org-mode'" file))
        (setq org-category-table (org-get-category-table))
        (let ((case-fold-search nil))
@@ -5488,6 +7530,7 @@ the documentation of `org-diary'."
   "Return the TODO information for agenda display."
   (let* ((props (list 'face nil
                      'done-face 'org-done
+                     'org-not-done-regexp org-not-done-regexp
                      'mouse-face 'highlight
                      'keymap org-agenda-keymap
                      'help-echo
@@ -5499,29 +7542,37 @@ the documentation of `org-diary'."
                                     "\\)\\>")
                           org-not-done-regexp)
                         "[^\n\r]*\\)"))
+        (sched-re (concat ".*\n?.*?" org-scheduled-time-regexp))
         marker priority category tags
         ee txt)
     (goto-char (point-min))
     (while (re-search-forward regexp nil t)
-      (goto-char (match-beginning 1))
-      (setq marker (org-agenda-new-marker (1+ (match-beginning 0)))
-           category (org-get-category)
-           tags (org-get-tags-at (point))
-           txt (org-format-agenda-item "" (match-string 1) category tags)
-           priority
-           (+ (org-get-priority txt)
-              (if org-todo-kwd-priority-p
-                   (- org-todo-kwd-max-priority -2
-                      (length
-                       (member (match-string 2) org-todo-keywords)))
-                 1)))
-      (add-text-properties
-       0 (length txt) (append (list 'org-marker marker 'org-hd-marker marker
-                                   'priority priority 'category category)
-                             props)
-       txt)
-      (push txt ee)
-      (goto-char (match-end 1)))
+      (catch :skip
+       (when (and org-agenda-todo-ignore-scheduled
+                  (looking-at sched-re))
+         ;; FIXME: the following test also happens below, but we need it here
+         (or org-agenda-todo-list-sublevels (org-end-of-subtree 'invisible))
+         (throw :skip nil))
+       (org-agenda-skip)
+       (goto-char (match-beginning 1))
+       (setq marker (org-agenda-new-marker (1+ (match-beginning 0)))
+             category (org-get-category)
+             tags (org-get-tags-at (point))
+             txt (org-format-agenda-item "" (match-string 1) category tags)
+             priority
+             (+ (org-get-priority txt)
+                (if org-todo-kwd-priority-p
+                    (- org-todo-kwd-max-priority -2
+                       (length
+                        (member (match-string 2) org-todo-keywords)))
+                    1)))
+       (org-add-props txt props
+         'org-marker marker 'org-hd-marker marker
+         'priority priority 'category category)
+       (push txt ee)
+       (if org-agenda-todo-list-sublevels
+           (goto-char (match-end 1))
+         (org-end-of-subtree 'invisible))))
     (nreverse ee)))
 
 (defconst org-agenda-no-heading-message
@@ -5530,6 +7581,7 @@ the documentation of `org-diary'."
 (defun org-agenda-get-timestamps ()
   "Return the date stamp information for agenda display."
   (let* ((props (list 'face nil
+                     'org-not-done-regexp org-not-done-regexp
                      'mouse-face 'highlight
                      'keymap org-agenda-keymap
                      'help-echo
@@ -5546,74 +7598,63 @@ the documentation of `org-diary'."
         ee txt timestr tags)
     (goto-char (point-min))
     (while (re-search-forward regexp nil t)
-      (if (not (save-match-data (org-at-date-range-p)))
-         (progn
-           (setq marker (org-agenda-new-marker (match-beginning 0))
-                 category (org-get-category (match-beginning 0))
-                 tmp (buffer-substring (max (point-min)
-                                            (- (match-beginning 0)
-                                               org-ds-keyword-length))
-                                       (match-beginning 0))
-                 timestr (buffer-substring (match-beginning 0) (point-at-eol))
-                 deadlinep (string-match org-deadline-regexp tmp)
-                 scheduledp (string-match org-scheduled-regexp tmp)
-                 donep (org-entry-is-done-p))
-           (if (string-match ">" timestr)
-               ;; substring should only run to end of time stamp
-               (setq timestr (substring timestr 0 (match-end 0))))
-           (save-excursion
-             (if (re-search-backward "\\(^\\|\r\\)\\*+" nil t)
-                 (progn
-                   (goto-char (match-end 1))
-                   (setq hdmarker (org-agenda-new-marker)
-                         tags (org-get-tags-at))
-                   (looking-at "\\*+[ \t]*\\([^\r\n]+\\)")
-                   (setq txt (org-format-agenda-item
-                              (format "%s%s"
-                                      (if deadlinep  "Deadline:  " "")
-                                      (if scheduledp "Scheduled: " ""))
-                              (match-string 1) category tags timestr)))
-               (setq txt org-agenda-no-heading-message))
-             (setq priority (org-get-priority txt))
-             (add-text-properties
-              0 (length txt) (append (list 'org-marker marker
-                                           'org-hd-marker hdmarker) props)
-              txt)
-             (if deadlinep
-                 (add-text-properties
-                  0 (length txt)
-                  (list 'face
-                        (if donep 'org-done 'org-warning)
-                        'undone-face 'org-warning
-                        'done-face 'org-done
-                        'category category
-                        'priority (+ 100 priority))
-                  txt)
-               (if scheduledp
-                   (add-text-properties
-                    0 (length txt)
-                    (list 'face 'org-scheduled-today
-                          'undone-face 'org-scheduled-today
-                          'done-face 'org-done
-                          'category category
-                          priority (+ 99 priority))
-                    txt)
-                 (add-text-properties
-                  0 (length txt)
-                  (list 'priority priority 'category category) txt)))
-             (push txt ee))
-           (outline-next-heading))))
+      (catch :skip
+       (and (save-match-data (org-at-date-range-p)) (throw :skip nil))
+       (org-agenda-skip)
+       (setq marker (org-agenda-new-marker (match-beginning 0))
+             category (org-get-category (match-beginning 0))
+             tmp (buffer-substring (max (point-min)
+                                        (- (match-beginning 0)
+                                           org-ds-keyword-length))
+                                   (match-beginning 0))
+             timestr (buffer-substring (match-beginning 0) (point-at-eol))
+             deadlinep (string-match org-deadline-regexp tmp)
+             scheduledp (string-match org-scheduled-regexp tmp)
+             donep (org-entry-is-done-p))
+       (if (string-match ">" timestr)
+           ;; substring should only run to end of time stamp
+           (setq timestr (substring timestr 0 (match-end 0))))
+       (save-excursion
+         (if (re-search-backward "\\(^\\|\r\\)\\*+" nil t)
+             (progn
+               (goto-char (match-end 1))
+               (setq hdmarker (org-agenda-new-marker)
+                     tags (org-get-tags-at))
+               (looking-at "\\*+[ \t]*\\([^\r\n]+\\)")
+               (setq txt (org-format-agenda-item
+                          (format "%s%s"
+                                  (if deadlinep  "Deadline:  " "")
+                                  (if scheduledp "Scheduled: " ""))
+                          (match-string 1) category tags timestr)))
+           (setq txt org-agenda-no-heading-message))
+         (setq priority (org-get-priority txt))
+         (org-add-props txt props
+           'org-marker marker 'org-hd-marker hdmarker)
+         (if deadlinep
+             (org-add-props txt nil
+               'face (if donep 'org-done 'org-warning)
+               'undone-face 'org-warning 'done-face 'org-done
+               'category category 'priority (+ 100 priority))
+           (if scheduledp
+               (org-add-props txt nil
+                 'face 'org-scheduled-today
+                 'undone-face 'org-scheduled-today 'done-face 'org-done
+                 'category category 'priority (+ 99 priority))
+             (org-add-props txt nil 'priority priority 'category category)))
+         (push txt ee))
+       (outline-next-heading)))
     (nreverse ee)))
 
 (defun org-agenda-get-closed ()
   "Return the logged TODO entries for agenda display."
   (let* ((props (list 'mouse-face 'highlight
+                     'org-not-done-regexp org-not-done-regexp
                      'keymap org-agenda-keymap
                      'help-echo
                      (format "mouse-2 or RET jump to org file %s"
                              (abbreviate-file-name buffer-file-name))))
         (regexp (concat
-                 "\\<" org-closed-string " *\\["
+                 "\\<\\(" org-closed-string "\\|" org-clock-string "\\) *\\["
                  (regexp-quote
                   (substring
                    (format-time-string
@@ -5621,49 +7662,46 @@ the documentation of `org-diary'."
                     (apply 'encode-time  ; DATE bound by calendar
                            (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
                    1 11))))
-        marker hdmarker priority category tags
+        marker hdmarker priority category tags closedp
         ee txt timestr)
     (goto-char (point-min))
     (while (re-search-forward regexp nil t)
-      (if (not (save-match-data (org-at-date-range-p)))
-         (progn
-           (setq marker (org-agenda-new-marker (match-beginning 0))
-                 category (org-get-category (match-beginning 0))
-                 timestr (buffer-substring (match-beginning 0) (point-at-eol))
-                 ;; donep (org-entry-is-done-p)
-                 )
-           (if (string-match "\\]" timestr)
-               ;; substring should only run to end of time stamp
-               (setq timestr (substring timestr 0 (match-end 0))))
-           (save-excursion
-             (if (re-search-backward "\\(^\\|\r\\)\\*+" nil t)
-                 (progn
-                   (goto-char (match-end 1))
-                   (setq hdmarker (org-agenda-new-marker)
-                         tags (org-get-tags-at))
-                   (looking-at "\\*+[ \t]*\\([^\r\n]+\\)")
-                   (setq txt (org-format-agenda-item
-                              "Closed:    "
-                              (match-string 1) category tags timestr)))
-               (setq txt org-agenda-no-heading-message))
-             (setq priority 100000)
-             (add-text-properties
-              0 (length txt) (append (list 'org-marker marker
-                                           'org-hd-marker hdmarker
-                                           'face 'org-done
-                                           'priority priority
-                                           'category category
-                                           'undone-face 'org-warning
-                                           'done-face 'org-done) props)
-              txt)
-             (push txt ee))
-           (outline-next-heading))))
+      (catch :skip
+       (org-agenda-skip)
+       (setq marker (org-agenda-new-marker (match-beginning 0))
+             closedp (equal (match-string 1) org-closed-string)
+             category (org-get-category (match-beginning 0))
+             timestr (buffer-substring (match-beginning 0) (point-at-eol))
+             ;; donep (org-entry-is-done-p)
+             )
+       (if (string-match "\\]" timestr)
+           ;; substring should only run to end of time stamp
+           (setq timestr (substring timestr 0 (match-end 0))))
+       (save-excursion
+         (if (re-search-backward "\\(^\\|\r\\)\\*+" nil t)
+             (progn
+               (goto-char (match-end 1))
+               (setq hdmarker (org-agenda-new-marker)
+                     tags (org-get-tags-at))
+               (looking-at "\\*+[ \t]*\\([^\r\n]+\\)")
+               (setq txt (org-format-agenda-item
+                          (if closedp "Closed:    " "Clocked:   ")
+                          (match-string 1) category tags timestr)))
+           (setq txt org-agenda-no-heading-message))
+         (setq priority 100000)
+         (org-add-props txt props
+           'org-marker marker 'org-hd-marker hdmarker 'face 'org-done
+           'priority priority 'category category
+           'undone-face 'org-warning 'done-face 'org-done)
+         (push txt ee))
+       (outline-next-heading)))
     (nreverse ee)))
 
 (defun org-agenda-get-deadlines ()
   "Return the deadline information for agenda display."
   (let* ((wdays org-deadline-warning-days)
         (props (list 'mouse-face 'highlight
+                     'org-not-done-regexp org-not-done-regexp
                      'keymap org-agenda-keymap
                      'help-echo
                      (format "mouse-2 or RET jump to org file %s"
@@ -5672,57 +7710,52 @@ the documentation of `org-diary'."
         (todayp (equal date (calendar-current-date))) ; DATE bound by calendar
         (d1 (calendar-absolute-from-gregorian date))  ; DATE bound by calendar
         d2 diff pos pos1 category tags
-        ee txt head)
+        ee txt head face)
     (goto-char (point-min))
     (while (re-search-forward regexp nil t)
-      (setq pos (1- (match-beginning 1))
-           d2 (time-to-days
-               (org-time-string-to-time (match-string 1)))
-           diff (- d2 d1))
-      ;; When to show a deadline in the calendar:
-      ;; If the expiration is within wdays warning time.
-      ;; Past-due deadlines are only shown on the current date
-      (if (and (< diff wdays) todayp (not (= diff 0)))
-         (save-excursion
-           (setq category (org-get-category))
-           (if (re-search-backward "\\(^\\|\r\\)\\*+[ \t]*" nil t)
-               (progn
-                 (goto-char (match-end 0))
-                 (setq pos1 (match-end 1))
-                 (setq tags (org-get-tags-at pos1))
-                 (setq head (buffer-substring-no-properties
-                             (point)
-                             (progn (skip-chars-forward "^\r\n")
-                                    (point))))
-                 (if (string-match org-looking-at-done-regexp head)
-                     (setq txt nil)
-                   (setq txt (org-format-agenda-item
-                              (format "In %3d d.: " diff) head category tags))))
-             (setq txt org-agenda-no-heading-message))
-           (when txt
-             (add-text-properties
-              0 (length txt)
-              (append
-               (list 'org-marker (org-agenda-new-marker pos)
-                     'org-hd-marker (org-agenda-new-marker pos1)
-                     'priority (+ (- 10 diff) (org-get-priority txt))
-                     'category category
-                     'face (cond ((<= diff 0) 'org-warning)
-                                 ((<= diff 5) 'org-scheduled-previously)
-                                 (t nil))
-                     'undone-face (cond
-                                   ((<= diff 0) 'org-warning)
-                                   ((<= diff 5) 'org-scheduled-previously)
-                                   (t nil))
-                     'done-face 'org-done)
-               props)
-              txt)
-             (push txt ee)))))
+      (catch :skip
+       (org-agenda-skip)
+       (setq pos (1- (match-beginning 1))
+             d2 (time-to-days
+                 (org-time-string-to-time (match-string 1)))
+             diff (- d2 d1))
+       ;; When to show a deadline in the calendar:
+       ;; If the expiration is within wdays warning time.
+       ;; Past-due deadlines are only shown on the current date
+       (if (and (< diff wdays) todayp (not (= diff 0)))
+           (save-excursion
+             (setq category (org-get-category))
+             (if (re-search-backward "\\(^\\|\r\\)\\*+[ \t]*" nil t)
+                 (progn
+                   (goto-char (match-end 0))
+                   (setq pos1 (match-end 1))
+                   (setq tags (org-get-tags-at pos1))
+                   (setq head (buffer-substring-no-properties
+                               (point)
+                               (progn (skip-chars-forward "^\r\n")
+                                      (point))))
+                   (if (string-match org-looking-at-done-regexp head)
+                       (setq txt nil)
+                     (setq txt (org-format-agenda-item
+                                (format "In %3d d.: " diff) head category tags))))
+               (setq txt org-agenda-no-heading-message))
+             (when txt
+               (setq face (cond ((<= diff 0) 'org-warning)
+                                ((<= diff 5) 'org-upcoming-deadline)
+                                (t nil)))
+               (org-add-props txt props
+                 'org-marker (org-agenda-new-marker pos)
+                 'org-hd-marker (org-agenda-new-marker pos1)
+                 'priority (+ (- 10 diff) (org-get-priority txt))
+                 'category category
+                 'face face 'undone-face face 'done-face 'org-done)
+               (push txt ee))))))
     ee))
 
 (defun org-agenda-get-scheduled ()
   "Return the scheduled information for agenda display."
   (let* ((props (list 'face 'org-scheduled-previously
+                     'org-not-done-regexp org-not-done-regexp
                      'undone-face 'org-scheduled-previously
                      'done-face 'org-done
                      'mouse-face 'highlight
@@ -5737,43 +7770,44 @@ the documentation of `org-diary'."
         ee txt head)
     (goto-char (point-min))
     (while (re-search-forward regexp nil t)
-      (setq pos (1- (match-beginning 1))
-           d2 (time-to-days
-               (org-time-string-to-time (match-string 1)))
-           diff (- d2 d1))
-      ;; When to show a scheduled item in the calendar:
-      ;; If it is on or past the date.
-      (if (and (< diff 0) todayp)
-         (save-excursion
-           (setq category (org-get-category))
-           (if (re-search-backward "\\(^\\|\r\\)\\*+[ \t]*" nil t)
-               (progn
-                 (goto-char (match-end 0))
-                 (setq pos1 (match-end 1))
-                 (setq tags (org-get-tags-at))
-                 (setq head (buffer-substring-no-properties
-                             (point)
-                             (progn (skip-chars-forward "^\r\n") (point))))
-                 (if (string-match org-looking-at-done-regexp head)
-                     (setq txt nil)
-                   (setq txt (org-format-agenda-item
-                              (format "Sched.%2dx: " (- 1 diff)) head
-                              category tags))))
-             (setq txt org-agenda-no-heading-message))
-           (when txt
-             (add-text-properties
-              0 (length txt)
-              (append (list 'org-marker (org-agenda-new-marker pos)
-                            'org-hd-marker (org-agenda-new-marker pos1)
-                            'priority (+ (- 5 diff) (org-get-priority txt))
-                            'category category)
-                      props) txt)
-             (push txt ee)))))
+      (catch :skip
+       (org-agenda-skip)
+       (setq pos (1- (match-beginning 1))
+             d2 (time-to-days
+                 (org-time-string-to-time (match-string 1)))
+             diff (- d2 d1))
+       ;; When to show a scheduled item in the calendar:
+       ;; If it is on or past the date.
+       (if (and (< diff 0) todayp)
+           (save-excursion
+             (setq category (org-get-category))
+             (if (re-search-backward "\\(^\\|\r\\)\\*+[ \t]*" nil t)
+                 (progn
+                   (goto-char (match-end 0))
+                   (setq pos1 (match-end 1))
+                   (setq tags (org-get-tags-at))
+                   (setq head (buffer-substring-no-properties
+                               (point)
+                               (progn (skip-chars-forward "^\r\n") (point))))
+                   (if (string-match org-looking-at-done-regexp head)
+                       (setq txt nil)
+                     (setq txt (org-format-agenda-item
+                                (format "Sched.%2dx: " (- 1 diff)) head
+                                category tags))))
+               (setq txt org-agenda-no-heading-message))
+             (when txt
+               (org-add-props txt props
+                 'org-marker (org-agenda-new-marker pos)
+                 'org-hd-marker (org-agenda-new-marker pos1)
+                 'priority (+ (- 5 diff) (org-get-priority txt))
+                 'category category)
+               (push txt ee))))))
     ee))
 
 (defun org-agenda-get-blocks ()
   "Return the date-range information for agenda display."
   (let* ((props (list 'face nil
+                     'org-not-done-regexp org-not-done-regexp
                      'mouse-face 'highlight
                      'keymap org-agenda-keymap
                      'help-echo
@@ -5781,41 +7815,41 @@ the documentation of `org-diary'."
                              (abbreviate-file-name buffer-file-name))))
         (regexp org-tr-regexp)
         (d0 (calendar-absolute-from-gregorian date))
-        marker hdmarker ee txt d1 d2 s1 s2 timestr category tags)
+        marker hdmarker ee txt d1 d2 s1 s2 timestr category tags pos)
     (goto-char (point-min))
     (while (re-search-forward regexp nil t)
-      (setq timestr (match-string 0)
-           s1 (match-string 1)
-           s2 (match-string 2)
-           d1 (time-to-days (org-time-string-to-time s1))
-           d2 (time-to-days (org-time-string-to-time s2)))
-      (if (and (> (- d0 d1) -1) (> (- d2 d0) -1))
-         ;; Only allow days between the limits, because the normal
-         ;; date stamps will catch the limits.
-         (save-excursion
-           (setq marker (org-agenda-new-marker (point)))
-           (setq category (org-get-category))
-           (if (re-search-backward "\\(^\\|\r\\)\\*+" nil t)
-               (progn
-                 (setq hdmarker (org-agenda-new-marker (match-end 1)))
-                 (goto-char (match-end 1))
-                 (setq tags (org-get-tags-at))
-                 (looking-at "\\*+[ \t]*\\([^\r\n]+\\)")
-                 (setq txt (org-format-agenda-item
-                            (format (if (= d1 d2) "" "(%d/%d): ")
-                                    (1+ (- d0 d1)) (1+ (- d2 d1)))
-                            (match-string 1) category tags
-                            (if (= d0 d1) timestr))))
-             (setq txt org-agenda-no-heading-message))
-           (add-text-properties
-            0 (length txt) (append (list 'org-marker marker
-                                         'org-hd-marker hdmarker
-                                         'priority (org-get-priority txt)
-                                         'category category)
-                                   props)
-            txt)
-           (push txt ee)))
-      (outline-next-heading))
+      (catch :skip
+       (org-agenda-skip)
+       (setq pos (point))
+       (setq timestr (match-string 0)
+             s1 (match-string 1)
+             s2 (match-string 2)
+             d1 (time-to-days (org-time-string-to-time s1))
+             d2 (time-to-days (org-time-string-to-time s2)))
+       (if (and (> (- d0 d1) -1) (> (- d2 d0) -1))
+           ;; Only allow days between the limits, because the normal
+           ;; date stamps will catch the limits.
+           (save-excursion
+             (setq marker (org-agenda-new-marker (point)))
+             (setq category (org-get-category))
+             (if (re-search-backward "\\(^\\|\r\\)\\*+" nil t)
+                 (progn
+                   (setq hdmarker (org-agenda-new-marker (match-end 1)))
+                   (goto-char (match-end 1))
+                   (setq tags (org-get-tags-at))
+                   (looking-at "\\*+[ \t]*\\([^\r\n]+\\)")
+                   (setq txt (org-format-agenda-item
+                              (format (if (= d1 d2) "" "(%d/%d): ")
+                                      (1+ (- d0 d1)) (1+ (- d2 d1)))
+                              (match-string 1) category tags
+                              (if (= d0 d1) timestr))))
+               (setq txt org-agenda-no-heading-message))
+             (org-add-props txt props
+               'org-marker marker 'org-hd-marker hdmarker
+               'priority (org-get-priority txt) 'category category)
+             (push txt ee)))
+       (goto-char pos)))
+;      (outline-next-heading))) ;FIXME: correct to be removed??????
     ;; Sort the entries by expiration date.
     (nreverse ee)))
 
@@ -5836,7 +7870,7 @@ groups carry important information:
 
 (defconst org-stamp-time-of-day-regexp
   (concat
-   "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} +[a-zA-Z]+ +\\)"
+   "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} +\\sw+ +\\)"
    "\\([012][0-9]:[0-5][0-9]\\)>"
    "\\(--?"
    "<\\1\\([012][0-9]:[0-5][0-9]\\)>\\)?")
@@ -5875,7 +7909,7 @@ only the correctly processes TXT should be returned - this is used by
                             (file-name-sans-extension
                              (file-name-nondirectory buffer-file-name))
                           "")))
-          (tag (or (nth (1- (or (length tags) 0)) tags) ""))
+          (tag (if tags (nth (1- (length tags)) tags) ""))
           time              ;; needed for the eval of the prefix format
           (ts (if dotime (concat (if (stringp dotime) dotime "") txt)))
           (time-of-day (and dotime (org-get-time-of-day ts)))
@@ -5898,14 +7932,19 @@ only the correctly processes TXT should be returned - this is used by
                     t))
              (setq txt (replace-match "" nil nil txt))))
        ;; Normalize the time(s) to 24 hour
-       (if s1 (setq s1 (org-get-time-of-day s1 'string)))
-       (if s2 (setq s2 (org-get-time-of-day s2 'string))))
-
-      (when (and (or (eq org-agenda-remove-tags-when-in-prefix t)
-                    (and org-agenda-remove-tags-when-in-prefix
-                         org-prefix-has-tag))
-                (string-match ":[a-zA-Z_@0-9:]+:[ \t]*$" txt))
-       (setq txt (replace-match "" t t txt)))
+       (if s1 (setq s1 (org-get-time-of-day s1 'string t)))
+       (if s2 (setq s2 (org-get-time-of-day s2 'string t))))
+
+      (when (string-match "\\([ \t]+\\)\\(:[a-zA-Z_@0-9:]+:\\)[ \t]*$" txt)
+       ;; Tags are in the string
+       (if (or (eq org-agenda-remove-tags-when-in-prefix t)
+               (and org-agenda-remove-tags-when-in-prefix
+                    org-prefix-has-tag))
+           (setq txt (replace-match "" t t txt))
+         (setq txt (replace-match
+                    (concat (make-string (max (- 50 (length txt)) 1) ?\ )
+                            (match-string 2 txt))
+                    t t txt))))
 
       ;; Create the final string
       (if noprefix
@@ -5920,14 +7959,11 @@ only the correctly processes TXT should be returned - this is used by
        (setq rtn (concat (eval org-prefix-format-compiled) txt)))
 
       ;; And finally add the text properties
-      (add-text-properties
-       0 (length rtn) (list 'category (downcase category)
-                           'tags tags
-                           'prefix-length (- (length rtn) (length txt))
-                           'time-of-day time-of-day
-                           'dotime dotime)
-       rtn)
-      rtn)))
+      (org-add-props rtn nil
+       'category (downcase category) 'tags tags
+       'prefix-length (- (length rtn) (length txt))
+       'time-of-day time-of-day
+       'dotime dotime))))
 
 (defun org-agenda-add-time-grid-maybe (list ndays todayp)
   (catch 'exit
@@ -5951,7 +7987,7 @@ only the correctly processes TXT should be returned - this is used by
        (unless (and remove (member time have))
          (setq time (int-to-string time))
          (push (org-format-agenda-item
-                nil string "" nil ;; FIXME: put a category for the grid?
+                nil string "" nil
                 (concat (substring time 0 -2) ":" (substring time -2)))
                new)
          (put-text-property
@@ -5988,7 +8024,7 @@ The resulting form is returned and stored in the variable
     (setq vars (nreverse vars))
     (setq org-prefix-format-compiled `(format ,s ,@vars))))
 
-(defun org-get-time-of-day (s &optional string)
+(defun org-get-time-of-day (s &optional string mod24)
   "Check string S for a time of day.
 If found, return it as a military time number between 0 and 2400.
 If not found, return nil.
@@ -6001,23 +8037,44 @@ HH:MM."
        "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)\\([AaPp][Mm]\\)?\\> *" s)
       (string-match
        "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\([AaPp][Mm]\\)\\> *" s))
-     (let* ((t0 (+ (* 100
-                     (+ (string-to-number (match-string 1 s))
-                        (if (and (match-beginning 4)
-                                 (equal (downcase (match-string 4 s)) "pm"))
-                            12 0)))
-                  (if (match-beginning 3)
-                      (string-to-number (match-string 3 s))
-                    0)))
-           (t1 (concat " "
-                       (if (< t0 100) "0" "") (if (< t0 10)  "0" "")
+     (let* ((h (string-to-number (match-string 1 s)))
+           (m (if (match-end 3) (string-to-number (match-string 3 s)) 0))
+           (ampm (if (match-end 4) (downcase (match-string 4 s))))
+           (am-p (equal ampm "am"))
+           (h1   (cond ((not ampm) h)
+                       ((= h 12) (if am-p 0 12))
+                       (t (+ h (if am-p 0 12)))))
+           (h2 (if (and string mod24 (not (and (= m 0) (= h1 24))))
+                   (mod h1 24) h1))
+           (t0 (+ (* 100 h2) m))
+           (t1 (concat (if (>= h1 24) "+" " ")
+                       (if (< t0 100) "0" "")
+                       (if (< t0 10)  "0" "")
                        (int-to-string t0))))
        (if string (concat (substring t1 -4 -2) ":" (substring t1 -2)) t0)))))
 
 (defun org-finalize-agenda-entries (list)
   "Sort and concatenate the agenda items."
+  (setq list (mapcar 'org-agenda-highlight-todo list))
   (mapconcat 'identity (sort list 'org-entries-lessp) "\n"))
 
+(defun org-agenda-highlight-todo (x)
+  (let (re pl)
+    (if (eq x 'line)
+       (save-excursion
+         (beginning-of-line 1)
+         (setq re (get-text-property (point) 'org-not-done-regexp))
+         (goto-char (+ (point) (get-text-property (point) 'prefix-length)))
+         (and (looking-at (concat "[ \t]*" re))
+              (add-text-properties (match-beginning 0) (match-end 0)
+                                   '(face org-todo))))
+      (setq re (get-text-property 0 'org-not-done-regexp x)
+           pl (get-text-property 0 'prefix-length x))
+      (and re (equal (string-match re x pl) pl)
+          (add-text-properties (match-beginning 0) (match-end 0)
+                               '(face org-todo) x))
+      x)))
+
 (defsubst org-cmp-priority (a b)
   "Compare the priorities of string A and B."
   (let ((pa (or (get-text-property 1 'priority a) 0))
@@ -6036,7 +8093,7 @@ HH:MM."
 
 (defsubst org-cmp-time (a b)
   "Compare the time-of-day values of strings A and B."
-  (let* ((def (if org-sort-agenda-notime-is-late 2401 -1))
+  (let* ((def (if org-sort-agenda-notime-is-late 9901 -1))
         (ta (or (get-text-property 1 'time-of-day a) def))
         (tb (or (get-text-property 1 'time-of-day b) def)))
     (cond ((< ta tb) -1)
@@ -6052,7 +8109,7 @@ HH:MM."
         (priority-down (if priority-up (- priority-up) nil))
         (category-up (org-cmp-category a b))
         (category-down (if category-up (- category-up) nil))
-        (category-keep (if category-up +1 nil)))  ; FIXME +1 or -1?
+        (category-keep (if category-up +1 nil)))
     (cdr (assoc
          (eval (cons 'or org-agenda-sorting-strategy))
          '((-1 . t) (1 . nil) (nil . nil))))))
@@ -6070,7 +8127,8 @@ and by additional input from the age of a schedules or deadline entry."
   (interactive)
   (let* ((tags (get-text-property (point-at-bol) 'tags)))
     (if tags
-       (message "Tags are :%s:" (mapconcat 'identity tags ":"))
+       (message "Tags are :%s:"
+                (org-no-properties (mapconcat 'identity tags ":")))
       (message "No tags associated with this line"))))
 
 (defun org-agenda-goto (&optional highlight)
@@ -6083,7 +8141,7 @@ and by additional input from the age of a schedules or deadline entry."
     (switch-to-buffer-other-window buffer)
     (widen)
     (goto-char pos)
-    (when (eq major-mode 'org-mode)
+    (when (org-mode-p)
       (org-show-hidden-entry)
       (save-excursion
        (and (outline-next-heading)
@@ -6101,7 +8159,7 @@ and by additional input from the age of a schedules or deadline entry."
     (delete-other-windows)
     (widen)
     (goto-char pos)
-    (when (eq major-mode 'org-mode)
+    (when (org-mode-p)
       (org-show-hidden-entry)
       (save-excursion
        (and (outline-next-heading)
@@ -6168,7 +8226,7 @@ the same tree node, and the headline of the tree node in the Org-mode file."
        (and (outline-next-heading)
             (org-flag-heading nil)))   ; show the next heading
       (org-todo arg)
-      (forward-char 1)
+      (and (bolp) (forward-char 1))
       (setq newhead (org-get-heading))
       (save-excursion
        (org-back-to-heading)
@@ -6208,12 +8266,13 @@ the new TODO state."
                (replace-match new t t)
                (beginning-of-line 1)
                (add-text-properties (point-at-bol) (point-at-eol) props)
-               (if fixface
-                   (add-text-properties
-                    (point-at-bol) (point-at-eol)
-                    (list 'face
-                          (if org-last-todo-state-is-todo
-                              undone-face done-face))))
+               (when fixface
+                 (add-text-properties
+                  (point-at-bol) (point-at-eol)
+                  (list 'face
+                        (if org-last-todo-state-is-todo
+                            undone-face done-face)))
+                 (org-agenda-highlight-todo 'line))
                (beginning-of-line 1))
            (error "Line update did not work")))
        (beginning-of-line 0)))))
@@ -6255,7 +8314,7 @@ the same tree node, and the headline of the tree node in the Org-mode file."
     (beginning-of-line 1)))
 
 (defun org-get-tags-at (&optional pos)
-  "Get a list of all headline targs applicable at POS.
+  "Get a list of all headline tags applicable at POS.
 POS defaults to point.  If tags are inherited, the list contains
 the targets in the same sequence as the headlines appear, i.e.
 the tags of the current headline come last."
@@ -6268,7 +8327,9 @@ the tags of the current headline come last."
        (condition-case nil
            (while t
              (if (looking-at "[^\r\n]+?:\\([a-zA-Z_@0-9:]+\\):[ \t]*\\([\n\r]\\|\\'\\)")
-                 (setq tags (append (org-split-string (match-string 1) ":") tags)))
+                 (setq tags (append (org-split-string
+                                     (org-match-string-no-properties 1) ":")
+                                    tags)))
              (or org-use-tag-inheritance (error ""))
              (org-up-heading-all 1))
          (error nil))))
@@ -6340,16 +8401,61 @@ be used to request time specification in the time stamp."
       (org-time-stamp arg)
       (message "Time stamp changed to %s" org-last-changed-timestamp))))
 
+(defun org-agenda-schedule (arg)
+  "Schedule the item at point."
+  (interactive "P")
+  (org-agenda-check-type t 'agenda 'timeline 'todo 'tags)
+  (org-agenda-check-no-diary)
+  (let* ((marker (or (get-text-property (point) 'org-marker)
+                    (org-agenda-error)))
+        (buffer (marker-buffer marker))
+        (pos (marker-position marker))
+        (org-insert-labeled-timestamps-at-point nil)
+        ts)
+    (with-current-buffer buffer
+      (widen)
+      (goto-char pos)
+      (setq ts (org-schedule))
+      (message "Item scheduled for %s" ts))))
+
+(defun org-agenda-deadline (arg)
+  "Schedule the item at point."
+  (interactive "P")
+  (org-agenda-check-type t 'agenda 'timeline 'todo 'tags)
+  (org-agenda-check-no-diary)
+  (let* ((marker (or (get-text-property (point) 'org-marker)
+                    (org-agenda-error)))
+        (buffer (marker-buffer marker))
+        (pos (marker-position marker))
+        (org-insert-labeled-timestamps-at-point nil)
+        ts)
+    (with-current-buffer buffer
+      (widen)
+      (goto-char pos)
+      (setq ts (org-deadline))
+      (message "Deadline for this item set to %s" ts))))
+
 (defun org-get-heading ()
   "Return the heading of the current entry, without the stars."
   (save-excursion
     (and (memq (char-before) '(?\n ?\r)) (skip-chars-forward "^\n\r"))
-;;FIXME????????    (and (bolp) (end-of-line 1))
     (if (and (re-search-backward "[\r\n]\\*" nil t)
             (looking-at "[\r\n]\\*+[ \t]+\\([^\r\n]*\\)"))
        (match-string 1)
       "")))
 
+(defun org-agenda-clock-in (&optional arg)
+  "Start the clock on the currently selected item."
+  (interactive "P")
+  (org-agenda-check-no-diary)
+  (let* ((marker (or (get-text-property (point) 'org-marker)
+                    (org-agenda-error)))
+        (pos (marker-position marker)))
+    (with-current-buffer (marker-buffer marker)
+      (widen)
+      (goto-char pos)
+      (org-clock-in))))
+
 (defun org-agenda-diary-entry ()
   "Make a diary entry, like the `i' command from the calendar.
 All the standard commands work: block, weekly etc."
@@ -6445,6 +8551,7 @@ argument, latitude and longitude will be prompted for."
                  (error "Don't know which date to open in calendar")))
         (date (calendar-gregorian-from-absolute day))
         (calendar-move-hook nil)
+        (view-calendar-holidays-initially nil)
         (view-diary-entries-initially nil))
     (calendar)
     (calendar-goto-date date)))
@@ -6509,57 +8616,59 @@ are included in the output."
          lspos
         tags tags-list tags-alist (llast 0) rtn level category i txt
         todo marker)
-
     (save-excursion
       (goto-char (point-min))
-      (when (eq action 'sparse-tree) (hide-sublevels 1))
+      (when (eq action 'sparse-tree) (org-overview))
       (while (re-search-forward re nil t)
-       (setq todo (if (match-end 1) (match-string 2))
-             tags (if (match-end 4) (match-string 4)))
-       (goto-char (setq lspos (1+ (match-beginning 0))))
-       (setq level (funcall outline-level)
-             category (org-get-category))
-       (setq i llast llast level)
-       ;; remove tag lists from same and sublevels
-       (while (>= i level)
-         (when (setq entry (assoc i tags-alist))
-           (setq tags-alist (delete entry tags-alist)))
-         (setq i (1- i)))
-       ;; add the nex tags
-       (when tags
-         (setq tags (mapcar 'downcase (org-split-string tags ":"))
-               tags-alist
-               (cons (cons level tags) tags-alist)))
-       ;; compile tags for current headline
-       (setq tags-list
-             (if org-use-tag-inheritance
-                 (apply 'append (mapcar 'cdr tags-alist))
-               tags))
-       (when (and (or (not todo-only) todo)
-                  (eval matcher))
-         ;; list this headline
-         (if (eq action 'sparse-tree)
-             (progn
-               (org-show-hierarchy-above))
-           (setq txt (org-format-agenda-item
-                      ""
-                      (concat
-                       (if org-tags-match-list-sublevels
-                           (make-string (1- level) ?.) "")
-                       (org-get-heading))
-                      category tags-list))
-            (goto-char lspos)
-           (setq marker (org-agenda-new-marker))
-           (add-text-properties
-            0 (length txt)
-            (append (list 'org-marker marker 'org-hd-marker marker
-                          'category category)
-                    props)
-            txt)
-           (push txt rtn))
-         ;; if we are to skip sublevels, jump to end of subtree
-          (point)
-         (or org-tags-match-list-sublevels (org-end-of-subtree)))))
+       (catch :skip
+         (and (eq action 'agenda) (org-agenda-skip))
+         (setq todo (if (match-end 1) (match-string 2))
+               tags (if (match-end 4) (match-string 4)))
+         (goto-char (setq lspos (1+ (match-beginning 0))))
+         (setq level (funcall outline-level)
+               category (org-get-category))
+         (setq i llast llast level)
+         ;; remove tag lists from same and sublevels
+         (while (>= i level)
+           (when (setq entry (assoc i tags-alist))
+             (setq tags-alist (delete entry tags-alist)))
+           (setq i (1- i)))
+         ;; add the nex tags
+         (when tags
+           (setq tags (mapcar 'downcase (org-split-string tags ":"))
+                 tags-alist
+                 (cons (cons level tags) tags-alist)))
+         ;; compile tags for current headline
+         (setq tags-list
+               (if org-use-tag-inheritance
+                   (apply 'append (mapcar 'cdr tags-alist))
+                 tags))
+         (when (and (or (not todo-only) todo)
+                    (eval matcher)
+                    (or (not org-agenda-skip-archived-trees)
+                        (not (member org-archive-tag tags-list))))
+           ;; list this headline
+           (if (eq action 'sparse-tree)
+               (progn
+                 (org-show-hierarchy-above))
+             (setq txt (org-format-agenda-item
+                        ""
+                        (concat
+                         (if org-tags-match-list-sublevels
+                             (make-string (1- level) ?.) "")
+                         (org-get-heading))
+                        category tags-list))
+             (goto-char lspos)
+             (setq marker (org-agenda-new-marker))
+             (org-add-props txt props
+               'org-marker marker 'org-hd-marker marker 'category category)
+             (push txt rtn))
+           ;; if we are to skip sublevels, jump to end of subtree
+           (point)
+           (or org-tags-match-list-sublevels (org-end-of-subtree t))))))
+    (when (and (eq action 'sparse-tree)
+              (not org-sparse-tree-open-archived-trees))
+      (org-hide-archived-subtrees (point-min) (point-max)))
     (nreverse rtn)))
 
 (defun org-tags-sparse-tree (&optional arg match)
@@ -6624,12 +8733,13 @@ The prefix arg TODO-ONLY limits the search to TODO entries."
     (setq buffer-read-only nil)
     (erase-buffer)
     (org-agenda-mode) (setq buffer-read-only nil)
-    (set (make-local-variable 'org-agenda-type) 'tags)
-    (set (make-local-variable 'org-agenda-redo-command)
-        (list 'org-tags-view (list 'quote todo-only)
-              (list 'if 'current-prefix-arg nil match) t))
+    (org-set-local 'org-agenda-type 'tags)
+    (org-set-local 'org-agenda-redo-command
+                  (list 'org-tags-view (list 'quote todo-only)
+                        (list 'if 'current-prefix-arg nil match) t))
     (setq files (org-agenda-files)
          rtnall nil)
+    (org-prepare-agenda-buffers files)
     (while (setq file (pop files))
       (catch 'nextfile
        (org-check-agenda-file file)
@@ -6642,8 +8752,9 @@ The prefix arg TODO-ONLY limits the search to TODO entries."
                       (format "ORG-AGENDA-ERROR: No such org-file %s" file))
                  rtnall (append rtnall rtn))
          (with-current-buffer buffer
-           (unless (eq major-mode 'org-mode)
+           (unless (org-mode-p)
              (error "Agenda file %s is not in `org-mode'" file))
+           (setq org-category-table (org-get-category-table))
            (save-excursion
              (save-restriction
                (if org-respect-restriction
@@ -6657,13 +8768,13 @@ The prefix arg TODO-ONLY limits the search to TODO entries."
                (setq rtnall (append rtnall rtn))))))))
     (insert "Headlines with TAGS match: ")
     (add-text-properties (point-min) (1- (point))
-                        (list 'face 'org-link))
+                        (list 'face 'org-level-3))
     (setq pos (point))
     (insert match "\n")
     (add-text-properties pos (1- (point)) (list 'face 'org-warning))
     (setq pos (point))
     (insert "Press `C-u r' to search again with new search string\n")
-    (add-text-properties pos (1- (point)) (list 'face 'org-link))
+    (add-text-properties pos (1- (point)) (list 'face 'org-level-3))
     (when rtnall
       (insert (mapconcat 'identity rtnall "\n")))
     (goto-char (point-min))
@@ -6675,11 +8786,11 @@ The prefix arg TODO-ONLY limits the search to TODO entries."
 (defun org-set-tags (&optional arg just-align)
   "Set the tags for the current headline.
 With prefix ARG, realign all tags in headings in the current buffer."
-  (interactive)
-  (let* (;(inherit (org-get-inherited-tags))
-        (re (concat "^" outline-regexp))
+  (interactive "P")
+  (let* ((re (concat "^" outline-regexp))
         (col (current-column))
         (current (org-get-tags))
+        table current-tags inherited-tags ; computed below when needed
         tags hd empty invis)
     (if arg
        (save-excursion
@@ -6689,16 +8800,23 @@ With prefix ARG, realign all tags in headings in the current buffer."
          (message "All tags realigned to column %d" org-tags-column))
       (if just-align
          (setq tags current)
-       (setq org-last-tags-completion-table
-             (or (org-get-buffer-tags)
-                 org-last-tags-completion-table))
-       (setq tags
-             (let ((org-add-colon-after-tag-completion t))
-               (completing-read "Tags: " 'org-tags-completion-function
-                                nil nil current 'org-tags-history)))
+       (setq table (or org-tag-alist (org-get-buffer-tags))
+             org-last-tags-completion-table table
+             current-tags (org-split-string current ":")
+             inherited-tags (nreverse
+                             (nthcdr (length current-tags)
+                                     (nreverse (org-get-tags-at))))
+             tags
+             (if (or (eq t org-use-fast-tag-selection)
+                     (and org-use-fast-tag-selection
+                          (delq nil (mapcar 'cdr table))))
+                 (org-fast-tag-selection current-tags inherited-tags table)
+               (let ((org-add-colon-after-tag-completion t))
+                 (completing-read "Tags: " 'org-tags-completion-function
+                                  nil nil current 'org-tags-history))))
        (while (string-match "[-+&]+" tags)
          (setq tags (replace-match ":" t t tags))))
-      ;; FIXME: still optimize this byt not checking when JUST-ALIGN?
+      
       (unless (setq empty (string-match "\\`[\t ]*\\'" tags))
        (unless (string-match ":$" tags) (setq tags (concat tags ":")))
        (unless (string-match "^:" tags) (setq tags (concat ":" tags))))
@@ -6712,8 +8830,13 @@ With prefix ARG, realign all tags in headings in the current buffer."
        (setq hd (match-string 1))
        (delete-region (match-beginning 0) (match-end 0))
        (insert-before-markers (org-trim hd) (if empty "" " ")))
-      ;; FIXME:  What happens when adding a new tag???  Seems OK!!!
-      (unless (equal tags "")
+      (if (equal tags "")
+         (save-excursion
+           (beginning-of-line 1)
+           (skip-chars-forward "*")
+           (if (= (char-after) ?\ ) (forward-char 1))
+           (and (re-search-forward "[ \t]+$" (point-at-eol) t)
+                (replace-match "")))
        (move-to-column (max (current-column)
                             (if (> org-tags-column 0)
                                 org-tags-column
@@ -6725,7 +8848,8 @@ With prefix ARG, realign all tags in headings in the current buffer."
       (move-to-column col))))
 
 (defun org-tags-completion-function (string predicate &optional flag)
-  (let (s1 s2 rtn (ctable org-last-tags-completion-table))
+  (let (s1 s2 rtn (ctable org-last-tags-completion-table)
+          (confirm (lambda (x) (stringp (car x)))))
     (if (string-match "^\\(.*[-+:&|]\\)\\([^-+:&|]*\\)$" string)
         (setq s1 (match-string 1 string)
               s2 (match-string 2 string))
@@ -6733,7 +8857,7 @@ With prefix ARG, realign all tags in headings in the current buffer."
     (cond
      ((eq flag nil)
       ;; try completion
-      (setq rtn (try-completion s2 ctable))
+      (setq rtn (try-completion s2 ctable confirm))
       (if (stringp rtn)
          (concat s1 s2 (substring rtn (length s2))
                  (if (and org-add-colon-after-tag-completion
@@ -6742,13 +8866,133 @@ With prefix ARG, realign all tags in headings in the current buffer."
       )
      ((eq flag t)
       ;; all-completions
-      (all-completions s2 ctable)
+      (all-completions s2 ctable confirm)
       )
      ((eq flag 'lambda)
       ;; exact match?
       (assoc s2 ctable)))
     ))
 
+(defun org-fast-tag-insert (kwd tags face &optional end)
+  "Insert KDW, and the TAGS, the latter with face FACE.  Also inser END."
+  (insert (format "%-12s" (concat kwd ":"))
+         (org-add-props (mapconcat 'identity tags " ") nil 'face face)
+         (or end "")))
+
+(defun org-fast-tag-selection (current inherited table)
+  "Fast tag selection with single keys.
+CURRENT is the current list of tags in the headline, INHERITED is the
+list of inherited tags, and TABLE is an alist of tags and corresponding keys,
+possibly with grouping information.
+If the keys are nil, a-z are automatically assigned.
+Returns the new tags string, or nil to not change the current settings."
+  (let* ((maxlen (apply 'max (mapcar
+                             (lambda (x)
+                               (if (stringp (car x)) (string-width (car x)) 0))
+                             table)))
+        (fwidth (+ maxlen 3 1 3))
+        (ncol (/ (- (window-width) 4) fwidth))
+        (i-face 'org-done)
+        (c-face 'org-tag)
+        tg cnt e c char c1 c2 ntable tbl rtn
+        groups ingroup)
+    (save-window-excursion
+      (delete-other-windows)
+      (split-window-vertically)
+      (switch-to-buffer-other-window (get-buffer-create " *Org tags*"))
+      (erase-buffer)
+      (org-fast-tag-insert "Inherited" inherited i-face "\n")
+      (org-fast-tag-insert "Current" current c-face "\n\n")
+      (setq tbl table char ?a cnt 0)
+      (while (setq e (pop tbl))
+       (cond
+        ((equal e '(:startgroup))
+         (push '() groups) (setq ingroup t)
+         (when (not (= cnt 0))
+           (setq cnt 0)
+           (insert "\n"))
+         (insert "{ "))
+        ((equal e '(:endgroup))
+         (setq ingroup nil cnt 0)
+         (insert "}\n"))
+        (t
+         (setq tg (car e) c2 nil)
+         (if (cdr e)
+             (setq c (cdr e))
+           ;; automatically assign a character.
+           (setq c1 (string-to-char
+                     (downcase (substring
+                                tg (if (= (string-to-char tg) ?@) 1 0)))))
+           (if (or (rassoc c1 ntable) (rassoc c1 table))
+               (while (or (rassoc char ntable) (rassoc char table))
+                 (setq char (1+ char)))
+             (setq c2 c1))
+           (setq c (or c2 char)))
+         (if ingroup (push tg (car groups)))
+         (setq tg (org-add-props tg nil 'face
+                                 (cond
+                                  ((member tg current) c-face)
+                                  ((member tg inherited) i-face)
+                                  (t nil))))
+         (if (and (= cnt 0) (not ingroup)) (insert "  "))
+         (insert "[" c "] " tg (make-string
+                                (- fwidth 4 (length tg)) ?\ ))
+         (push (cons tg c) ntable)
+         (when (= (setq cnt (1+ cnt)) ncol)
+           (insert "\n")
+           (if ingroup (insert "  "))
+           (setq cnt 0)))))
+      (setq ntable (nreverse ntable))
+      (insert "\n")
+      (goto-char (point-min))
+      (if (fboundp 'fit-window-to-buffer) (fit-window-to-buffer))
+      (setq rtn
+           (catch 'exit
+             (while t
+               (message "[key]:Toggle  SPC: clear current  RET accept%s"
+                        (if groups "  [!] ignore goups" ""))
+               (setq c (read-char-exclusive))
+               (cond
+                ((= c ?\r) (throw 'exit t))
+                ((= c ?!)
+                 (setq groups nil)
+                 (goto-char (point-min))
+                 (while (re-search-forward "[{}]" nil t) (replace-match " ")))
+                ((or (= c ?\C-g)
+                     (and (= c ?q) (not (rassoc c ntable))))
+                 (setq quit-flag t))
+                ((= c ?\ ) (setq current nil))
+                ((setq e (rassoc c ntable) tg (car e))
+                 (if (member tg current)
+                     (setq current (delete tg current))
+                   (loop for g in groups do
+                         (if (member tg g)
+                             (mapcar (lambda (x)
+                                       (setq current (delete x current)))
+                                     g)))
+                   (setq current (cons tg current)))))
+               ;; Create a sorted list
+               (setq current
+                     (sort current
+                           (lambda (a b)
+                             (assoc b (cdr (memq (assoc a ntable) ntable))))))
+               (goto-char (point-min))
+               (beginning-of-line 2)
+               (delete-region (point) (point-at-eol))
+               (org-fast-tag-insert "Current" current c-face)
+               (while (re-search-forward "\\[.\\] \\([a-zA-Z0-9_@]+\\)" nil t)
+                 (setq tg (match-string 1))
+                 (add-text-properties (match-beginning 1) (match-end 1)
+                                      (list 'face
+                                            (cond
+                                             ((member tg current) c-face)
+                                             ((member tg inherited) i-face)
+                                             (t nil)))))
+               (goto-char (point-min)))))
+      (if rtn
+         (mapconcat 'identity current ":")
+       nil))))
+
 (defun org-get-tags ()
   "Get the TAGS string in the current headline."
   (unless (org-on-heading-p)
@@ -6756,7 +9000,7 @@ With prefix ARG, realign all tags in headings in the current buffer."
   (save-excursion
     (beginning-of-line 1)
     (if (looking-at ".*[ \t]\\(:[A-Za-z_@0-9:]+:\\)[ \t]*\\(\r\\|$\\)")
-       (match-string 1)
+       (org-match-string-no-properties 1)
       "")))
 
 (defun org-get-buffer-tags ()
@@ -6766,11 +9010,55 @@ With prefix ARG, realign all tags in headings in the current buffer."
       (goto-char (point-min))
       (while (re-search-forward "[ \t]:\\([A-Za-z_@0-9:]+\\):[ \t\r\n]" nil t)
        (mapc (lambda (x) (add-to-list 'tags x))
-             (org-split-string (match-string 1) ":"))))
+             (org-split-string (org-match-string-no-properties 1) ":"))))
     (mapcar 'list tags)))
 
 ;;; Link Stuff
 
+(defvar org-create-file-search-functions nil
+  "List of functions to construct the right search string for a file link.
+These functions are called in turn with point at the location to
+which the link should point.
+
+A function in the hook should first test if it would like to
+handle this file type, for example by checking the major-mode or
+the file extension.  If it decides not to handle this file, it
+should just return nil to give other functions a chance.  If it
+does handle the file, it must return the search string to be used
+when following the link.  The search string will be part of the
+file link, given after a double colon, and `org-open-at-point'
+will automatically search for it.  If special measures must be
+taken to make the search successful, another function should be
+added to the companion hook `org-execute-file-search-functions',
+which see.
+
+A function in this hook may also use `setq' to set the variable
+`description' to provide a suggestion for the descriptive text to
+be used for this link when it gets inserted into an Org-mode
+buffer with \\[org-insert-link].")
+
+(defvar org-execute-file-search-functions nil
+  "List of functions to execute a file search triggered by a link.
+
+Functions added to this hook must accept a single argument, the
+search string that was part of the file link, the part after the
+double colon.  The function must first check if it would like to
+handle this search, for example by checking the major-mode or the
+file extension.  If it decides not to handle this search, it
+should just return nil to give other functions a chance.  If it
+does handle the search, it must return a non-nil value to keep
+other functions from trying.
+
+Each function can access the current prefix argument through the
+variable `current-prefix-argument'.  Note that a single prefix is
+used to force opening a link in Emacs, so it may be good to only
+use a numeric or double prefix to guide the search function.
+
+In case this is needed, a function in this hook can also restore
+the window configuration before `org-open-at-point' was called using:
+
+    (set-window-configuration org-window-config-before-follow-link)")
+
 (defun org-find-file-at-mouse (ev)
   "Open file link or URL at mouse."
   (interactive "e")
@@ -6783,6 +9071,10 @@ With prefix ARG, realign all tags in headings in the current buffer."
   (mouse-set-point ev)
   (org-open-at-point))
 
+(defvar org-window-config-before-follow-link nil
+  "The window configuration before following a link.
+This is saved in case the need arises to restore it.")
+
 (defun org-open-at-point (&optional in-emacs)
   "Open link at or after point.
 If there is no link at point, this function will search forward up to
@@ -6790,6 +9082,7 @@ the end of the current subtree.
 Normally, files will be opened by an appropriate application.  If the
 optional argument IN-EMACS is non-nil, Emacs will visit the file."
   (interactive "P")
+  (setq org-window-config-before-follow-link (current-window-configuration))
   (org-remove-occur-highlights nil nil t)
   (if (org-at-timestamp-p)
       (org-agenda-list nil (time-to-days (org-time-string-to-time
@@ -6803,12 +9096,12 @@ optional argument IN-EMACS is non-nil, Emacs will visit the file."
                     (looking-at org-bracket-link-regexp)
                     (<= (match-beginning 0) pos)
                     (>= (match-end 0) pos))
-           (setq link (match-string 1))
+           (setq link (org-link-unescape (org-match-string-no-properties 1)))
            (while (string-match " *\n *" link)
              (setq link (replace-match " " t t link)))
-           (if (string-match org-link-regexp link)
-               (setq type (match-string 1)
-                     path (match-string 2))
+           (if (string-match org-link-re-with-space2 link)
+               (setq type (match-string 1 link)
+                     path (match-string 2 link))
              (setq type "thisfile"
                    path link))
            (throw 'match t)))
@@ -6823,11 +9116,12 @@ optional argument IN-EMACS is non-nil, Emacs will visit the file."
          (throw 'match t))
 
        (save-excursion
-         (skip-chars-backward
-          (concat (if org-allow-space-in-links "^" "^ ")
-                  org-non-link-chars))
-         (when (or (looking-at org-link-regexp)
-                   (and (re-search-forward org-link-regexp (point-at-eol) t)
+         (skip-chars-backward (concat "^[]" org-non-link-chars " "))
+         (if (equal (char-before) ?<) (backward-char 1))
+         (when (or (looking-at org-angle-link-re)
+                   (looking-at org-plain-link-re)
+                   (and (or (re-search-forward org-angle-link-re (point-at-eol) t)
+                            (re-search-forward org-plain-link-re (point-at-eol) t))
                         (<= (match-beginning 0) pos)
                         (>= (match-end 0) pos)))
            (setq type (match-string 1)
@@ -6843,22 +9137,12 @@ optional argument IN-EMACS is non-nil, Emacs will visit the file."
            (throw 'match t)))
        (save-excursion
          (skip-chars-backward "a-zA-Z_")
-         (when (and org-activate-camels
+         (when (and (memq 'camel org-activate-links)
                     (looking-at org-camel-regexp))
            (setq type "camel" path (match-string 0))
            (if (equal (char-before) ?*)
                (setq path (concat "*" path))))
-         (throw 'match t))
-       (save-excursion
-         (when (re-search-forward
-                org-link-regexp
-                (save-excursion
-                  (condition-case nil
-                      (progn (outline-end-of-subtree) (max pos (point)))
-                    (error (end-of-line 1) (point))))
-                t)
-             (setq type (match-string 1)
-                   path (match-string 2)))))
+         (throw 'match t)))
       (unless path
        (error "No link found"))
       ;; Remove any trailing spaces in path
@@ -6867,6 +9151,9 @@ optional argument IN-EMACS is non-nil, Emacs will visit the file."
 
       (cond
 
+       ((member type '("http" "https" "ftp" "mailto" "news"))
+       (browse-url (concat type ":" path)))
+
        ((string= type "tags")
        (org-tags-view in-emacs path))
        ((or (string= type "camel")
@@ -6879,7 +9166,7 @@ optional argument IN-EMACS is non-nil, Emacs will visit the file."
               (t nil))))
 
        ((string= type "file")
-       (if (string-match "::?\\([0-9]+\\)\\'" path) ;; second : optional
+       (if (string-match "::\\([0-9]+\\)\\'" path)
            (setq line (string-to-number (match-string 1 path))
                  path (substring path 0 (match-beginning 0)))
          (if (string-match "::\\(.+\\)\\'" path)
@@ -6893,6 +9180,9 @@ optional argument IN-EMACS is non-nil, Emacs will visit the file."
        ((string= type "bbdb")
        (org-follow-bbdb-link path))
 
+       ((string= type "info")
+       (org-follow-info-link path))
+
        ((string= type "gnus")
        (let (group article)
          (if (not (string-match "\\`\\([^#]+\\)\\(#\\(.*\\)\\)?" path))
@@ -6940,9 +9230,24 @@ optional argument IN-EMACS is non-nil, Emacs will visit the file."
            (setq cmd (replace-match "<" t t cmd)))
          (while (string-match "@}" cmd)
            (setq cmd (replace-match ">" t t cmd)))
-         (if (or (not org-confirm-shell-links)
-                 (yes-or-no-p (format "Execute \"%s\" in the shell? " cmd)))
-             (shell-command cmd)
+         (if (or (not org-confirm-shell-link-function)
+                 (funcall org-confirm-shell-link-function
+                          (format "Execute \"%s\" in shell? "
+                                  (org-add-props cmd nil
+                                    'face 'org-warning))))
+             (progn
+               (message "Executing %s" cmd)
+               (shell-command cmd))
+           (error "Abort"))))
+
+       ((string= type "elisp")
+       (let ((cmd path))
+         (if (or (not org-confirm-elisp-link-function)
+                 (funcall org-confirm-elisp-link-function
+                          (format "Execute \"%s\" as elisp? "
+                                  (org-add-props cmd nil
+                                                 'face 'org-warning))))
+              (message "%s => %s" cmd (eval (read cmd)))
            (error "Abort"))))
 
        (t
@@ -6960,71 +9265,94 @@ in all files."
        (s0 (mapconcat 'identity (org-split-string s "[ \t\r\n]+") " "))
        (pos (point))
        (pre "") (post "")
-       words re0 re1 re2 re3 re4 re5 reall camel)
-    (cond ((save-excursion
-            (goto-char (point-min))
-            (and
-             (re-search-forward
-              (concat "<<" (regexp-quote s0) ">>") nil t)
-             (setq pos (match-beginning 0))))
-          ;; There is an exact target for this
-          (goto-char pos))
-         ((string-match "^/\\(.*\\)/$" s)
-          ;; A regular expression
-          (cond
-           ((eq major-mode 'org-mode)
-            (org-occur (match-string 1 s)))
-           ;;((eq major-mode 'dired-mode)
-           ;; (grep (concat "grep -n -e '" (match-string 1 s) "' *")))
-           (t (org-do-occur (match-string 1 s)))))
-         ((or (setq camel (string-match (concat "^" org-camel-regexp "$") s))
-              t)
-          ;; A camel or a normal search string
-          (when (equal (string-to-char s) ?*)
-            ;; Anchor on headlines, post may include tags.
-            (setq pre "^\\*+[ \t]*\\(\\sw+\\)?[ \t]*"
-                  post "[ \t]*\\([ \t]+:[a-zA-Z_@0-9:+]:[ \t]*\\)?$"
-                  s (substring s 1)))
-          (remove-text-properties
-           0 (length s)
-           '(face nil mouse-face nil keymap nil fontified nil) s)
-          ;; Make a series of regular expressions to find a match
-          (setq words
-                (if camel
-                    (org-camel-to-words s)
-                  (org-split-string s "[ \n\r\t]+"))
-                re0 (concat "<<" (regexp-quote s0) ">>")
-                re2 (concat "\\<" (mapconcat 'downcase words "[ \t]+") "\\>")
-                re4 (concat "\\<" (mapconcat 'downcase words "[^a-zA-Z_\r\n]+") "\\>")
-                re1 (concat pre re2 post)
-                re3 (concat pre re4 post)
-                re5 (concat pre ".*" re4)
-                re2 (concat pre re2)
-                re4 (concat pre re4)
-                reall (concat "\\(" re0 "\\)\\|\\(" re1 "\\)\\|\\(" re2
-                              "\\)\\|\\(" re3 "\\)\\|\\(" re4 "\\)\\|\\("
-                              re5 "\\)"
-                              ))
-          (cond
-           ((eq type 'org-occur) (org-occur reall))
-           ((eq type 'occur) (org-do-occur (downcase reall) 'cleanup))
-           (t (goto-char (point-min))
-              (if (or (re-search-forward re0 nil t)
-                      (re-search-forward re1 nil t)
-                      (re-search-forward re2 nil t)
-                      (re-search-forward re3 nil t)
-                      (re-search-forward re4 nil t)
-                      (re-search-forward re5 nil t))
-                  (goto-char (match-beginning 0))
-                (goto-char pos)
-                (error "No match")))))
-         (t
-          ;; Normal string-search
-          (goto-char (point-min))
-          (if (search-forward s nil t)
-              (goto-char (match-beginning 0))
-            (error "No match"))))
-    (and (eq major-mode 'org-mode) (org-show-hierarchy-above))))
+       words re0 re1 re2 re3 re4 re5 re2a reall camel)
+    (cond
+     ;; First check if there are any special
+     ((run-hook-with-args-until-success 'org-execute-file-search-functions s))
+     ;; Now try the builtin stuff
+     ((save-excursion
+       (goto-char (point-min))
+       (and
+        (re-search-forward
+         (concat "<<" (regexp-quote s0) ">>") nil t)
+        (setq pos (match-beginning 0))))
+      ;; There is an exact target for this
+      (goto-char pos))
+     ((string-match "^/\\(.*\\)/$" s)
+      ;; A regular expression
+      (cond
+       ((org-mode-p)
+       (org-occur (match-string 1 s)))
+       ;;((eq major-mode 'dired-mode)
+       ;; (grep (concat "grep -n -e '" (match-string 1 s) "' *")))
+       (t (org-do-occur (match-string 1 s)))))
+     ((or (setq camel (string-match (concat "^" org-camel-regexp "$") s))
+         t)
+      ;; A camel or a normal search string
+      (when (equal (string-to-char s) ?*)
+       ;; Anchor on headlines, post may include tags.
+       (setq pre "^\\*+[ \t]*\\(?:\\sw+\\)?[ \t]*"
+             post "[ \t]*\\(?:[ \t]+:[a-zA-Z_@0-9:+]:[ \t]*\\)?$"
+             s (substring s 1)))
+      (remove-text-properties
+       0 (length s)
+       '(face nil mouse-face nil keymap nil fontified nil) s)
+      ;; Make a series of regular expressions to find a match
+      (setq words
+           (if camel
+               (org-camel-to-words s)
+             (org-split-string s "[ \n\r\t]+"))
+           re0 (concat "\\(<<" (regexp-quote s0) ">>\\)")
+           re2 (concat "[ \t\r\n]\\(" (mapconcat 'downcase words "[ \t]+") "\\)[ \t\r\n]")
+           re2a (concat "[ \t\r\n]\\(" (mapconcat 'downcase words "[ \t\r\n]+") "\\)[ \t\r\n]")
+           re4 (concat "[^a-zA-Z_]\\(" (mapconcat 'downcase words "[^a-zA-Z_\r\n]+") "\\)[^a-zA-Z_]")
+           re1 (concat pre re2 post)
+           re3 (concat pre re4 post)
+           re5 (concat pre ".*" re4)
+           re2 (concat pre re2)
+           re2a (concat pre re2a)
+           re4 (concat pre re4)
+           reall (concat "\\(" re0 "\\)\\|\\(" re1 "\\)\\|\\(" re2
+                         "\\)\\|\\(" re3 "\\)\\|\\(" re4 "\\)\\|\\("
+                         re5 "\\)"
+                         ))
+      (cond
+       ((eq type 'org-occur) (org-occur reall))
+       ((eq type 'occur) (org-do-occur (downcase reall) 'cleanup))
+       (t (goto-char (point-min))
+         (if (or (org-search-not-link re0 nil t)
+                 (org-search-not-link re1 nil t)
+                 (org-search-not-link re2 nil t)
+                 (org-search-not-link re2a nil t)
+                 (org-search-not-link re3 nil t)
+                 (org-search-not-link re4 nil t)
+                 (org-search-not-link re5 nil t)
+                 )
+             (goto-char (match-beginning 1))
+           (goto-char pos)
+           (error "No match")))))
+     (t
+      ;; Normal string-search
+      (goto-char (point-min))
+      (if (search-forward s nil t)
+         (goto-char (match-beginning 0))
+       (error "No match"))))
+    (and (org-mode-p) (org-show-hierarchy-above))))
+
+(defun org-search-not-link (&rest args)
+  "Execute `re-search-forward', but only accept matches that are not a link."
+  (catch 'exit
+    (let (p1)
+      (while (apply 're-search-forward args)
+       (setq p1 (point))
+       (if (not (save-match-data
+                  (and (re-search-backward "\\[\\[" nil t)
+                       (looking-at org-bracket-link-regexp)
+                       (<= (match-beginning 0) p1)
+                       (>= (match-end 0) p1))))
+           (progn (goto-char (match-end 0))
+                  (throw 'exit (point)))
+         (goto-char (match-end 0)))))))
 
 (defun org-do-occur (regexp &optional cleanup)
   "Call the Emacs command `occur'.
@@ -7128,10 +9456,23 @@ onto the ring."
        (delete-window (get-buffer-window "*BBDB*"))
        (error "No matching BBDB record")))))
 
+
+(defun org-follow-info-link (name)
+  "Follow an info file & node link  to NAME."
+  (if (or (string-match "\\(.*\\)::?\\(.*\\)" name)
+          (string-match "\\(.*\\)" name))
+      (progn
+       (require 'info)
+        (if (match-string 2 name) ; If there isn't a node, choose "Top"
+            (Info-find-node (match-string 1 name) (match-string 2 name))
+          (Info-find-node (match-string 1 name) "Top")))
+    (message (concat "Could not open: " name))))
+
 (defun org-follow-gnus-link (&optional group article)
   "Follow a Gnus link to GROUP and ARTICLE."
   (require 'gnus)
   (funcall (cdr (assq 'gnus org-link-frame-setup)))
+  (if gnus-other-frame-object (select-frame gnus-other-frame-object))
   (if group (gnus-fetch-group group))
   (if article
       (or (gnus-summary-goto-article article nil 'force)
@@ -7153,12 +9494,12 @@ onto the ring."
        (cond
         ((featurep 'tramp)
          ;; use tramp to access the file
-         (if org-xemacs-p
+         (if (featurep 'xemacs)
              (setq folder (format "[%s@%s]%s" user host file))
            (setq folder (format "/%s@%s:%s" user host file))))
         (t
          ;; use ange-ftp or efs
-         (require (if org-xemacs-p 'efs 'ange-ftp))
+         (require (if (featurep 'xemacs) 'efs 'ange-ftp))
          (setq folder (format "/%s@%s:%s" user host file))))))
   (when folder
     (funcall (cdr (assq 'vm org-link-frame-setup)) folder readonly)
@@ -7284,24 +9625,109 @@ idea..."
     header-field)))
 
 (defun org-follow-mhe-link (folder article)
-  "Follow an MHE link to FOLDER and ARTICLE."
-  (setq article (org-add-angle-brackets article))
+  "Follow an MHE link to FOLDER and ARTICLE.
+If ARTICLE is nil FOLDER is shown.  If the configuration variable
+`org-mhe-search-all-folders' is t and `mh-searcher' is pick,
+ARTICLE is searched in all folders.  Indexed searches (swish++,
+namazu, and others supported by MH-E) will always search in all
+folders."
   (require 'mh-e)
   (require 'mh-search)
+  (require 'mh-utils)
   (mh-find-path)
-  (mh-search-choose)
-  (if (equal mh-searcher 'pick)
-      (progn
-        (mh-search folder (list "--message-id" article))
-        (when (and org-mhe-search-all-folders
-                 (not (org-mhe-get-message-real-folder)))
-          (kill-this-buffer)
-          (mh-search "+" (list "--message-id" article))))
-    (mh-search "+" article))
-  (if (org-mhe-get-message-real-folder)
-      (mh-show-msg 1)
-    (kill-this-buffer)
-    (error "Message not found")))
+  (if (not article)
+      (mh-visit-folder (mh-normalize-folder-name folder))
+    (setq article (org-add-angle-brackets article))
+    (mh-search-choose)
+    (if (equal mh-searcher 'pick)
+        (progn
+          (mh-search folder (list "--message-id" article))
+          (when (and org-mhe-search-all-folders
+                     (not (org-mhe-get-message-real-folder)))
+            (kill-this-buffer)
+            (mh-search "+" (list "--message-id" article))))
+      (mh-search "+" article))
+    (if (org-mhe-get-message-real-folder)
+        (mh-show-msg 1)
+      (kill-this-buffer)
+      (error "Message not found"))))
+
+;; BibTeX links
+
+;; Use the custom search meachnism to construct and use search strings for
+;; file links to BibTeX database entries.
+
+(defun org-create-file-search-in-bibtex ()
+  "Create the search string and description for a BibTeX database entry."
+  (when (eq major-mode 'bibtex-mode)
+    ;; yes, we want to construct this search string.
+    ;; Make a good description for this entry, using names, year and the title
+    ;; Put it into the `description' variable which is dynamically scoped.
+    (let ((bibtex-autokey-names 1)
+         (bibtex-autokey-names-stretch 1)
+         (bibtex-autokey-name-case-convert-function 'identity)
+         (bibtex-autokey-name-separator " & ")
+         (bibtex-autokey-additional-names " et al.")
+         (bibtex-autokey-year-length 4)
+         (bibtex-autokey-name-year-separator " ")
+         (bibtex-autokey-titlewords 3)
+         (bibtex-autokey-titleword-separator " ")
+         (bibtex-autokey-titleword-case-convert-function 'identity)
+         (bibtex-autokey-titleword-length 'infty)
+         (bibtex-autokey-year-title-separator ": "))
+      (setq description (bibtex-generate-autokey)))
+    ;; Now parse the entry, get the key and return it.
+    (save-excursion
+      (bibtex-beginning-of-entry)
+      (cdr (assoc "=key=" (bibtex-parse-entry))))))
+
+(defun org-execute-file-search-in-bibtex (s)
+  "Find the link search string S as a key for a database entry."
+  (when (eq major-mode 'bibtex-mode)
+    ;; Yes, we want to do the search in this file.
+    ;; We construct a regexp that searches for "@entrytype{" followed by the key
+    (goto-char (point-min))
+    (and (re-search-forward (concat "@[a-zA-Z]+[ \t\n]*{[ \t\n]*"
+                                   (regexp-quote s) "[ \t\n]*,") nil t)
+        (goto-char (match-beginning 0)))
+    (if (and (match-beginning 0) (equal current-prefix-arg '(16)))
+       ;; Use double prefix to indicate that any web link should be browsed
+       (let ((b (current-buffer)) (p (point)))
+         ;; Restore the window configuration because we just use the web link
+         (set-window-configuration org-window-config-before-follow-link)
+         (save-excursion (set-buffer b) (goto-char p)
+           (bibtex-url)))
+      (recenter 0))  ; Move entry start to beginning of window
+  ;; return t to indicate that the search is done.
+    t))
+
+;; Finally add the functions to the right hooks.
+(add-hook 'org-create-file-search-functions 'org-create-file-search-in-bibtex)
+(add-hook 'org-execute-file-search-functions 'org-execute-file-search-in-bibtex)
+
+;; end of Bibtex link setup
+
+(defun org-upgrade-old-links (&optional query-description)
+  "Transfer old <...> style links to new [[...]] style links.
+With arg query-description, ask at each match for a description text to use
+for this link."
+  (interactive (list (y-or-n-p "Would you like to be queried for a description at each link?")))
+  (save-excursion
+    (goto-char (point-min))
+    (let ((re (concat "\\([^[]\\)<\\("
+                     "\\(" (mapconcat 'identity org-link-types "\\|")
+                     "\\):"
+                     "[^" org-non-link-chars "]+\\)>"))
+         l1 l2 (cnt 0))
+      (while (re-search-forward re nil t)
+       (setq cnt (1+ cnt)
+             l1 (org-match-string-no-properties 2)
+             l2 (save-match-data (org-link-escape l1)))
+       (when query-description (setq l1 (read-string "Desc: " l1)))
+       (if (equal l1 l2)
+           (replace-match (concat (match-string 1) "[[" l1 "]]") t t)
+         (replace-match (concat (match-string 1) "[[" l2 "][" l1 "]]") t t)))
+      (message "%d matches have beed treated" cnt))))
 
 (defun org-open-file (path &optional in-emacs line search)
   "Open the file at PATH.
@@ -7317,24 +9743,23 @@ If the file does not exist, an error is thrown."
   (setq in-emacs (or in-emacs line search))
   (let* ((file (if (equal path "")
                   buffer-file-name
-                (convert-standard-filename (org-expand-file-name path))))
-        (dirp (file-directory-p file))
+                path))
+        (apps (append org-file-apps (org-default-apps)))
+        (remp (and (assq 'remote apps) (org-file-remote-p file)))
+        (dirp (if remp nil (file-directory-p file)))
         (dfile (downcase file))
         (old-buffer (current-buffer))
         (old-pos (point))
         (old-mode major-mode)
-        ext cmd apps)
-    (if (and (not (file-exists-p file))
-            (not org-open-non-existing-files))
-       (error "No such file: %s" file))
+        ext cmd)
     (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\.gz\\)$" dfile)
        (setq ext (match-string 1 dfile))
       (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\)$" dfile)
          (setq ext (match-string 1 dfile))))
-    (setq apps (append org-file-apps (org-default-apps)))
     (if in-emacs
        (setq cmd 'emacs)
-      (setq cmd (or (and dirp (cdr (assoc 'directory apps)))
+      (setq cmd (or (and remp (cdr (assoc 'remote apps)))
+                   (and dirp (cdr (assoc 'directory apps)))
                    (cdr (assoc ext apps))
                    (cdr (assoc t apps)))))
     (when (eq cmd 'mailcap)
@@ -7345,21 +9770,29 @@ If the file does not exist, an error is thrown."
        (if (stringp command)
            (setq cmd command)
          (setq cmd 'emacs))))
+    (if (and (not (eq cmd 'emacs)) ; Emacs has not problems with non-ex files
+            (not (file-exists-p file))
+            (not org-open-non-existing-files))
+       (error "No such file: %s" file))
     (cond
      ((and (stringp cmd) (not (string-match "^\\s-*$" cmd)))
-      (setq cmd (format cmd (concat "\"" file "\"")))
+      ;; Normalize use of quote, this can vary.
+      (if (string-match "['\"]%s['\"]" cmd)
+         (setq cmd (replace-match "'%s'" t t cmd)))
+      (setq cmd (format cmd file))
       (save-window-excursion
        (shell-command (concat cmd " &"))))
      ((or (stringp cmd)
          (eq cmd 'emacs))
-      (unless (equal (file-truename file) (file-truename buffer-file-name))
-       (funcall (cdr (assq 'file org-link-frame-setup)) file))
+;      (unless (equal (file-truename file) (file-truename (or buffer-file-name "")))
+;      (funcall (cdr (assq 'file org-link-frame-setup)) file))
+      (funcall (cdr (assq 'file org-link-frame-setup)) file)
       (if line (goto-line line)
        (if search (org-link-search search))))
      ((consp cmd)
       (eval cmd))
      (t (funcall (cdr (assq 'file org-link-frame-setup)) file)))
-    (and (eq major-mode 'org-mode) (eq old-mode 'org-mode)
+    (and (org-mode-p) (eq old-mode 'org-mode)
         (or (not (equal old-buffer (current-buffer)))
             (not (equal old-pos (point))))
         (org-mark-ring-push old-pos old-buffer))))
@@ -7377,6 +9810,20 @@ If the file does not exist, an error is thrown."
   "Replace special path abbreviations and expand the file name."
   (expand-file-name path))
 
+(defun org-file-remote-p (file)
+  "Test whether FILE specifies a location on a remote system.
+Return non-nil if the location is indeed remote.
+
+For example, the filename \"/user@host:/foo\" specifies a location
+on the system \"/user@host:\"."
+  (cond ((fboundp 'file-remote-p)
+         (file-remote-p file))
+        ((fboundp 'tramp-handle-file-remote-p)
+         (tramp-handle-file-remote-p file))
+        ((and (boundp 'ange-ftp-name-format)
+              (string-match (car ange-ftp-name-format) file))
+         t)
+        (t nil)))
 
 (defvar org-insert-link-history nil
   "Minibuffer history for links inserted with `org-insert-link'.")
@@ -7393,7 +9840,7 @@ For some link types, a prefix arg is interpreted:
 For links to usenet articles, arg negates `org-usenet-links-prefer-google'.
 For file links, arg negates `org-context-in-file-links'."
   (interactive "P")
-  (let (link cpltxt txt (pos (point)))
+  (let (link cpltxt desc description search txt (pos (point)))
     (cond
 
      ((eq major-mode 'bbdb-mode)
@@ -7403,6 +9850,13 @@ For file links, arg negates `org-context-in-file-links'."
                        (bbdb-record-company (bbdb-current-record))))
            link (org-make-link cpltxt)))
 
+     ((eq major-mode 'Info-mode)
+      (setq link (org-make-link "info:"
+                               (file-name-nondirectory Info-current-file)
+                               ":" Info-current-node))
+      (setq cpltxt (concat (file-name-nondirectory Info-current-file)
+                          ":" Info-current-node)))
+
      ((eq major-mode 'calendar-mode)
       (let ((cd (calendar-cursor-to-date)))
        (setq link
@@ -7429,9 +9883,7 @@ For file links, arg negates `org-context-in-file-links'."
                           folder)
             (setq folder (replace-match "" t t folder)))
         (setq cpltxt (concat author " on: " subject))
-        (setq link (concat cpltxt "\n  "
-                           (org-make-link
-                            "vm:" folder "#" message-id))))))
+        (setq link (org-make-link "vm:" folder "#" message-id)))))
 
      ((eq major-mode 'wl-summary-mode)
       (let* ((msgnum (wl-summary-message-number))
@@ -7439,14 +9891,12 @@ For file links, arg negates `org-context-in-file-links'."
                                             msgnum 'message-id))
             (wl-message-entity (elmo-msgdb-overview-get-entity
                                 msgnum (wl-summary-buffer-msgdb)))
-            (author (wl-summary-line-from)) ; FIXME: how to get author name?
-            (subject "???"))   ; FIXME: How to get subject of email?
+            (author (wl-summary-line-from)) ; FIXME: correct?
+            (subject "???"))   ; FIXME:
        (setq message-id (org-remove-angle-brackets message-id))
        (setq cpltxt (concat author  " on: " subject))
-       (setq link (concat cpltxt "\n  "
-                          (org-make-link
-                           "wl:" wl-summary-buffer-folder-name
-                          "#" message-id)))))
+       (setq link (org-make-link "wl:" wl-summary-buffer-folder-name
+                                 "#" message-id))))
 
      ((or (equal major-mode 'mh-folder-mode)
          (equal major-mode 'mh-show-mode))
@@ -7454,11 +9904,9 @@ For file links, arg negates `org-context-in-file-links'."
            (to-header (org-mhe-get-header "To:"))
            (subject (org-mhe-get-header "Subject:")))
        (setq cpltxt (concat from-header " on: " subject))
-       (setq link (concat cpltxt "\n  "
-                          (org-make-link
-                           "mhe:" (org-mhe-get-message-real-folder) "#"
-                           (org-remove-angle-brackets
-                            (org-mhe-get-header "Message-Id:")))))))
+       (setq link (org-make-link "mhe:" (org-mhe-get-message-real-folder) "#"
+                                 (org-remove-angle-brackets
+                                  (org-mhe-get-header "Message-Id:"))))))
 
      ((eq major-mode 'rmail-mode)
       (save-excursion
@@ -7470,9 +9918,7 @@ For file links, arg negates `org-context-in-file-links'."
                (subject (mail-fetch-field "subject")))
            (setq message-id (org-remove-angle-brackets message-id))
            (setq cpltxt (concat author  " on: " subject))
-           (setq link (concat cpltxt "\n  "
-                              (org-make-link
-                               "rmail:" folder "#" message-id)))))))
+           (setq link (org-make-link "rmail:" folder "#" message-id))))))
 
      ((eq major-mode 'gnus-group-mode)
       (let ((group (cond ((fboundp 'gnus-group-group-name) ; depending on Gnus
@@ -7504,19 +9950,28 @@ For file links, arg negates `org-context-in-file-links'."
                   cpltxt "\n  "
                   (format "http://groups.google.com/groups?as_umsgid=%s"
                           (org-fixup-message-id-for-http message-id))))
-         (setq link (concat cpltxt "\n"
-                            (org-make-link
-                             "gnus:" group
-                             "#" (number-to-string article)))))))
+         (setq link (org-make-link "gnus:" group
+                                   "#" (number-to-string article))))))
 
      ((eq major-mode 'w3-mode)
       (setq cpltxt (url-view-url t)
            link (org-make-link cpltxt)))
      ((eq major-mode 'w3m-mode)
-      (setq cpltxt w3m-current-url
-           link (org-make-link cpltxt)))
+      (setq cpltxt (or w3m-current-title w3m-current-url)
+           link (org-make-link w3m-current-url)))
+
+     ((setq search (run-hook-with-args-until-success
+                   'org-create-file-search-functions))
+      (setq link (concat "file:" (abbreviate-file-name buffer-file-name)
+                        "::" search))
+      (setq cpltxt (or description link)))
+
+     ((eq major-mode 'image-mode)
+      (setq cpltxt (concat "file:"
+                          (abbreviate-file-name buffer-file-name))
+           link (org-make-link cpltxt)))      
 
-     ((eq major-mode 'org-mode)
+     ((org-mode-p)
       ;; Just link to current headline
       (setq cpltxt (concat "file:"
                           (abbreviate-file-name buffer-file-name)))
@@ -7535,11 +9990,13 @@ For file links, arg negates `org-context-in-file-links'."
                     ((org-region-active-p)
                      (buffer-substring (region-beginning) (region-end)))
                     (t (buffer-substring (point-at-bol) (point-at-eol)))))
-         (setq cpltxt
-               (concat cpltxt "::"
-                       (if org-file-link-context-use-camel-case
-                           (org-make-org-heading-camel txt)
-                         (org-make-org-heading-search-string txt))))))
+         (when (or (null txt) (string-match "\\S-" txt))
+           (setq cpltxt
+                 (concat cpltxt "::"
+                         (if org-file-link-context-use-camel-case
+                             (org-make-org-heading-camel txt)
+                           (org-make-org-heading-search-string txt)))
+                 desc "NONE"))))
       (if (string-match "::\\'" cpltxt)
          (setq cpltxt (substring cpltxt 0 -2)))
       (setq link (org-make-link cpltxt)))
@@ -7553,11 +10010,14 @@ For file links, arg negates `org-context-in-file-links'."
        (setq txt (if (org-region-active-p)
                      (buffer-substring (region-beginning) (region-end))
                    (buffer-substring (point-at-bol) (point-at-eol))))
-       (setq cpltxt
-             (concat cpltxt "::"
-                     (if org-file-link-context-use-camel-case
-                         (org-make-org-heading-camel txt)
-                       (org-make-org-heading-search-string txt)))))
+       ;; Only use search option if there is some text.
+       (when (string-match "\\S-" txt)
+         (setq cpltxt
+               (concat cpltxt "::"
+                       (if org-file-link-context-use-camel-case
+                           (org-make-org-heading-camel txt)
+                         (org-make-org-heading-search-string txt)))
+               desc "NONE")))
       (setq link (org-make-link cpltxt)))
 
      ((interactive-p)
@@ -7565,12 +10025,17 @@ For file links, arg negates `org-context-in-file-links'."
 
      (t (setq link nil)))
 
+    (if (consp link) (setq cpltxt (car link) link (cdr link)))
+    (setq link (or link cpltxt)
+         desc (or desc cpltxt))
+    (if (equal desc "NONE") (setq desc nil))
+
     (if (and (interactive-p) link)
        (progn
          (setq org-stored-links
-               (cons (cons (or cpltxt link) link) org-stored-links))
+               (cons (list cpltxt link desc) org-stored-links))
          (message "Stored: %s" (or cpltxt link)))
-      link)))
+      (org-make-link-string link desc))))
 
 (defun org-make-org-heading-search-string (&optional string heading)
   "Make search string for STRING or current headline."
@@ -7618,11 +10083,52 @@ For file links, arg negates `org-context-in-file-links'."
   "Concatenate STRINGS, format resulting string with `org-link-format'."
   (format org-link-format (apply 'concat strings)))
 
-(defun org-make-link2 (link &optional description)
-  "Make a link with brackets."
-  (concat "[[" link "]"
-         (if description (concat "[" description "]") "")
-         "]"))
+(defun org-make-link-string (link &optional description)
+  "Make a link with brackets, consisting of LINK and DESCRIPTION."
+  (if (eq org-link-style 'plain)
+      (if (equal description link)
+         link
+       (concat description "\n" link))
+    (when (stringp description)
+      ;; Remove brackets from the description, they are fatal.
+      (while (string-match "\\[\\|\\]" description)
+       (setq description (replace-match "" t t description))))
+    (when (equal (org-link-escape link) description)
+      ;; No description needed, it is identical
+      (setq description nil))
+    (when (and (not description)
+              (not (equal link (org-link-escape link))))
+      (setq description link))
+    (concat "[[" (org-link-escape link) "]"
+           (if description (concat "[" description "]") "")
+           "]")))
+
+(defconst org-link-escape-chars '(("[" . "%5B") ("]" . "%5D") (" " . "%20"))
+  "Association list of escapes for some characters problematic in links.")
+
+(defun org-link-escape (text)
+  "Escape charaters in TEXT that are problematic for links."
+  (when text
+    (let ((re (mapconcat (lambda (x) (regexp-quote (car x)))
+                        org-link-escape-chars "\\|")))
+      (while (string-match re text)
+       (setq text
+             (replace-match
+              (cdr (assoc (match-string 0 text) org-link-escape-chars))
+              t t text)))
+      text)))
+
+(defun org-link-unescape (text)
+  "Reverse the action of `org-link-escape'."
+  (when text
+    (let ((re (mapconcat (lambda (x) (regexp-quote (cdr x)))
+                        org-link-escape-chars "\\|")))
+      (while (string-match re text)
+       (setq text
+             (replace-match
+              (car (rassoc (match-string 0 text) org-link-escape-chars))
+              t t text)))
+      text)))
 
 (defun org-xor (a b)
   "Exclusive or."
@@ -7671,6 +10177,12 @@ press RET at the prompt), the link defaults to the most recently
 stored link.  As SPC triggers completion in the minibuffer, you need to
 use M-SPC or C-q SPC to force the insertion of a space character.
 
+You will also be prompted for a description, and if one is given, it will
+be displayed in the buffer instead of the link.
+
+If there is already a link at point, this command will allow you to edit link
+and description parts.
+
 With a \\[universal-argument] prefix, prompts for a file to link to.  The file name can be
 selected using completion.  The path to the file will be relative to
 the current directory if the file is in the current directory or a
@@ -7678,70 +10190,108 @@ subdirectory.  Otherwise, the link will be the absolute path as
 completed in the minibuffer (i.e. normally ~/path/to/file).
 
 With two \\[universal-argument] prefixes, enforce an absolute path even if the file
-is in the current directory or below."
+is in the current directory or below.
+With three \\[universal-argument] prefixes, negate the meaning of
+`org-keep-stored-link-after-insertion'."
   (interactive "P")
-  (let ((link (if complete-file
-                 (read-file-name "File: ")
-               (completing-read
-                "Link: " org-stored-links nil nil nil
-                org-insert-link-history
-                (or (car (car org-stored-links))))))
-       linktxt matched)
-    (if (or (not link) (equal link ""))
-      (error "No links available"))
-    (if complete-file
-       (let ((pwd (file-name-as-directory (expand-file-name "."))))
-         (cond
-          ((equal complete-file '(16))
-           (insert
-            (org-make-link
-             "file:" (abbreviate-file-name (expand-file-name link)))))
-          ((string-match (concat "^" (regexp-quote pwd) "\\(.+\\)")
-                         (expand-file-name link))
-           (insert
-            (org-make-link
-             "file:" (match-string 1 (expand-file-name link)))))
-          (t (insert (org-make-link "file:" link)))))
-      (setq linktxt (cdr (assoc link org-stored-links)))
-      (if (not org-keep-stored-link-after-insertion)
+  (let (link desc entry remove file (pos (point)))
+    (cond
+     ((save-excursion
+       (skip-chars-forward "^]\n\r")
+       (and (re-search-backward "\\[\\[" nil t)
+            (looking-at org-bracket-link-regexp)
+            (<= (match-beginning 0) pos)
+            (>= (match-end 0) pos)))
+      ;; We do have a link at point, and we are going to edit it.
+      (setq remove (list (match-beginning 0) (match-end 0)))
+      (setq desc (if (match-end 3) (org-match-string-no-properties 3)))
+      (setq link (read-string "Link: "
+                             (org-link-unescape
+                              (org-match-string-no-properties 1)))))
+     ((equal complete-file '(4))
+      ;; Completing read for file names.
+      (setq file (read-file-name "File: "))
+      (let ((pwd (file-name-as-directory (expand-file-name ".")))
+           (pwd1 (file-name-as-directory (abbreviate-file-name
+                                          (expand-file-name ".")))))
+       (cond
+        ((equal complete-file '(16))
+         (setq link (org-make-link
+                     "file:"
+                     (abbreviate-file-name (expand-file-name file)))))
+        ((string-match (concat "^" (regexp-quote pwd1) "\\(.+\\)") file)
+         (setq link  (org-make-link "file:" (match-string 1 file))))
+        ((string-match (concat "^" (regexp-quote pwd) "\\(.+\\)")
+                       (expand-file-name file))
+         (setq link  (org-make-link
+                      "file:" (match-string 1 (expand-file-name file)))))
+        (t (setq link (org-make-link "file:" file))))))
+     (t
+      ;; Read link, with completion for stored links.
+      (setq link (org-completing-read
+                 "Link: " org-stored-links nil nil nil
+                 org-insert-link-history
+                 (or (car (car org-stored-links)))))
+      (setq entry (assoc link org-stored-links))
+      (if (funcall (if (equal complete-file '(64)) 'not 'identity)
+                  (not org-keep-stored-link-after-insertion))
          (setq org-stored-links (delq (assoc link org-stored-links)
                                       org-stored-links)))
-      (if (not linktxt) (setq link (org-make-link link)))
-      (setq link (or linktxt link))
-      (when (string-match "<\\<file:\\(.+?\\)::\\([^>]+\\)>" link)
-       (let* ((path (match-string 1 link))
-              (case-fold-search nil)
-              (search (match-string 2 link)))
-         (when (save-match-data
-                 (equal (file-truename buffer-file-name)
-                        (file-truename path)))
-           ;; We are linking to this same file
-           (if (and org-file-link-context-use-camel-case
-                    (save-match-data
-                      (string-match (concat "^" org-camel-regexp "$") search)))
-               (setq link (replace-match search t t link)
-                     matched t)
-             (setq link (replace-match (concat "[[" search "]]")
-                                       t t link)
-                   matched t)))))
-      (let ((lines (org-split-string link "\n")))
-       (insert (car lines))
-       (setq matched (or matched (string-match org-link-regexp (car lines))))
-       (setq lines (cdr lines))
-       (while lines
-         (insert "\n")
-         (if (save-excursion
-               (beginning-of-line 0)
-               (looking-at "[ \t]+\\S-"))
-             (indent-relative))
-         (setq matched (or matched
-                           (string-match org-link-regexp (car lines))))
-         (insert (car lines))
-         (setq lines (cdr lines))))
-      (unless matched
-       (error "Add link type: http(s),ftp,mailto,file,news,bbdb,vm,wl,rmail,gnus, or shell")))))
+      (setq link (if entry (nth 1 entry) link)
+           desc (or desc (nth 2 entry)))))
+
+    (if (string-match org-plain-link-re link)
+       ;; URL-like link, normalize the use of angular brackets.
+       (setq link (org-make-link (org-remove-angle-brackets link))))
+
+    ;; Check if we are linking to the current file with a search option
+    ;; If yes, simplify the link by using only the search option.
+    (when (string-match "\\<file:\\(.+?\\)::\\([^>]+\\)" link)
+      (let* ((path (match-string 1 link))
+            (case-fold-search nil)
+            (search (match-string 2 link)))
+       (save-match-data
+         (if (equal (file-truename buffer-file-name) (file-truename path))
+             ;; We are linking to this same file, with a search option
+             (setq link search)))))
+
+    ;; Check if we can/should use a relative path.  If yes, simplify the link
+    (when (string-match "\\<file:\\(.*\\)" link)
+      (let* ((path (match-string 1 link))
+            (case-fold-search nil))
+       (cond
+        ((eq org-link-file-path-type 'absolute)
+         (setq path (abbreviate-file-name (expand-file-name path))))
+        ((eq org-link-file-path-type 'noabbrev)
+         (setq path (expand-file-name path)))
+        ((eq org-link-file-path-type 'relative)
+         (setq path (file-relative-name path)))
+        (t
+         (save-match-data
+           (if (string-match (concat "^" (regexp-quote
+                                          (file-name-as-directory
+                                           (expand-file-name "."))))
+                             (expand-file-name path))
+               ;; We are linking a file with relative path name.
+               (setq path (substring (expand-file-name path)
+                                     (match-end 0)))))))
+       (setq link (concat "file:" path))))
+
+    (setq desc (read-string "Description: " desc))
+    (unless (string-match "\\S-" desc) (setq desc nil))
+    (if remove (apply 'delete-region remove))
+    (insert (org-make-link-string link desc))))
+
+(defun org-completing-read (&rest args)
+  (let ((minibuffer-local-completion-map
+        (copy-keymap minibuffer-local-completion-map)))
+    (define-key minibuffer-local-completion-map " " 'self-insert-command)
+    (apply 'completing-read args)))
 
 ;;; Hooks for remember.el
+
+(defvar org-finish-function nil)
+
 ;;;###autoload
 (defun org-remember-annotation ()
   "Return a link to the current location as an annotation for remember.el.
@@ -7757,6 +10307,55 @@ RET at beg-of-buf -> Append to file as level 2 headline
 RET on headline   -> Store as sublevel entry to current headline
 <left>/<right>    -> before/after current headline, same headings level")
 
+;;;###autoload
+(defun org-remember-apply-template ()
+  "Initialize *remember* buffer with template, invoke `org-mode'.
+This function should be placed into `remember-mode-hook' and in fact requires
+to be run from that hook to fucntion properly."
+  (if org-remember-templates
+
+      (let* ((entry (if (= (length org-remember-templates) 1)
+                       (cdar org-remember-templates)
+                     (message "Select template: %s"
+                              (mapconcat
+                               (lambda (x) (char-to-string (car x)))
+                               org-remember-templates " "))
+                     (cdr (assoc (read-char-exclusive) org-remember-templates))))
+            (tpl (car entry))
+            (file (if (consp (cdr entry)) (nth 1 entry)))
+            (v-t (format-time-string (car org-time-stamp-formats) (org-current-time)))
+            (v-T (format-time-string (cdr org-time-stamp-formats) (org-current-time)))
+            (v-u (concat "[" (substring v-t 1 -1) "]"))
+            (v-U (concat "[" (substring v-T 1 -1) "]"))
+            (v-a annotation)   ; defined in `remember-mode'
+            (v-i initial)      ; defined in `remember-mode'
+            (v-n user-full-name)
+            )
+       (unless tpl (setq tpl "")       (message "No template") (ding))
+       (insert tpl) (goto-char (point-min))
+       (while (re-search-forward "%\\([tTuTai]\\)" nil t)
+         (when (and initial (equal (match-string 0) "%i"))
+           (save-match-data
+             (let* ((lead (buffer-substring
+                           (point-at-bol) (match-beginning 0))))
+               (setq v-i (mapconcat 'identity
+                                    (org-split-string initial "\n")
+                                    (concat "\n" lead))))))
+         (replace-match
+          (or (eval (intern (concat "v-" (match-string 1)))) "")
+          t t))
+       (let ((org-startup-folded nil)
+             (org-startup-with-deadline-check nil))
+         (org-mode))
+       (if (and file (string-match "\\S-" file) (not (file-directory-p file)))
+           (org-set-local 'org-default-notes-file file))
+       (goto-char (point-min))
+       (if (re-search-forward "%\\?" nil t) (replace-match "")))
+    (let ((org-startup-folded nil)
+         (org-startup-with-deadline-check nil))
+      (org-mode)))
+  (org-set-local 'org-finish-function 'remember-buffer))
+
 ;;;###autoload
 (defun org-remember-handler ()
   "Store stuff from remember.el into an org file.
@@ -7798,22 +10397,25 @@ See also the variable `org-reverse-note-order'."
           (visiting (find-buffer-visiting file))
           (org-startup-with-deadline-check nil)
           (org-startup-folded nil)
+          (org-startup-align-all-tables nil)
           spos level indent reversed)
       ;; Modify text so that it becomes a nice subtree which can be inserted
       ;; into an org tree.
       (let* ((lines (split-string txt "\n"))
-            (first (car lines))
-            (lines (cdr lines)))
+            first)
+       ;; remove empty lines at the beginning
+       (while (and lines (string-match "^[ \t]*\n" (car lines)))
+         (setq lines (cdr lines)))
+       (setq first (car lines) lines (cdr lines))
        (if (string-match "^\\*+" first)
            ;; Is already a headline
-           (setq indent (make-string (- (match-end 0) (match-beginning 0)
-                                        -1) ?\ ))
+           (setq indent nil)
          ;; We need to add a headline:  Use time and first buffer line
          (setq lines (cons first lines)
                first (concat "* " (current-time-string)
                              " (" (remember-buffer-desc) ")")
                indent "  "))
-       (if org-adapt-indentation
+       (if (and org-adapt-indentation indent)
            (setq lines (mapcar (lambda (x) (concat indent x)) lines)))
        (setq txt (concat first "\n"
                          (mapconcat 'identity lines "\n"))))
@@ -7821,6 +10423,9 @@ See also the variable `org-reverse-note-order'."
       (if (not visiting)
          (find-file-noselect file))
       (with-current-buffer (get-file-buffer file)
+       (save-excursion (and (goto-char (point-min))
+                            (not (re-search-forward "^\\* " nil t))
+                            (insert "\n* Notes\n")))
        (setq reversed (org-notes-order-reversed-p))
        (save-excursion
          (save-restriction
@@ -7838,7 +10443,7 @@ See also the variable `org-reverse-note-order'."
                     (widen)
                     (goto-char (if reversed (point-min) (point-max)))
                     (if (not (bolp)) (newline))
-                    (org-paste-subtree (or current-prefix-arg 2) txt)))
+                    (org-paste-subtree 2 txt)))
                  ((and (org-on-heading-p nil) (not current-prefix-arg))
                   ;; Put it below this entry, at the beg/end of the subtree
                   (org-back-to-heading)
@@ -7930,6 +10535,15 @@ and table.el tables."
        (org-table-convert)))
    (t (call-interactively 'table-insert))))
 
+(defun org-table-create-or-convert-from-region (arg)
+  "Convert region to table, or create an empty table.
+If there is an active region, convert it to a table.  If there is no such
+region, create an empty table."
+  (interactive "P")
+  (if (org-region-active-p)
+      (org-table-convert-region (region-beginning) (region-end) arg)
+    (org-table-create arg)))
+
 (defun org-table-create (&optional size)
   "Query for a size and insert a table skeleton.
 SIZE is a string Columns x Rows like for example \"3x2\"."
@@ -7962,12 +10576,13 @@ SIZE is a string Columns x Rows like for example \"3x2\"."
          (goto-char pos)))
     (org-table-align)))
 
-(defun org-table-convert-region (beg0 end0 nspace)
+(defun org-table-convert-region (beg0 end0 &optional nspace)
   "Convert region to a table.
 The region goes from BEG0 to END0, but these borders will be moved
 slightly, to make sure a beginning of line in the first line is included.
 When NSPACE is non-nil, it indicates the minimum number of spaces that
 separate columns (default: just one space)."
+  (interactive "rP")
   (let* ((beg (min beg0 end0))
         (end (max beg0 end0))
         (tabsep t)
@@ -8053,17 +10668,17 @@ Used to check if cursor still is in that table, to minimize realignment.")
 (defvar org-table-last-alignment nil
   "List of flags for flushright alignment, from the last re-alignment.
 This is being used to correctly align a single field after TAB or RET.")
-;; FIXME:  The following is currently not used.
 (defvar org-table-last-column-widths nil
   "List of max width of fields in each column.
 This is being used to correctly align a single field after TAB or RET.")
 
 (defvar org-last-recalc-line nil)
+(defconst org-narrow-column-arrow "=>"
+  "Used as display property in narrowed table columns.")
 
 (defun org-table-align ()
   "Align the table at point by aligning all vertical bars."
   (interactive)
-  ;; (message "align") (sit-for 2)
   (let* (
         ;; Limits of table
         (beg (org-table-begin))
@@ -8072,29 +10687,37 @@ This is being used to correctly align a single field after TAB or RET.")
         (linepos (+ (if (bolp) 1 0) (count-lines (point-min) (point))))
         (colpos (org-table-current-column))
         (winstart (window-start))
-        text lines (new "") lengths l typenums ty fields maxfields i
+        lines (new "") lengths l typenums ty fields maxfields i
         column
         (indent "") cnt frac
         rfmt hfmt
-        (spaces (if (org-in-invisibility-spec-p '(org-table))
-                    org-table-spaces-around-invisible-separators
-                  org-table-spaces-around-separators))
+        (spaces '(1 . 1))
         (sp1 (car spaces))
         (sp2 (cdr spaces))
         (rfmt1 (concat
                 (make-string sp2 ?\ ) "%%%s%ds" (make-string sp1 ?\ ) "|"))
         (hfmt1 (concat
                 (make-string sp2 ?-) "%s" (make-string sp1 ?-) "+"))
-        emptystrings)
+        emptystrings links narrow fmax f1 len c e)
     (untabify beg end)
-    ;; (message "Aligning table...")
+    (remove-text-properties beg end '(org-cwidth t display t))
+    ;; Check if we have links
+    (goto-char beg)
+    (setq links (re-search-forward org-bracket-link-regexp end t))
+    ;; Make sure the link properties are right
+    (when links (goto-char beg) (while (org-activate-bracket-links end)))
+    ;; Check if we are narrowing any columns
+    (goto-char beg)
+    (setq narrow (and org-format-transports-properties-p
+                     (re-search-forward "<[0-9]+>" end t)))
     ;; Get the rows
     (setq lines (org-split-string
-                (buffer-substring-no-properties beg end) "\n"))
+                (buffer-substring beg end) "\n"))
     ;; Store the indentation of the first line
     (if (string-match "^ *" (car lines))
        (setq indent (make-string (- (match-end 0) (match-beginning 0)) ?\ )))
-    ;; Mark the hlines
+    ;; Mark the hlines by setting the corresponding element to nil
+    ;; At the same time, we remove trailing space.
     (setq lines (mapcar (lambda (l)
                          (if (string-match "^ *|-" l)
                              nil
@@ -8102,7 +10725,7 @@ This is being used to correctly align a single field after TAB or RET.")
                                (substring l 0 (match-beginning 0))
                              l)))
                        lines))
-    ;; Get the data fields
+    ;; Get the data fields by splitting the lines.
     (setq fields (mapcar
                  (lambda (l)
                      (org-split-string l " *| *"))
@@ -8116,28 +10739,62 @@ This is being used to correctly align a single field after TAB or RET.")
        (error "Empty table - created default table")))
     ;; A list of empty string to fill any short rows on output
     (setq emptystrings (make-list maxfields ""))
-    ;; Get the maximum length of a field and the most common datatype
-    ;; for each column
+    ;; Check for special formatting.
     (setq i -1)
     (while (< (setq i (1+ i)) maxfields)   ;; Loop over all columns
       (setq column (mapcar (lambda (x) (or (nth i x) "")) fields))
-      ;; maximum length
-      (push (apply 'max 1 (mapcar 'string-width column)) lengths)
-      ;; compute the fraction stepwise, ignoring empty fields
+      ;; Check if there is an explicit width specified
+      (when (and org-table-limit-column-width narrow)
+       (setq c column fmax nil)
+       (while c
+         (setq e (pop c))
+         (if (and (stringp e) (string-match "^<\\([0-9]+\\)>$" e))
+             (setq fmax (string-to-number (match-string 1 e)) c nil)))
+       ;; Find fields that are wider than fmax, and shorten them
+       (when fmax
+         (loop for xx in column do
+               (when (and (stringp xx)
+                          (> (org-string-width xx) fmax))
+                 (org-add-props xx nil
+                   'help-echo
+                   (concat "Clipped table field, use C-c ` to edit. Full value is:\n" (org-no-properties (copy-sequence xx))))
+                 (setq f1 (min fmax (or (string-match org-bracket-link-regexp xx) fmax)))
+                 (unless (> f1 1)
+                   (error "Cannot narrow field starting with wide link \"%s\""
+                          (match-string 0 xx)))
+                 (add-text-properties f1 (length xx) (list 'org-cwidth t) xx)
+                 (add-text-properties (- f1 2) f1
+                                      (list 'display org-narrow-column-arrow)
+                                      xx)))))
+      ;; Get the maximum width for each column
+      (push (apply 'max 1 (mapcar 'org-string-width column)) lengths)
+      ;; Get the fraction of numbers, to decide about alignment of the column
       (setq cnt 0 frac 0.0)
-      (mapcar
-       (lambda (x)
-        (if (equal x "")
-            nil
-          (setq frac ( / (+ (* frac cnt)
-                            (if (string-match org-table-number-regexp x) 1 0))
-                         (setq cnt (1+ cnt))))))
-       column)
+      (loop for x in column do
+           (if (equal x "")
+               nil
+             (setq frac ( / (+ (* frac cnt)
+                               (if (string-match org-table-number-regexp x) 1 0))
+                            (setq cnt (1+ cnt))))))
       (push (>= frac org-table-number-fraction) typenums))
-    (setq lengths (nreverse lengths)
-         typenums (nreverse typenums))
+    (setq lengths (nreverse lengths) typenums (nreverse typenums))
+
+    ;; Store the alignment of this table, for later editing of single fields
     (setq org-table-last-alignment typenums
          org-table-last-column-widths lengths)
+
+    ;; With invisible characters, `format' does not get the field width right
+    ;; So we need to make these fields wide by hand.
+    (when links
+      (loop for i from 0 upto (1- maxfields) do
+           (setq len (nth i lengths))
+           (loop for j from 0 upto (1- (length fields)) do
+                 (setq c (nthcdr i (car (nthcdr j fields))))
+                 (if (and (stringp (car c))
+                          (string-match org-bracket-link-regexp (car c))
+                          (< (org-string-width (car c)) len))
+                     (setcar c (concat (car c) (make-string (- len (org-string-width (car c))) ?\ )))))))
+
     ;; Compute the formats needed for output of the table
     (setq rfmt (concat indent "|") hfmt (concat indent "|"))
     (while (setq l (pop lengths))
@@ -8146,13 +10803,7 @@ This is being used to correctly align a single field after TAB or RET.")
            hfmt (concat hfmt (format hfmt1 (make-string l ?-)))))
     (setq rfmt (concat rfmt "\n")
          hfmt (concat (substring hfmt 0 -1) "|\n"))
-    ;; Produce the new table
-    ;;(while lines
-    ;;  (setq l (pop lines))
-    ;;  (if l
-    ;;      (setq new (concat new (apply 'format rfmt
-    ;;                                   (append (pop fields) emptystrings))))
-    ;;    (setq new (concat new hfmt))))
+
     (setq new (mapconcat
               (lambda (l)
                 (if l (apply 'format rfmt
@@ -8165,15 +10816,35 @@ This is being used to correctly align a single field after TAB or RET.")
     (move-marker org-table-aligned-begin-marker (point))
     (insert new)
     (move-marker org-table-aligned-end-marker (point))
+    (when (and orgtbl-mode (not (org-mode-p)))
+      (goto-char org-table-aligned-begin-marker)
+      (while (org-hide-wide-columns org-table-aligned-end-marker)))
     ;; Try to move to the old location (approximately)
     (goto-line linepos)
     (set-window-start (selected-window) winstart 'noforce)
     (org-table-goto-column colpos)
     (setq org-table-may-need-update nil)
-    (if (org-in-invisibility-spec-p '(org-table))
-       (org-table-add-invisible-to-vertical-lines))
     ))
 
+(defun org-string-width (s)
+  "Compute width of string, ignoring invisible characters.
+This ignores character with invisibility property `org-link', and also
+characters with property `org-cwidth', because these will become invisible
+upon the next fontification round."
+  (let (b)
+    (when (or (eq t buffer-invisibility-spec)
+             (assq 'org-link buffer-invisibility-spec))
+      (while (setq b (text-property-any 0 (length s)
+                                       'invisible 'org-link s))
+       (setq s (concat (substring s 0 b)
+                       (substring s (or (next-single-property-change
+                                         b 'invisible s) (length s)))))))
+    (while (setq b (text-property-any 0 (length s) 'org-cwidth t s))
+      (setq s (concat (substring s 0 b)
+                     (substring s (or (next-single-property-change
+                                       b 'org-cwidth s) (length s))))))
+    (string-width s)))
+
 (defun org-table-begin (&optional table-type)
   "Find the beginning of the table and return its position.
 With argument TABLE-TYPE, go to the beginning of a table.el-type table."
@@ -8182,7 +10853,7 @@ With argument TABLE-TYPE, go to the beginning of a table.el-type table."
              (if table-type org-table-any-border-regexp
                org-table-border-regexp)
              nil t))
-       (error "Can't find beginning of table")
+       (progn (goto-char (point-min)) (point))
       (goto-char (match-beginning 0))
       (beginning-of-line 2)
       (point))))
@@ -8204,10 +10875,7 @@ With argument TABLE-TYPE, go to the end of a table.el-type table."
 Optional argument NEW may specify text to replace the current field content."
   (cond
    ((and (not new) org-table-may-need-update)) ; Realignment will happen anyway
-   ((org-at-table-hline-p)
-    ;; FIXME:  I used to enforce realign here, but I think this is not needed.
-    ;; (setq org-table-may-need-update t)
-    )
+   ((org-at-table-hline-p))
    ((and (not new)
         (or (not (equal (marker-buffer org-table-aligned-begin-marker)
                         (current-buffer)))
@@ -8218,7 +10886,7 @@ Optional argument NEW may specify text to replace the current field content."
    (t ;; realign the current field, based on previous full realign
     (let* ((pos (point)) s
           (col (org-table-current-column))
-          (num (nth (1- col) org-table-last-alignment))
+          (num (if (> col 0) (nth (1- col) org-table-last-alignment)))
           l f n o e)
       (when (> col 0)
        (skip-chars-backward "^|\n")
@@ -8230,10 +10898,10 @@ Optional argument NEW may specify text to replace the current field content."
                    e (not (= (match-beginning 2) (match-end 2))))
              (setq f (format (if num " %%%ds %s" " %%-%ds %s")
                              l (if e "|" (setq org-table-may-need-update t) ""))
-                   n (format f s t t))
+                   n (format f s))
              (if new
-                 (if (<= (length new) l)
-                     (setq n (format f new t t))  ;; FIXME: why t t?????
+                 (if (<= (length new) l)      ;; FIXME: length -> str-width?
+                     (setq n (format f new))
                    (setq n (concat new "|") org-table-may-need-update t)))
              (or (equal n o)
                  (let (org-table-may-need-update)
@@ -8378,7 +11046,7 @@ This actually throws an error, so it aborts the current command."
     (if (looking-at "|[^|\n]+")
        (let* ((pos (match-beginning 0))
               (match (match-string 0))
-              (len (string-width match)))
+              (len (org-string-width match)))
          (replace-match (concat "|" (make-string (1- len) ?\ )))
          (goto-char (+ 2 pos))
          (substring match 1)))))
@@ -8532,7 +11200,7 @@ If TABLE-TYPE is non-nil, also check for table.el-type tables."
         "Please position cursor in a data line for column operations")))))
 
 (defun org-table-delete-column ()
-  "Delete a column into the table."
+  "Delete a column from the table."
   (interactive)
   (if (not (org-at-table-p))
       (error "Not at a table"))
@@ -8636,21 +11304,13 @@ With prefix ARG, insert below the current line."
   (interactive "P")
   (if (not (org-at-table-p))
       (error "Not at a table"))
-  (let* ((line
-         (org-expand-wide-chars
-          (buffer-substring-no-properties (point-at-bol) (point-at-eol))))
-        new)
-    (if (string-match "^[ \t]*|-" line)
-       (setq new (mapcar (lambda (x) (if (member x '(?| ?+)) ?| ?\ )) line))
-      (setq new (mapcar (lambda (x) (if (equal x ?|) ?| ?\ )) line)))
+  (let* ((line (buffer-substring (point-at-bol) (point-at-eol)))
+        (new (org-table-clean-line line)))
     ;; Fix the first field if necessary
-    (setq new (concat new))
     (if (string-match "^[ \t]*| *[#$] *|" line)
        (setq new (replace-match (match-string 0 line) t t new)))
     (beginning-of-line (if arg 2 1))
-    (let (org-table-may-need-update)
-      (insert-before-markers new)
-      (insert-before-markers "\n"))
+    (let (org-table-may-need-update) (insert-before-markers new "\n"))
     (beginning-of-line 0)
     (re-search-forward "| ?" (point-at-eol) t)
     (and org-table-may-need-update (org-table-align))))
@@ -8661,39 +11321,31 @@ With prefix ARG, insert above the current line."
   (interactive "P")
   (if (not (org-at-table-p))
       (error "Not at a table"))
-  (let ((line
-        (org-expand-wide-chars
-         (buffer-substring-no-properties (point-at-bol) (point-at-eol))))
-       (col (current-column))
-       start)
-    (if (string-match "^[ \t]*|-" line)
-       (setq line
-             (mapcar (lambda (x) (if (member x '(?| ?+))
-                                     (prog1 (if start ?+ ?|) (setq start t))
-                                   (if start ?- ?\ )))
-                     line))
-      (setq line
-           (mapcar (lambda (x) (if (equal x ?|)
-                                   (prog1 (if start ?+ ?|) (setq start t))
-                                   (if start ?- ?\ )))
-                   line)))
+  (let ((line (org-table-clean-line
+              (buffer-substring (point-at-bol) (point-at-eol))))
+       (col (current-column)))
+    (while (string-match "|\\( +\\)|" line)
+      (setq line (replace-match
+                 (concat "+" (make-string (- (match-end 1) (match-beginning 1))
+                                          ?-) "|") t t line)))
+    (and (string-match "\\+" line) (setq line (replace-match "|" t t line)))
     (beginning-of-line (if arg 1 2))
-    (apply 'insert line)
-    (if (equal (char-before (point)) ?+)
-       (progn (backward-delete-char 1) (insert "|")))
-    (insert "\n")
+    (insert line "\n")
     (beginning-of-line (if arg 1 -1))
     (move-to-column col)))
 
-(defun org-expand-wide-chars (s)
-  "Expand wide characters to spaces."
-  (let (w a)
-    (mapconcat
-     (lambda (x)
-       (if (> (setq w (string-width (setq a (char-to-string x)))) 1)
-          (make-string w ?\ )
-        a))
-     s "")))
+(defun org-table-clean-line (s)
+  "Convert a table line S into a string with only \"|\" and space.
+In particular, this does handle wide and invisible characters."
+  (if (string-match "^[ \t]*|-" s)
+      ;; It's a hline, just map the characters
+      (setq s (mapconcat (lambda (x) (if (member x '(?| ?+)) "|" " ")) s ""))
+    (while (string-match "|\\([ \t]*?[^ \t\r\n|][^\r\n|]*\\)|" s)
+      (setq s (replace-match
+              (concat "|" (make-string (org-string-width (match-string 1 s))
+                                       ?\ ) "|")
+              t t s)))
+    s))
 
 (defun org-table-kill-row ()
   "Delete the current row or horizontal line from the table."
@@ -8736,7 +11388,7 @@ also in table column 3.  The command will prompt for the sorting method
                  (lambda (a b) (< (car a) (car b)))
                (lambda (a b) (string< (car a) (car b)))))
     (setq lns (mapcar (lambda(x) (cons (org-trim (substring x bcol ecol)) x))
-                     (split-string (buffer-substring beg end) "\n")))
+                     (org-split-string (buffer-substring beg end) "\n")))
     (if numericp
        (setq lns (mapcar (lambda(x)
                              (cons (string-to-number (car x)) (cdr x)))
@@ -8925,6 +11577,64 @@ blank, and the content is appended to the field above."
          (insert (org-trim s) " ")
          (org-table-align))))))
 
+(defvar org-field-marker nil)
+
+(defun org-table-edit-field (arg)
+  "Edit table field in a different window.
+This is mainly useful for fields that contain hidden parts.
+When called with a \\[universal-argument] prefix, just make the full field visible so that
+it can be edited in place."
+  (interactive "P")
+  (if arg
+      (let ((b (save-excursion (skip-chars-backward "^|") (point)))
+           (e (save-excursion (skip-chars-forward "^|\r\n") (point))))
+       (remove-text-properties b e '(org-cwidth t invisible t
+                                                display t intangible t))
+       (if (and (boundp 'font-lock-mode) font-lock-mode)
+           (font-lock-fontify-block)))
+    (let ((pos (move-marker (make-marker) (point)))
+         (field (org-table-get-field))
+         (cw (current-window-configuration))
+         p)
+      (switch-to-buffer-other-window "*Org tmp*")
+      (erase-buffer)
+      (insert "#\n# Edit field and finish with C-c C-c\n#\n")
+      (org-mode)
+      (goto-char (setq p (point-max)))
+      (insert (org-trim field))
+      (remove-text-properties p (point-max)
+                             '(invisible t org-cwidth t display t
+                                         intangible t))
+      (goto-char p)
+      (org-set-local 'org-finish-function
+                    'org-table-finish-edit-field)
+      (org-set-local 'org-window-configuration cw)
+      (org-set-local 'org-field-marker pos)
+      (message "Edit and finish with C-c C-c"))))
+
+(defun org-table-finish-edit-field ()
+  "Finish editing a table data field.
+Remove all newline characters, insert the result into the table, realign
+the table and kill the editing buffer."
+  (let ((pos org-field-marker)
+       (cw org-window-configuration)
+       (cb (current-buffer))
+       text)
+    (goto-char (point-min))
+    (while (re-search-forward "^#.*\n?" nil t) (replace-match ""))
+    (while (re-search-forward "\\([ \t]*\n[ \t]*\\)+" nil t)
+      (replace-match " "))
+    (setq text (org-trim (buffer-string)))
+    (set-window-configuration cw)
+    (kill-buffer cb)
+    (select-window (get-buffer-window (marker-buffer pos)))
+    (goto-char pos)
+    (move-marker pos nil)
+    (org-table-check-inside-data-field)
+    (org-table-get-field nil text)
+    (org-table-align)
+    (message "New field value inserted")))
+
 (defun org-trim (s)
   "Remove whitespace at beginning and end of string."
   (if (string-match "^[ \t]+" s) (setq s (replace-match "" t t s)))
@@ -8940,7 +11650,7 @@ IF WIDTH is nil and LINES is non-nil, the string is forced into at most that
 many lines, whatever width that takes.
 The return value is a list of lines, without newlines at the end."
   (let* ((words (org-split-string string "[ \t\n]+"))
-        (maxword (apply 'max (mapcar 'string-width words)))
+        (maxword (apply 'max (mapcar 'org-string-width words)))
         w ll)
     (cond (width
           (org-do-wrap words (max maxword width)))
@@ -8967,7 +11677,6 @@ The return value is a list of lines, without newlines at the end."
       (setq lines (push line lines)))
     (nreverse lines)))
 
-;; FIXME: I think I can make this more efficient
 (defun org-split-string (string &optional separators)
   "Splits STRING into substrings at SEPARATORS.
 No empty strings are returned if there are matches at the beginning
@@ -8996,49 +11705,6 @@ and end of string."
                    list)))
     (nreverse list)))
 
-(defun org-table-add-invisible-to-vertical-lines ()
-  "Add an `invisible' property to vertical lines of current table."
-  (interactive)
-  (let* ((beg (org-table-begin))
-        (end (org-table-end))
-        (end1))
-    (save-excursion
-      (goto-char beg)
-      (while (< (point) end)
-       (setq end1 (point-at-eol))
-       (if (looking-at org-table-dataline-regexp)
-           (while (re-search-forward "|" end1 t)
-             (add-text-properties (1- (point)) (point)
-                                  '(invisible org-table)))
-         (while (re-search-forward "[+|]" end1 t)
-           (add-text-properties (1- (point)) (point)
-                                '(invisible org-table))))
-       (beginning-of-line 2)))))
-
-(defun org-table-toggle-vline-visibility (&optional arg)
-  "Toggle the visibility of table vertical lines.
-The effect is immediate and on all tables in the file.
-With prefix ARG, make lines invisible when ARG is positive, make lines
-visible when ARG is not positive."
-  (interactive "P")
-  (let ((action (cond
-                ((and arg (> (prefix-numeric-value arg) 0)) 'on)
-                ((and arg (< (prefix-numeric-value arg) 1)) 'off)
-                (t (if (org-in-invisibility-spec-p '(org-table))
-                       'off
-                     'on)))))
-    (if (eq action 'off)
-       (progn
-         (org-remove-from-invisibility-spec '(org-table))
-         (org-table-map-tables 'org-table-align)
-         (message "Vertical table lines visible")
-         (if (org-at-table-p)
-             (org-table-align)))
-      (org-add-to-invisibility-spec '(org-table))
-      (org-table-map-tables 'org-table-align)
-      (message "Vertical table lines invisible"))
-    (redraw-frame (selected-frame))))
-
 (defun org-table-map-tables (function)
   "Apply FUNCTION to the start of all tables in the buffer."
   (save-excursion
@@ -9050,7 +11716,8 @@ visible when ARG is not positive."
        (beginning-of-line 1)
        (if (looking-at org-table-line-regexp)
            (save-excursion (funcall function)))
-       (re-search-forward org-table-any-border-regexp nil 1)))))
+       (re-search-forward org-table-any-border-regexp nil 1))))
+  (message "Mapping tables: done"))
 
 (defun org-table-sum (&optional beg end nlast)
   "Sum numbers in region of current table column.
@@ -9257,7 +11924,7 @@ the current column, to avoid unnecessary parsing."
            "\n")))
 
 (defun org-table-get-stored-formulas ()
-  "Return an alist with the t=stored formulas directly after current table."
+  "Return an alist with the stored formulas directly after current table."
   (interactive)
   (let (scol eq eq-alist strings string seen)
     (save-excursion
@@ -9305,13 +11972,13 @@ expected, for the other actions only a single column number is needed."
      ((eq action 'swap)
       (setq col1 (car columns) col2 (nth 1 columns)
            sc1 (int-to-string col1) sc2 (int-to-string col2))
-      ;; Hopefully, ZqZ will never be a name in a table...  FIXME:
-      (org-table-replace-in-formulas list sc1 "ZqZ")
+      ;; Hopefully, ZqZtZ will never be a name in a table
+      (org-table-replace-in-formulas list sc1 "ZqZtZ")
       (org-table-replace-in-formulas list sc2 sc1)
-      (org-table-replace-in-formulas list "ZqZ" sc2)
-      (if (assoc sc1 list) (setcar (assoc sc1 list) "ZqZ"))
+      (org-table-replace-in-formulas list "ZqZtZ" sc2)
+      (if (assoc sc1 list) (setcar (assoc sc1 list) "ZqZtZ"))
       (if (assoc sc2 list) (setcar (assoc sc2 list) sc1))
-      (if (assoc "ZqZ" list)  (setcar (assoc "ZqZ" list) sc2)))
+      (if (assoc "ZqZtZ" list)  (setcar (assoc "ZqZtZ" list) sc2)))
      (t (error "Invalid action in `org-table-modify-formulas'")))
     (if list (org-table-store-formulas list))))
 
@@ -9537,7 +12204,7 @@ not overwrite the stored one."
                    (org-table-get-formula equation (equal arg '(4)))))
         (n0 (org-table-current-column))
         (modes (copy-sequence org-calc-default-modes))
-        n form fmt x ev orig c)
+        n form fmt x ev orig c lispp)
     ;; Parse the format string.  Since we have a lot of modes, this is
     ;; a lot of work.  However, I think calc still uses most of the time.
     (if (string-match ";" formula)
@@ -9545,10 +12212,11 @@ not overwrite the stored one."
          (setq formula (car tmp)
                fmt (concat (cdr (assoc "%" org-table-local-parameters))
                            (nth 1 tmp)))
-         (while (string-match "[pnfse]\\(-?[0-9]+\\)" fmt)
+         (while (string-match "\\([pnfse]\\)\\(-?[0-9]+\\)" fmt)
            (setq c (string-to-char (match-string 1 fmt))
-                 n (string-to-number (or (match-string 1 fmt) "")))
-           (if (= c ?p) (setq modes (org-set-calc-mode 'calc-internal-prec n))
+                 n (string-to-number (match-string 2 fmt)))
+           (if (= c ?p)
+               (setq modes (org-set-calc-mode 'calc-internal-prec n))
              (setq modes (org-set-calc-mode
                           'calc-float-format
                           (list (cdr (assoc c '((?n . float) (?f . fix)
@@ -9572,7 +12240,8 @@ not overwrite the stored one."
                        (lambda (x) (number-to-string (string-to-number x)))
                        fields)))
       (setq ndown (1- ndown))
-      (setq form (copy-sequence formula))
+      (setq form (copy-sequence formula)
+           lispp (equal (substring form 0 2) "'("))
       ;; Insert the references to fields in same row
       (while (string-match "\\$\\([0-9]+\\)?" form)
        (setq n (if (match-beginning 1)
@@ -9582,16 +12251,21 @@ not overwrite the stored one."
        (unless x (error "Invalid field specifier \"%s\""
                         (match-string 0 form)))
        (if (equal x "") (setq x "0"))
-       (setq form (replace-match (concat "(" x ")") t t form)))
+       (setq form (replace-match
+                   (if lispp x (concat "(" x ")"))
+                   t t form)))
       ;; Insert ranges in current column
       (while (string-match "\\&[-I0-9]+" form)
        (setq form (replace-match
-                    (save-match-data
-                      (org-table-get-vertical-vector (match-string 0 form)
-                                                     nil n0))
-                    t t form)))
-      (setq ev (calc-eval (cons form modes)
-                         (if org-table-formula-numbers-only 'num)))
+                   (save-match-data
+                     (org-table-get-vertical-vector (match-string 0 form)
+                                                    nil n0))
+                   t t form)))
+      (if lispp
+         (setq ev (eval (eval (read form)))
+               ev (if (numberp ev) (number-to-string ev) ev))
+       (setq ev (calc-eval (cons form modes)
+                           (if org-table-formula-numbers-only 'num))))
 
       (when org-table-formula-debug
        (with-output-to-temp-buffer "*Help*"
@@ -9624,7 +12298,8 @@ $1->    %s\n" orig formula form))
                            (org-table-align)))))
 
 (defun org-table-recalculate (&optional all noalign)
-  "Recalculate the current table line by applying all stored formulas."
+  "Recalculate the current table line by applying all stored formulas.
+With prefix arg ALL, do this for all lines in the table."
   (interactive "P")
   (or (memq this-command org-recalc-commands)
       (setq org-recalc-commands (cons this-command org-recalc-commands)))
@@ -9740,7 +12415,6 @@ Parameters get priority."
 (define-key org-edit-formulas-map "\C-c?" 'org-show-variable)
 
 (defvar org-pos)
-(defvar org-window-configuration)
 
 (defun org-table-edit-formulas ()
   "Edit the formulas of the current table in a separate buffer."
@@ -9755,8 +12429,8 @@ Parameters get priority."
     (switch-to-buffer-other-window "*Edit Formulas*")
     (erase-buffer)
     (fundamental-mode)
-    (set (make-local-variable 'org-pos) pos)
-    (set (make-local-variable 'org-window-configuration) wc)
+    (org-set-local 'org-pos pos)
+    (org-set-local 'org-window-configuration wc)
     (use-local-map org-edit-formulas-map)
     (setq s "# Edit formulas and finish with `C-c C-c'.
 # Use `C-u C-c C-c' to also appy them immediately to the entire table.
@@ -9892,20 +12566,6 @@ With prefix ARG, apply the new formulas to the table."
 ;; active, this binding is ignored inside tables and replaced with a
 ;; modified self-insert.
 
-(defcustom orgtbl-optimized (eq org-enable-table-editor 'optimized)
-  "Non-nil means, use the optimized table editor version for `orgtbl-mode'.
-In the optimized version, the table editor takes over all simple keys that
-normally just insert a character.  In tables, the characters are inserted
-in a way to minimize disturbing the table structure (i.e. in overwrite mode
-for empty fields).  Outside tables, the correct binding of the keys is
-restored.
-
-The default for this option is t if the optimized version is also used in
-Org-mode.  See the variable `org-enable-table-editor' for details.  Changing
-this variable requires a restart of Emacs to become effective."
-  :group 'org-table
-  :type 'boolean)
-
 (defvar orgtbl-mode nil
   "Variable controlling `orgtbl-mode', a minor mode enabling the `org-mode'
 table editor in arbitrary modes.")
@@ -9923,7 +12583,7 @@ table editor in arbitrary modes.")
 (defun orgtbl-mode (&optional arg)
   "The `org-mode' table editor as a minor mode for use in other modes."
   (interactive)
-  (if (eq major-mode 'org-mode)
+  (if (org-mode-p)
       ;; Exit without error, in case some hook functions calls this
       ;; by accident in org-mode.
       (message "Orgtbl-mode is not useful in org-mode, command ignored")
@@ -9936,22 +12596,38 @@ table editor in arbitrary modes.")
          (let ((c (assq 'orgtbl-mode minor-mode-map-alist)))
            (and c (setq minor-mode-map-alist
                         (cons c (delq c minor-mode-map-alist)))))
-         (set (make-local-variable (quote org-table-may-need-update)) t)
+         (org-set-local (quote org-table-may-need-update) t)
          (org-add-hook 'before-change-functions 'org-before-change-function
                        nil 'local)
-         (set (make-local-variable 'org-old-auto-fill-inhibit-regexp)
-              auto-fill-inhibit-regexp)
-         (set (make-local-variable 'auto-fill-inhibit-regexp)
-              (if auto-fill-inhibit-regexp
-                  (concat "\\([ \t]*|\\|" auto-fill-inhibit-regexp)
-                "[ \t]*|"))
+         (org-set-local 'org-old-auto-fill-inhibit-regexp
+                        auto-fill-inhibit-regexp)
+         (org-set-local 'auto-fill-inhibit-regexp
+                        (if auto-fill-inhibit-regexp
+                            (concat "\\([ \t]*|\\|" auto-fill-inhibit-regexp)
+                          "[ \t]*|"))
+         (org-add-to-invisibility-spec '(org-cwidth))
          (easy-menu-add orgtbl-mode-menu)
          (run-hooks 'orgtbl-mode-hook))
       (setq auto-fill-inhibit-regexp org-old-auto-fill-inhibit-regexp)
+      (org-cleanup-narrow-column-properties)
+      (org-remove-from-invisibility-spec '(org-cwidth))
       (remove-hook 'before-change-functions 'org-before-change-function t)
       (easy-menu-remove orgtbl-mode-menu)
       (force-mode-line-update 'all))))
 
+(defun org-cleanup-narrow-column-properties ()
+  "Remove all properties related to narrow-column invisibility."
+  (let ((s 1))
+    (while (setq s (text-property-any s (point-max)
+                                     'display org-narrow-column-arrow))
+      (remove-text-properties s (1+ s) '(display t)))
+    (setq s 1)
+    (while (setq s (text-property-any s (point-max) 'org-cwidth 1))
+      (remove-text-properties s (1+ s) '(org-cwidth t)))
+    (setq s 1)
+    (while (setq s (text-property-any s (point-max) 'invisible 'org-cwidth))
+      (remove-text-properties s (1+ s) '(invisible t)))))
+
 ;; Install it as a minor mode.
 (put 'orgtbl-mode :included t)
 (put 'orgtbl-mode :menu-tag "Org Table Mode")
@@ -10012,10 +12688,11 @@ to execute outside of tables."
          '("\C-c?"              org-table-current-column)
          '("\C-c "              org-table-blank-field)
          '("\C-c+"              org-table-sum)
-         '("\C-c|"              org-table-toggle-vline-visibility)
          '("\C-c="              org-table-eval-formula)
          '("\C-c'"              org-table-edit-formulas)
+         '("\C-c`"              org-table-edit-field)
          '("\C-c*"              org-table-recalculate)
+         '("\C-c|"              org-table-create-or-convert-from-region)
          '("\C-c^"              org-table-sort-lines)
          '([(control ?#)]       org-table-rotate-recalc-marks)))
        elt key fun cmd)
@@ -10043,8 +12720,8 @@ to execute outside of tables."
       ;; some standard editing functions
       (org-remap orgtbl-mode-map
                 'self-insert-command 'orgtbl-self-insert-command
-                'delete-char 'orgtbl-delete-char
-                'delete-backward-char 'orgtbl-delete-backward-char)
+                'delete-char 'org-delete-char
+                'delete-backward-char 'org-delete-backward-char)
       (define-key orgtbl-mode-map "|" 'org-force-self-insert))
     (easy-menu-define orgtbl-mode-menu orgtbl-mode-map "OrgTbl menu"
       '("OrgTbl"
@@ -10054,6 +12731,7 @@ to execute outside of tables."
        ["Next Row" org-return :active (org-at-table-p) :keys "RET"]
        "--"
        ["Blank Field" org-table-blank-field :active (org-at-table-p) :keys "C-c SPC"]
+       ["Edit Field" org-table-edit-field :active (org-at-table-p) :keys "C-c ` "]
        ["Copy Field from Above"
         org-table-copy-down :active (org-at-table-p) :keys "S-RET"]
        "--"
@@ -10061,7 +12739,9 @@ to execute outside of tables."
         ["Move Column Left" org-metaleft :active (org-at-table-p) :keys "M-<left>"]
         ["Move Column Right" org-metaright :active (org-at-table-p) :keys "M-<right>"]
         ["Delete Column" org-shiftmetaleft :active (org-at-table-p) :keys "M-S-<left>"]
-        ["Insert Column" org-shiftmetaright :active (org-at-table-p) :keys "M-S-<right>"])
+        ["Insert Column" org-shiftmetaright :active (org-at-table-p) :keys "M-S-<right>"]
+        "--"
+        ["Enable Narrowing" (setq org-table-limit-column-width (not org-table-limit-column-width)) :active (org-at-table-p) :selected org-table-limit-column-width :style toggle])
        ("Row"
         ["Move Row Up" org-metaup :active (org-at-table-p) :keys "M-<up>"]
         ["Move Row Down" org-metadown :active (org-at-table-p) :keys "M-<down>"]
@@ -10091,11 +12771,12 @@ to execute outside of tables."
        ))
     t)
 
-(defun orgtbl-tab ()
+(defun orgtbl-tab (arg)
   "Justification and field motion for `orgtbl-mode'."
-  (interactive)
-  (org-table-justify-field-maybe)
-  (org-table-next-field))
+  (interactive "P")
+  (if arg (org-table-edit-field t)
+    (org-table-justify-field-maybe)
+    (org-table-next-field)))
 
 (defun orgtbl-ret ()
   "Justification and field motion for `orgtbl-mode'."
@@ -10136,47 +12817,115 @@ overwritten, and the table is not marked as requiring realignment."
   (interactive "p")
   (self-insert-command N))
 
-(defun orgtbl-delete-backward-char (N)
-  "Like `delete-backward-char', insert whitespace at field end in tables.
-When deleting backwards, in tables this function will insert whitespace in
-front of the next \"|\" separator, to keep the table aligned.  The table will
-still be marked for re-alignment, because a narrow field may lead to a
-reduced column width."
-  (interactive "p")
-  (if (and (org-at-table-p)
-          (eq N 1)
-          (string-match "|" (buffer-substring (point-at-bol) (point)))
-          (looking-at ".*?|"))
-      (let ((pos (point)))
-       (backward-delete-char N)
-       (skip-chars-forward "^|")
-       (insert " ")
-       (goto-char (1- pos)))
-    (delete-backward-char N)))
-
-(defun orgtbl-delete-char (N)
-  "Like `delete-char', but insert whitespace at field end in tables.
-When deleting characters, in tables this function will insert whitespace in
-front of the next \"|\" separator, to keep the table aligned.  The table
-will still be marked for re-alignment, because a narrow field may lead to
-a reduced column width."
-  (interactive "p")
-  (if (and (org-at-table-p)
-          (not (bolp))
-          (not (= (char-after) ?|))
-          (eq N 1))
-      (if (looking-at ".*?|")
-         (let ((pos (point)))
-           (replace-match (concat
-                           (substring (match-string 0) 1 -1)
-                           " |"))
-           (goto-char pos)))
-    (delete-char N)))
-
 ;;; Exporting
 
 (defconst org-level-max 20)
 
+(defvar org-export-html-preamble nil
+  "Preamble, to be inserted just after <body>.  Set by publishing functions.")
+(defvar org-export-html-postamble nil
+  "Preamble, to be inserted just before </body>.  Set by publishing functions.")
+(defvar org-export-html-auto-preamble t
+  "Should default preamble be inserted?  Set by publishing functions.")
+(defvar org-export-html-auto-postamble t
+  "Should default postamble be inserted?  Set by publishing functions.")
+
+(defconst org-export-plist-vars
+  '((:language             . org-export-default-language)
+    (:headline-levels      . org-export-headline-levels)
+    (:section-numbers      . org-export-with-section-numbers)
+    (:table-of-contents    . org-export-with-toc)
+    (:archived-trees       . org-export-with-archived-trees)
+    (:emphasize            . org-export-with-emphasize)
+    (:sub-superscript      . org-export-with-sub-superscripts)
+    (:TeX-macros           . org-export-with-TeX-macros)
+    (:LaTeX-fragments      . org-export-with-LaTeX-fragments)
+    (:fixed-width          . org-export-with-fixed-width)
+    (:timestamps           . org-export-with-timestamps)
+    (:tables               . org-export-with-tables)
+    (:table-auto-headline  . org-export-highlight-first-table-line)
+    (:style                . org-export-html-style)
+    (:convert-org-links    . org-export-html-link-org-files-as-html)
+    (:inline-images        . org-export-html-inline-images)
+    (:expand-quoted-html   . org-export-html-expand)
+    (:timestamp            . org-export-html-with-timestamp)
+    (:publishing-directory . org-export-publishing-directory)
+    (:preamble             . org-export-html-preamble)
+    (:postamble            . org-export-html-postamble)
+    (:auto-preamble        . org-export-html-auto-preamble)
+    (:auto-postamble       . org-export-html-auto-postamble)
+    (:author               . user-full-name)
+    (:email                . user-mail-address)))
+
+(defun org-default-export-plist ()
+  "Return the property list with default settings for the export variables."
+  (let ((l org-export-plist-vars) rtn e)
+    (while (setq e (pop l))
+      (setq rtn (cons (car e) (cons (symbol-value (cdr e)) rtn))))
+    rtn))
+
+(defun org-infile-export-plist ()
+  "Return the property list with file-local settings for export."
+  (save-excursion
+    (goto-char 0)
+    (let ((re (org-make-options-regexp
+              '("TITLE" "AUTHOR" "EMAIL" "TEXT" "OPTIONS" "LANGUAGE")))
+         p key val text options)
+      (while (re-search-forward re nil t)
+       (setq key (org-match-string-no-properties 1)
+             val (org-match-string-no-properties 2))
+       (cond
+        ((string-equal key "TITLE") (setq p (plist-put p :title val)))
+        ((string-equal key "AUTHOR")(setq p (plist-put p :author val)))
+        ((string-equal key "EMAIL") (setq p (plist-put p :email val)))
+        ((string-equal key "LANGUAGE") (setq p (plist-put p :language val)))
+        ((string-equal key "TEXT")
+         (setq text (if text (concat text "\n" val) val)))
+        ((string-equal key "OPTIONS") (setq options val))))
+      (setq p (plist-put p :text text))
+      (when options
+       (let ((op '(("H"     . :headline-levels)
+                   ("num"   . :section-numbers)
+                   ("toc"   . :table-of-contents)
+                   ("\\n"   . :preserve-breaks)
+                   ("@"     . :expand-quoted-html)
+                   (":"     . :fixed-width)
+                   ("|"     . :tables)
+                   ("^"     . :sub-superscript)
+                   ("*"     . :emphasize)
+                   ("TeX"   . :TeX-macros)
+                   ("LaTeX" . :LaTeX-fragments)))
+             o)
+         (while (setq o (pop op))
+           (if (string-match (concat (regexp-quote (car o))
+                                     ":\\([^ \t\n\r;,.]*\\)")
+                             options)
+               (setq p (plist-put p (cdr o)
+                                  (car (read-from-string
+                                        (match-string 1 options)))))))))
+      p)))
+
+(defun org-combine-plists (&rest plists)
+  "Create a single property list from all plists in PLISTS.
+The process starts by copying the last list, and then setting properties
+from the other lists.  Settings in the first list are the most significant
+ones and overrule settings in the other lists."
+  (let ((rtn (copy-sequence (pop plists)))
+       p v ls)
+    (while plists
+      (setq ls (pop plists))
+      (while ls
+       (setq p (pop ls) v (pop ls))
+       (setq rtn (plist-put rtn p v))))
+    rtn))
+
+(defun org-export-directory (type plist)
+  (let* ((val (plist-get plist :publishing-directory))
+        (dir (if (listp val)
+                 (or (cdr (assoc type val)) ".")
+               val)))
+    dir))
+
 (defun org-export-find-first-heading-line (list)
   "Remove all lines from LIST which are before the first headline."
   (let ((orig-list list)
@@ -10204,16 +12953,60 @@ a reduced column width."
        ;; an ordinary comment line
        )
        ((and org-export-table-remove-special-lines
-            (string-match "^[ \t]*| *[!_^] *|" line))
+            (string-match "^[ \t]*|" line)
+            (or (string-match "^[ \t]*| *[!_^] *|" line)
+                (and (string-match "| *<[0-9]+> *|" line)
+                     (not (string-match "| *[^ <|]" line)))))
        ;; a special table line that should be removed
        )
        (t (setq rtn (cons line rtn)))))
     (nreverse rtn)))
 
-;; ASCII
+(defun org-export (&optional arg)
+  (interactive)
+  (let ((help "[t]   insert the export option template
+\[v]   limit export to visible part of outline tree
+
+\[a] export as ASCII
+\[h] export as HTML
+\[b] export as HTML and browse immediately
+\[x] export as XOXO
+
+\[i] export current file as iCalendar file
+\[I] export all agenda files as iCalendar files
+\[c] export agenda files into combined iCalendar file
+
+\[F] publish current file
+\[P] publish current project
+\[X] publish... (project will be prompted for)
+\[A] publish all projects")
+       (cmds
+        '((?t . org-insert-export-options-template)
+          (?v . org-export-visible)
+          (?a . org-export-as-ascii)
+          (?h . org-export-as-html)
+          (?b . org-export-as-html-and-open)
+          (?x . org-export-as-xoxo)
+          (?i . org-export-icalendar-this-file)
+          (?I . org-export-icalendar-all-agenda-files)
+          (?c . org-export-icalendar-combine-agenda-files)
+          (?F . org-publish-current-file)
+          (?P . org-publish-current-project)
+          (?X . org-publish)
+          (?A . org-publish-all)))
+       r1 r2 ass)
+    (save-window-excursion
+      (delete-other-windows)
+      (with-output-to-temp-buffer "*Org Export/Publishing Help*"
+       (princ help))
+      (message "Select command: ")
+      (setq r1 (read-char-exclusive)))
+    (setq r2 (if (< r1 27) (+ r1 96) r1))
+    (if (setq ass (assq r2 cmds))
+       (call-interactively (cdr ass))
+      (error "No command associated with key %c" r1))))
 
-(defconst org-ascii-underline '(?\$ ?\# ?^ ?\~ ?\= ?\-)
-  "Characters for underlining headings in ASCII export.")
+;; ASCII
 
 (defconst org-html-entities
   '(("nbsp")
@@ -10513,33 +13306,80 @@ The list contains HTML entities for Latin-1, Greek and other symbols.
 It is supplemented by a number of commonly used TeX macros with appropriate
 translations.  There is currently no way for users to extend this.")
 
-(defun org-cleaned-string-for-export (string)
+(defun org-cleaned-string-for-export (string &rest parameters)
   "Cleanup a buffer substring so that links can be created safely."
   (interactive)
-  (let* ((cb (current-buffer))
-        (re-radio (and org-target-link-regexp
+  (let* ((re-radio (and org-target-link-regexp
                        (concat "\\([^<]\\)\\(" org-target-link-regexp "\\)")))
+        (re-plain-link (concat "\\([^[<]\\)" org-plain-link-re))
+        (re-angle-link (concat "\\([^[]\\)" org-angle-link-re))
+        (re-archive (concat ":" org-archive-tag ":"))
         rtn)
     (save-excursion
       (set-buffer (get-buffer-create " org-mode-tmp"))
       (erase-buffer)
       (insert string)
-      (org-mode)
+      (let ((org-inhibit-startup t)) (org-mode))
+
+      ;; Get rid of archived trees
+      (when (not (eq org-export-with-archived-trees t))
+       (goto-char (point-min))
+       (while (re-search-forward re-archive nil t)
+         (if (not (org-on-heading-p))
+             (org-end-of-subtree t)
+           (beginning-of-line 1)
+           (delete-region
+            (if org-export-with-archived-trees (1+ (point-at-eol)) (point))
+            (org-end-of-subtree)))))
+
       ;; Find targets in comments and move them out of comments,
       ;; but mark them as targets that should be invisible
       (goto-char (point-min))
       (while (re-search-forward "^#.*?\\(<<<?[^>\r\n]+>>>?\\).*" nil t)
        (replace-match "\\1(INVISIBLE)"))
-      ;; Find matches for radio targets and turn them into links
+
+      ;; Find matches for radio targets and turn them into internal links
       (goto-char (point-min))
       (when re-radio
        (while (re-search-forward re-radio nil t)
          (replace-match "\\1[[\\2]]")))
+
       ;; Find all links that contain a newline and put them into a single line
       (goto-char (point-min))
-      (while (re-search-forward "\\(\\[\\[[^]]*?\\)[ \t]*\n[ \t]*\\([^]]*\\]\\]\\)" nil t)
-       (replace-match "\\1 \\2")
+      (while (re-search-forward "\\(\\(\\[\\|\\]\\)\\[[^]]*?\\)[ \t]*\n[ \t]*\\([^]]*\\]\\(\\[\\|\\]\\)\\)" nil t)
+       (replace-match "\\1 \\3")
        (goto-char (match-beginning 0)))
+
+      ;; Convert LaTeX fragments to images
+      (when (memq :LaTeX-fragments parameters)
+       (org-format-latex 
+        (concat "ltxpng/" (file-name-sans-extension
+                           (file-name-nondirectory
+                            org-current-export-file)))
+        org-current-export-dir nil "Creating LaTeX image %s"))
+      (message "Exporting...")
+
+      ;; Normalize links: Convert angle and plain links into bracket links
+      (goto-char (point-min))
+      (while (re-search-forward re-plain-link nil t)
+       (replace-match
+        (concat
+         (match-string 1) "[[" (match-string 2) ":" (match-string 3) "]]")
+        t t))
+      (goto-char (point-min))
+      (while (re-search-forward re-angle-link nil t)
+       (replace-match
+        (concat
+         (match-string 1) "[[" (match-string 2) ":" (match-string 3) "]]")
+        t t))
+
+      ;; Find multiline emphasis and put them into single line
+      (when (memq :emph-multiline parameters)
+       (goto-char (point-min))
+       (while (re-search-forward org-emph-re nil t)
+         (subst-char-in-region (match-beginning 0) (match-end 0) ?\n ?\  t)
+         (goto-char (1- (match-end 0)))))
+
       ;; Remove comments
       (goto-char (point-min))
       (while (re-search-forward "^#.*\n?" nil t)
@@ -10563,7 +13403,7 @@ translations.  There is currently no way for users to extend this.")
 This will leave level 1 alone, convert level 2 to level 3, level 3 to
 level 5 etc."
   (interactive)
-  (when (yes-or-no-p "Are you sure you want to globally change levels? ")
+  (when (yes-or-no-p "Are you sure you want to globally change levels to odd? ")
     (let ((org-odd-levels-only nil) n)
       (save-excursion
        (goto-char (point-min))
@@ -10573,11 +13413,34 @@ level 5 etc."
            (org-demote))
          (end-of-line 1))))))
 
+
+(defun org-convert-to-oddeven-levels ()
+  "Convert an org-mode file with only odd levels to one with odd and even levels.
+This promotes level 3 to level 2, level 5 to level 3 etc.  If the file contains a
+section with an even level, conversion would destroy the structure of the file.  An error
+is signaled in this case."
+  (interactive)
+  (goto-char (point-min))
+  ;; First check if there are no even levels
+  (when (re-search-forward "^\\(\\*\\*\\)+[^*]" nil t)
+    (org-show-hierarchy-above)
+    (error "Not all levels are odd in this file.  Conversion not possible."))
+  (when (yes-or-no-p "Are you sure you want to globally change levels to odd-even? ")
+    (let ((org-odd-levels-only nil) n)
+      (save-excursion
+       (goto-char (point-min))
+       (while (re-search-forward "^\\*\\*+" nil t)
+         (setq n (/ (length (match-string 0)) 2))
+         (while (>= (setq n (1- n)) 0)
+           (org-promote))
+         (end-of-line 1))))))
+
 (defun org-tr-level (n)
   "Make N odd if required."
   (if org-odd-levels-only (1+ (/ n 2)) n))
 
 (defvar org-last-level nil) ; dynamically scoped variable
+(defvar org-ascii-current-indentation nil) ; For communication
 
 (defun org-export-as-ascii (arg)
   "Export the outline as a pretty ASCII file.
@@ -10586,7 +13449,9 @@ The prefix ARG specifies how many levels of the outline should become
 underlined headlines.  The default is 3."
   (interactive "P")
   (setq-default org-todo-line-regexp org-todo-line-regexp)
-  (let* ((region
+  (let* ((opt-plist (org-combine-plists (org-default-export-plist)
+                                       (org-infile-export-plist)))
+        (region
          (buffer-substring
           (if (org-region-active-p) (region-beginning) (point-min))
           (if (org-region-active-p) (region-end) (point-max))))
@@ -10595,21 +13460,27 @@ underlined headlines.  The default is 3."
                  (org-split-string
                   (org-cleaned-string-for-export region)
                   "[\r\n]"))))
+        (org-ascii-current-indentation '(0 . 0))
         (org-startup-with-deadline-check nil)
         (level 0) line txt
         (umax nil)
         (case-fold-search nil)
-        (filename (concat (file-name-sans-extension buffer-file-name)
+         (filename (concat (file-name-as-directory
+                           (org-export-directory :ascii opt-plist))
+                          (file-name-sans-extension
+                           (file-name-nondirectory buffer-file-name))
                           ".txt"))
         (buffer (find-file-noselect filename))
         (levels-open (make-vector org-level-max nil))
+        (odd org-odd-levels-only)
         (date  (format-time-string "%Y/%m/%d" (current-time)))
-        (time  (format-time-string "%X" (current-time)))
-        (author      user-full-name)
-        (title       (buffer-name))
-        (options     nil)
-        (email       user-mail-address)
-        (language    org-export-default-language)
+        (time  (format-time-string "%X" (org-current-time)))
+        (author      (plist-get opt-plist :author))
+        (title       (or (plist-get opt-plist :title)
+                         (file-name-sans-extension
+                          (file-name-nondirectory buffer-file-name))))
+        (email       (plist-get opt-plist :email))
+        (language    (plist-get opt-plist :language))
         (text        nil)
         (todo nil)
         (lang-words nil))
@@ -10619,9 +13490,6 @@ underlined headlines.  The default is 3."
 
     (find-file-noselect filename)
 
-    ;; Search for the export key lines
-    (org-parse-key-lines)
-
     (setq lang-words (or (assoc language org-export-language-setup)
                         (assoc "en" org-export-language-setup)))
     (if org-export-ascii-show-new-buffer
@@ -10629,7 +13497,13 @@ underlined headlines.  The default is 3."
       (set-buffer buffer))
     (erase-buffer)
     (fundamental-mode)
-    (if options (org-parse-export-options options))
+    ;; create local variables for all options, to make sure all called
+    ;; functions get the correct information
+    (mapcar (lambda (x)
+             (set (make-local-variable (cdr x))
+                  (plist-get opt-plist (car x))))
+           org-export-plist-vars)
+    (org-set-local 'org-odd-levels-only odd)
     (setq umax (if arg (prefix-numeric-value arg)
                 org-export-headline-levels))
 
@@ -10659,11 +13533,13 @@ underlined headlines.  The default is 3."
                                 level (org-tr-level level)
                                 txt (match-string 3 line)
                                 todo
-                                (or (and (match-beginning 2)
+                                (or (and org-export-mark-todo-in-toc
+                                         (match-beginning 2)
                                          (not (equal (match-string 2 line)
                                                      org-done-string)))
                                        ; TODO, not DONE
-                                    (and (= level umax)
+                                    (and org-export-mark-todo-in-toc
+                                         (= level umax)
                                          (org-search-todo-below
                                           line lines level))))
                           (setq txt (org-html-expand-for-ascii txt))
@@ -10697,10 +13573,24 @@ underlined headlines.  The default is 3."
        ;; a Headline
        (setq level (org-tr-level (- (match-end 1) (match-beginning 1)))
              txt (match-string 2 line))
-       (org-ascii-level-start level txt umax))
-       (t (insert line "\n"))))
+       (org-ascii-level-start level txt umax lines))
+       (t
+       (insert (org-fix-indentation line org-ascii-current-indentation) "\n"))))
     (normal-mode)
     (save-buffer)
+    ;; remove display and invisible chars
+    (let (beg end)
+      (goto-char (point-min))
+      (while (setq beg (next-single-property-change (point) 'display))
+       (setq end (next-single-property-change beg 'display))
+       (delete-region beg end)
+       (goto-char beg)
+       (insert "=>"))
+      (goto-char (point-min))
+      (while (setq beg (next-single-property-change (point) 'org-cwidth))
+       (setq end (next-single-property-change beg 'org-cwidth))
+       (delete-region beg end)
+       (goto-char beg)))
     (goto-char (point-min))))
 
 (defun org-search-todo-below (line lines level)
@@ -10720,8 +13610,6 @@ underlined headlines.  The default is 3."
              (if (<= lv level) (throw 'exit nil))
              (if todo (throw 'exit t))))))))
 
-;; FIXME: Try to handle <b> and <i> as faces via text properties.
-;; FIXME: Can I implement *bold*,/italic/ and _underline_ for ASCII export?
 (defun org-html-expand-for-ascii (line)
   "Handle quoted HTML for ASCII export."
   (if org-export-html-expand
@@ -10732,75 +13620,104 @@ underlined headlines.  The default is 3."
 
 (defun org-insert-centered (s &optional underline)
   "Insert the string S centered and underline it with character UNDERLINE."
-  (let ((ind (max (/ (- 80 (length s)) 2) 0)))
+  (let ((ind (max (/ (- 80 (string-width s)) 2) 0)))
     (insert (make-string ind ?\ ) s "\n")
     (if underline
        (insert (make-string ind ?\ )
-               (make-string (length s) underline)
+               (make-string (string-width s) underline)
                "\n"))))
 
-(defun org-ascii-level-start (level title umax)
+(defun org-ascii-level-start (level title umax &optional lines)
   "Insert a new level in ASCII export."
-  (let (char)
+  (let (char (n (- level umax 1)) (ind 0))
     (if (> level umax)
-       (insert (make-string (* 2 (- level umax 1)) ?\ ) "* " title "\n")
+       (progn
+         (insert (make-string (* 2 n) ?\ )
+                 (char-to-string (nth (% n (length org-export-ascii-bullets))
+                                      org-export-ascii-bullets))
+                 " " title "\n")
+         ;; find the indentation of the next non-empty line
+         (catch 'stop
+           (while lines
+             (if (string-match "^\\*" (car lines)) (throw 'stop nil))
+             (if (string-match "^\\([ \t]*\\)\\S-" (car lines))
+                 (throw 'stop (setq ind (org-get-indentation (car lines)))))
+             (pop lines)))
+         (setq org-ascii-current-indentation (cons (* 2 (1+ n)) ind)))
       (if (or (not (equal (char-before) ?\n))
              (not (equal (char-before (1- (point))) ?\n)))
          (insert "\n"))
-      (setq char (nth (- umax level) (reverse org-ascii-underline)))
+      (setq char (nth (- umax level) (reverse org-export-ascii-underline)))
       (if org-export-with-section-numbers
          (setq title (concat (org-section-number level) " " title)))
-      (insert title "\n" (make-string (string-width title) char) "\n"))))
-
-(defun org-export-copy-visible ()
-  "Copy the visible part of the buffer to another buffer, for printing.
-Also removes the first line of the buffer if it specifies a mode,
-and all options lines."
-  (interactive)
-  (let* ((filename (concat (file-name-sans-extension buffer-file-name)
-                          ".txt"))
-        (buffer (find-file-noselect filename))
-        (ore (concat
-              (org-make-options-regexp
-               '("CATEGORY" "SEQ_TODO" "PRI_TODO" "TYP_TODO"
-                 "STARTUP" "ARCHIVE"
-                 "TITLE" "AUTHOR" "EMAIL" "TEXT" "OPTIONS" "LANGUAGE"))
-              (if org-noutline-p "\\(\n\\|$\\)" "")))
+      (insert title "\n" (make-string (string-width title) char) "\n")
+      (setq org-ascii-current-indentation '(0 . 0)))))
+
+(defun org-export-visible (type arg)
+  "Create a copy of the visible part of the current buffer, and export it.
+The copy is created in a temporary buffer and removed after use.
+TYPE is the final key (as a string) that also select the export command in
+the `C-c C-e' export dispatcher.
+As a special case, if the you type SPC at the prompt, the temporary
+org-mode file will not be removed but presented to you so that you can
+continue to use it.  The prefix arg ARG is passed through to the exporting
+command."
+  (interactive
+   (list (progn
+          (message "Export visible: [a]SCII  [h]tml  [b]rowse HTML  [x]OXO  [ ]keep buffer")
+          (read-char-exclusive))
+        current-prefix-arg))
+  (if (not (member type '(?a ?\C-a ?b ?\C-b ?h ?x ?\ )))
+      (error "Invalid export key"))
+  (let* ((binding (cdr (assoc type
+                             '((?a . org-export-as-ascii)
+                               (?\C-a . org-export-as-ascii)
+                               (?b . org-export-as-html-and-open)
+                               (?\C-b . org-export-as-html-and-open)
+                               (?h . org-export-as-html)
+                               (?x . org-export-as-xoxo)))))
+        (keepp (equal type ?\ ))
+        (file buffer-file-name)
+        (buffer (get-buffer-create "*Org Export Visible*"))
         s e)
-    (with-current-buffer buffer
-      (erase-buffer)
-      (text-mode))
+    (with-current-buffer buffer (erase-buffer))
     (save-excursion
       (setq s (goto-char (point-min)))
       (while (not (= (point) (point-max)))
        (goto-char (org-find-invisible))
        (append-to-buffer buffer s (point))
-       (setq s (goto-char (org-find-visible)))))
-    (switch-to-buffer-other-window buffer)
-    (newline)
-    (goto-char (point-min))
-    (if (looking-at ".*-\\*- mode:.*\n")
-       (replace-match ""))
-    (while (re-search-forward ore nil t)
-      (replace-match ""))
-    (goto-char (point-min))))
+       (setq s (goto-char (org-find-visible))))
+      (goto-char (point-min))
+      (unless keepp
+       ;; Copy all comment lines to the end, to make sure #+ settings are
+       ;; still available for the second export step.  Kind of a hack, but
+       ;; does do the trick.
+       (if (looking-at "#[^\r\n]*")
+           (append-to-buffer buffer (match-beginning 0) (1+ (match-end 0))))
+       (while (re-search-forward "[\n\r]#[^\n\r]*" nil t)
+         (append-to-buffer buffer (1+ (match-beginning 0))
+                           (min (point-max) (1+ (match-end 0))))))
+      (set-buffer buffer)
+      (let ((buffer-file-name file)
+           (org-inhibit-startup t))
+       (org-mode)
+       (show-all)
+       (unless keepp (funcall binding arg))))
+    (if (not keepp)
+       (kill-buffer buffer)
+      (switch-to-buffer-other-window buffer)
+      (goto-char (point-min)))))
 
 (defun org-find-visible ()
-  (if (featurep 'noutline)
-      (let ((s (point)))
-       (while (and (not (= (point-max) (setq s (next-overlay-change s))))
-                   (get-char-property s 'invisible)))
-       s)
-    (skip-chars-forward "^\n")
-    (point)))
+  (let ((s (point)))
+    (while (and (not (= (point-max) (setq s (next-overlay-change s))))
+               (get-char-property s 'invisible)))
+    s))
 (defun org-find-invisible ()
-  (if (featurep 'noutline)
-      (let ((s (point)))
-       (while (and (not (= (point-max) (setq s (next-overlay-change s))))
-                   (not (get-char-property s 'invisible))))
-       s)
-    (skip-chars-forward "^\r")
-    (point)))
+  (let ((s (point)))
+    (while (and (not (= (point-max) (setq s (next-overlay-change s))))
+               (not (get-char-property s 'invisible))))
+    s))
 
 ;; HTML
 
@@ -10813,11 +13730,12 @@ Does include HTML export options as well as TODO and CATEGORY stuff."
 #+EMAIL:     %s
 #+LANGUAGE:  %s
 #+TEXT:      Some descriptive text to be emitted.  Several lines OK.
-#+OPTIONS:   H:%d num:%s toc:%s \\n:%s @:%s ::%s |:%s ^:%s *:%s TeX:%s
+#+OPTIONS:   H:%d num:%s toc:%s \\n:%s @:%s ::%s |:%s ^:%s *:%s TeX:%s LaTeX:%s
 #+CATEGORY:  %s
 #+SEQ_TODO:  %s
 #+TYP_TODO:  %s
-#+STARTUP:   %s %s
+#+STARTUP:   %s %s %s %s %s %s
+#+TAGS:      %s
 #+ARCHIVE:   %s
 "
    (buffer-name) (user-full-name) user-mail-address org-export-default-language
@@ -10831,6 +13749,7 @@ Does include HTML export options as well as TODO and CATEGORY stuff."
    org-export-with-sub-superscripts
    org-export-with-emphasize
    org-export-with-TeX-macros
+   org-export-with-LaTeX-fragments
    (file-name-nondirectory buffer-file-name)
    (if (equal org-todo-interpretation 'sequence)
        (mapconcat 'identity org-todo-keywords " ")
@@ -10839,8 +13758,13 @@ Does include HTML export options as well as TODO and CATEGORY stuff."
        (mapconcat 'identity org-todo-keywords " ")
      "Me Jason Marie DONE")
    (cdr (assoc org-startup-folded
-              '((nil . "nofold")(t . "fold")(content . "content"))))
+              '((nil . "showall") (t . "overview") (content . "content"))))
    (if org-startup-with-deadline-check "dlcheck" "nodlcheck")
+   (if org-odd-levels-only "odd" "oddeven")
+   (if org-hide-leading-stars "hidestars" "showstars")
+   (if org-startup-align-all-tables "align" "noalign")
+   (if org-log-done "logging" "nologging")
+   (if org-tag-alist (mapconcat 'car org-tag-alist " ") "")
    org-archive-location
    ))
 
@@ -10914,52 +13838,75 @@ emacs         --batch
        --visit=MyFile --funcall org-export-as-html-batch"
   (org-export-as-html org-export-headline-levels 'hidden))
 
-(defun org-export-as-html (arg &optional hidden)
+(defun org-export-as-html (arg &optional hidden ext-plist)
   "Export the outline as a pretty HTML file.
 If there is an active region, export only the region.
 The prefix ARG specifies how many levels of the outline should become
-headlines.  The default is 3.  Lower levels will become bulleted lists."
+headlines.  The default is 3.  Lower levels will become bulleted lists.
+When HIDDEN is non-nil, don't display the HTML buffer.
+EXT-PLIST is a property list with external parameters overriding
+org-mode's default settings, but still inferior to file-local settings."
   (interactive "P")
+  (message "Exporting...")
   (setq-default org-todo-line-regexp org-todo-line-regexp)
   (setq-default org-deadline-line-regexp org-deadline-line-regexp)
   (setq-default org-done-string org-done-string)
-  (let* ((style org-export-html-style)
+  (let* ((opt-plist (org-combine-plists (org-default-export-plist)
+                                       ext-plist
+                                       (org-infile-export-plist)))
+
+        (style (plist-get opt-plist :style))
+        (link-validate (plist-get opt-plist :link-validation-function))
+        valid
+        (odd org-odd-levels-only)
         (region-p (org-region-active-p))
          (region
           (buffer-substring
            (if region-p (region-beginning) (point-min))
            (if region-p (region-end) (point-max))))
+        ;; The following two are dynamically scoped into other
+        ;; routines below.
+        (org-current-export-dir (org-export-directory :html opt-plist))
+        (org-current-export-file buffer-file-name)
          (all_lines
           (org-skip-comments (org-split-string
-                             (org-cleaned-string-for-export region)
+                             (org-cleaned-string-for-export
+                              region :emph-multiline 
+                              (if (plist-get opt-plist :LaTeX-fragments)
+                                  :LaTeX-fragments))
                              "[\r\n]")))
          (lines (org-export-find-first-heading-line all_lines))
          (level 0) (line "") (origline "") txt todo
          (umax nil)
-         (filename (concat (file-name-sans-extension buffer-file-name)
-                           ".html"))
+         (filename (concat (file-name-as-directory
+                           (org-export-directory :html opt-plist))
+                          (file-name-sans-extension
+                           (file-name-nondirectory buffer-file-name))
+                          ".html"))
+        (current-dir (file-name-directory buffer-file-name))
          (buffer (find-file-noselect filename))
          (levels-open (make-vector org-level-max nil))
         (date (format-time-string "%Y/%m/%d" (current-time)))
-        (time  (format-time-string "%X" (current-time)))
-         (author      user-full-name)
-        (title       (buffer-name))
-         (options     nil)
-        (quote-re    (concat "^\\*+[ \t]*" org-quote-string "\\>"))
+        (time  (format-time-string "%X" (org-current-time)))
+         (author      (plist-get opt-plist :author))
+        (title       (or (plist-get opt-plist :title)
+                         (file-name-sans-extension
+                          (file-name-nondirectory buffer-file-name))))
+        (quote-re0   (concat "^[ \t]*" org-quote-string "\\>"))
+        (quote-re    (concat "^\\(\\*+\\)\\([ \t]*" org-quote-string "\\>\\)"))
         (inquote     nil)
         (infixed     nil)
         (in-local-list nil)
         (local-list-num nil)
         (local-list-indent nil)
         (llt org-plain-list-ordered-item-terminator)
-        (email       user-mail-address)
-         (language    org-export-default-language)
-        (text        nil)
-         (lang-words  nil)
+        (email       (plist-get opt-plist :email))
+         (language    (plist-get opt-plist :language))
+        (text        (plist-get opt-plist :text))
+        (lang-words  nil)
         (target-alist nil) tg
         (head-count  0) cnt
         (start       0)
-        ;; FIXME: The following returns always nil under XEmacs
         (coding-system (and (fboundp 'coding-system-get)
                             (boundp 'buffer-file-coding-system)
                             buffer-file-coding-system))
@@ -10970,14 +13917,14 @@ headlines.  The default is 3.  Lower levels will become bulleted lists."
         table-open type
         table-buffer table-orig-buffer
         ind start-is-num starter
+        rpl path desc descp desc1 desc2 link
         )
     (message "Exporting...")
 
     (setq org-last-level 1)
     (org-init-section-numbers)
 
-    ;; Search for the export key lines
-    (org-parse-key-lines)
+    ;; Get the language-dependent settings
     (setq lang-words (or (assoc language org-export-language-setup)
                          (assoc "en" org-export-language-setup)))
 
@@ -10987,39 +13934,50 @@ headlines.  The default is 3.  Lower levels will become bulleted lists."
       (switch-to-buffer-other-window buffer))
     (erase-buffer)
     (fundamental-mode)
-    (let ((case-fold-search nil))
-      (if options (org-parse-export-options options))
+    (let ((case-fold-search nil)
+         (org-odd-levels-only odd))
+      ;; create local variables for all options, to make sure all called
+      ;; functions get the correct information
+      (mapcar (lambda (x)
+               (set (make-local-variable (cdr x))
+                    (plist-get opt-plist (car x))))
+             org-export-plist-vars)
       (setq umax (if arg (prefix-numeric-value arg)
                    org-export-headline-levels))
 
       ;; File header
       (insert (format
-               "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\"
- \"http://www.w3.org/TR/REC-html40/loose.dtd\">
-<html lang=\"%s\"><head>
+               "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"
+               \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">
+<html xmlns=\"http://www.w3.org/1999/xhtml\"
+lang=\"%s\" xml:lang=\"%s\">
+<head>
 <title>%s</title>
-<meta http-equiv=\"Content-Type\" content=\"text/html;charset=%s\">
-<meta name=generator content=\"Org-mode\">
-<meta name=generated content=\"%s %s\">
-<meta name=author content=\"%s\">
+<meta http-equiv=\"Content-Type\" content=\"text/html;charset=%s\"/>
+<meta name=\"generator\" content=\"Org-mode\"/>
+<meta name=\"generated\" content=\"%s %s\"/>
+<meta name=\"author\" content=\"%s\"/>
 %s
 </head><body>
 "
-              language (org-html-expand title) (or charset "iso-8859-1")
+              language language (org-html-expand title) (or charset "iso-8859-1")
               date time author style))
-      (if title     (insert (concat "<H1 class=\"title\">"
-                                   (org-html-expand title) "</H1>\n")))
-      (if author    (insert (concat (nth 1 lang-words) ": " author "\n")))
-      (if email          (insert (concat "<a href=\"mailto:" email "\">&lt;"
-                                  email "&gt;</a>\n")))
-      (if (or author email) (insert "<br>\n"))
-      (if (and date time) (insert (concat (nth 2 lang-words) ": "
-                                          date " " time "<br>\n")))
-      (if text      (insert (concat "<p>\n" (org-html-expand text))))
+
+
+      (insert (or (plist-get opt-plist :preamble) ""))
+
+      (when (plist-get opt-plist :auto-preamble)
+       (if title     (insert (format org-export-html-title-format
+                                     (org-html-expand title))))
+       (if text      (insert "<p>\n" (org-html-expand text) "</p>")))
+
       (if org-export-with-toc
          (progn
-           (insert (format "<H2>%s</H2>\n" (nth 3 lang-words)))
-           (insert "<ul>\n")
+           (insert (format "<h%d>%s</h%d>\n"
+                           org-export-html-toplevel-hlevel
+                           (nth 3 lang-words)
+                           org-export-html-toplevel-hlevel))
+           (insert "<ul>\n<li>")
            (setq lines
            (mapcar '(lambda (line)
                       (if (string-match org-todo-line-regexp line)
@@ -11029,13 +13987,16 @@ headlines.  The default is 3.  Lower levels will become bulleted lists."
                                   level (org-tr-level level)
                                   txt (save-match-data
                                         (org-html-expand
-                                         (match-string 3 line)))
+                                         (org-export-cleanup-toc-line
+                                          (match-string 3 line))))
                                   todo
-                                  (or (and (match-beginning 2)
+                                  (or (and org-export-mark-todo-in-toc
+                                           (match-beginning 2)
                                            (not (equal (match-string 2 line)
                                                        org-done-string)))
                                        ; TODO, not DONE
-                                      (and (= level umax)
+                                      (and org-export-mark-todo-in-toc
+                                           (= level umax)
                                            (org-search-todo-below
                                             line lines level))))
                             (if org-export-with-section-numbers
@@ -11048,13 +14009,13 @@ headlines.  The default is 3.  Lower levels will become bulleted lists."
                                       (progn
                                         (setq cnt (- level org-last-level))
                                         (while (>= (setq cnt (1- cnt)) 0)
-                                          (insert "<ul>"))
+                                          (insert "\n<ul>\n<li>"))
                                         (insert "\n")))
                                   (if (< level org-last-level)
                                       (progn
                                         (setq cnt (- org-last-level level))
                                         (while (>= (setq cnt (1- cnt)) 0)
-                                          (insert "</ul>"))
+                                          (insert "</li>\n</ul>"))
                                         (insert "\n")))
                                   ;; Check for targets
                                   (while (string-match org-target-regexp line)
@@ -11070,8 +14031,8 @@ headlines.  The default is 3.  Lower levels will become bulleted lists."
                                   (insert
                                    (format
                                     (if todo
-                                        "<li><a href=\"#sec-%d\"><span class=\"todo\">%s</span></a>\n"
-                                      "<li><a href=\"#sec-%d\">%s</a>\n")
+                                        "</li>\n<li><a href=\"#sec-%d\"><span class=\"todo\">%s</span></a>"
+                                      "</li>\n<li><a href=\"#sec-%d\">%s</a>")
                                     head-count txt))
 
                                   (setq org-last-level level))
@@ -11080,7 +14041,7 @@ headlines.  The default is 3.  Lower levels will become bulleted lists."
                    lines))
            (while (> org-last-level 0)
              (setq org-last-level (1- org-last-level))
-             (insert "</ul>\n"))
+             (insert "</li>\n</ul>\n"))
            ))
       (setq head-count 0)
       (org-init-section-numbers)
@@ -11089,7 +14050,7 @@ headlines.  The default is 3.  Lower levels will become bulleted lists."
        (catch 'nextline
 
          ;; end of quote section?
-         (when (and inquote (string-match "^\\*+" line))
+         (when (and inquote (string-match "^\\*+" line))
            (insert "</pre>\n")
            (setq inquote nil))
          ;; inside a quote section?
@@ -11117,7 +14078,7 @@ headlines.  The default is 3.  Lower levels will become bulleted lists."
            (cond
             ((match-end 2)
              (setq line (replace-match
-                         (concat "@<a name=\"" 
+                         (concat "@<a name=\""
                                  (org-solidify-link-text (match-string 1 line))
                                  "\">\\nbsp@</a>")
                          t t line)))
@@ -11128,96 +14089,108 @@ headlines.  The default is 3.  Lower levels will become bulleted lists."
                          t t line)))
             (t
              (setq line (replace-match
-                         (concat "@<a name=\"" 
+                         (concat "@<a name=\""
                                  (org-solidify-link-text (match-string 1 line))
                                  "\" class=\"target\">" (match-string 1 line) "@</a> ")
-                         t t line)))))       
-         ;; Replace internal links
-         (while (string-match org-bracket-link-regexp line)
-           (setq line (replace-match
-                       (concat
-                           "@<a href=\"#"
-                           (org-solidify-link-text (match-string 1 line) target-alist)
-                           "\">"
-                           (match-string (if (match-end 3) 3 1) line)
-                           "@</a>")
-                       t t line)))
-
-         ;; Protect the external links
-         (setq start 0)
-         (while (string-match org-link-maybe-angles-regexp line start)
-           (setq start (match-end 0))
-           (setq line (replace-match
-                       (concat "\000" (match-string 1 line) "\000")
-                       t t line)))
+                         t t line)))))
+
+         (setq line (org-html-handle-time-stamps line))
 
          ;; replace "&" by "&amp;", "<" and ">" by "&lt;" and "&gt;"
          ;; handle @<..> HTML tags (replace "@&gt;..&lt;" by "<..>")
+         ;; Also handle sub_superscripts and checkboxes
          (setq line (org-html-expand line))
 
          ;; Format the links
          (setq start 0)
-         (while (string-match org-protected-link-regexp line start)
-           (setq start (- (match-end 0) 2))
-           (setq type (match-string 1 line))
+         (while (string-match org-bracket-link-analytic-regexp line start)
+           (setq start (match-beginning 0))
+           (setq type (if (match-end 2) (match-string 2 line) "internal"))
+           (setq path (match-string 3 line))
+           (setq desc1 (if (match-end 5) (match-string 5 line))
+                 desc2 (if (match-end 2) (concat type ":" path) path)
+                 descp (and desc1 (not (equal desc1 desc2)))
+                 desc (or desc1 desc2))
+           ;; FIXME: do we need to unescape here somewhere?
            (cond
+            ((equal type "internal")
+             (setq rpl
+                   (concat
+                    "<a href=\"#"
+                    (org-solidify-link-text path target-alist)
+                    "\">" desc "</a>")))
             ((member type '("http" "https" "ftp" "mailto" "news"))
              ;; standard URL
-             (setq line (replace-match
-                                       ;                          "<a href=\"\\1:\\2\">&lt;\\1:\\2&gt;</a>"
-                         "<a href=\"\\1:\\2\">\\1:\\2</a>"
-                         nil nil line)))
+             (setq link (concat type ":" path))
+             (setq rpl (concat "<a href=\"" link "\">" desc "</a>")))
             ((string= type "file")
              ;; FILE link
-             (let* ((filename (match-string 2 line))
+             (let* ((filename path)
                     (abs-p (file-name-absolute-p filename))
-                    (thefile (if abs-p (expand-file-name filename) filename))
-                    (thefile (save-match-data
-                               (if (string-match ":[0-9]+$" thefile)
-                                   (replace-match "" t t thefile)
-                                 thefile)))
-                    (file-is-image-p
-                     (save-match-data
-                       (string-match (org-image-file-name-regexp) thefile))))
-               (setq line (replace-match
-                           (if (and org-export-html-inline-images
-                                    file-is-image-p)
-                               (concat "<img src=\"" thefile "\"/>")
-                             (concat "<a href=\"" thefile "\">\\1:\\2</a>"))
-                           nil nil line))))
-
-            ((member type '("bbdb" "vm" "wl" "mhe" "rmail" "gnus" "shell"))
-             (setq line (replace-match
-                         "<i>&lt;\\1:\\2&gt;</i>" nil nil line)))))
-
+                    thefile file-is-image-p search)
+               (save-match-data
+                 (if (string-match "::\\(.*\\)" filename)
+                     (setq search (match-string 1 filename)
+                           filename (replace-match "" t nil filename)))
+                 (setq valid
+                       (if (functionp link-validate)
+                           (funcall link-validate filename current-dir)
+                         t))               
+                 (setq file-is-image-p
+                       (string-match (org-image-file-name-regexp) filename))
+                 (setq thefile (if abs-p (expand-file-name filename) filename))
+                 (when (and org-export-html-link-org-files-as-html
+                            (string-match "\\.org$" thefile))
+                   (setq thefile (concat (substring thefile 0
+                                                    (match-beginning 0))
+                                         ".html"))
+                   (if (and search
+                            ;; make sure this is can be used as target search
+                            (not (string-match "^[0-9]*$" search))
+                            (not (string-match "^\\*" search))
+                            (not (string-match "^/.*/$" search)))
+                       (setq thefile (concat thefile "#"
+                                             (org-solidify-link-text
+                                              (org-link-unescape search)))))
+                   (when (string-match "^file:" desc)
+                     (setq desc (replace-match "" t t desc))
+                     (if (string-match "\\.org$" desc)
+                         (setq desc (replace-match "" t t desc))))))
+               (setq rpl (if (and file-is-image-p
+                                  (or (eq t org-export-html-inline-images)
+                                      (and org-export-html-inline-images
+                                           (not descp))))
+                             (concat "<img src=\"" thefile "\"/>")
+                           (concat "<a href=\"" thefile "\">" desc "</a>")))
+               (if (not valid) (setq rpl desc))))
+            ((member type '("bbdb" "vm" "wl" "mhe" "rmail" "gnus" "shell" "info" "elisp"))
+             (setq rpl (concat "<i>&lt;" type ":"
+                               (save-match-data (org-link-unescape path))
+                               "&gt;</i>"))))
+           (setq line (replace-match rpl t t line)
+                 start (+ start (length rpl))))
          ;; TODO items
          (if (and (string-match org-todo-line-regexp line)
                   (match-beginning 2))
              (if (equal (match-string 2 line) org-done-string)
                  (setq line (replace-match
                              "<span class=\"done\">\\2</span>"
-                             nil nil line 2))
+                             t nil line 2))
                (setq line (replace-match "<span class=\"todo\">\\2</span>"
-                                         nil nil line 2))))
+                                         t nil line 2))))
 
-         ;; DEADLINES
-         (if (string-match org-deadline-line-regexp line)
-             (progn
-               (if (save-match-data
-                     (string-match "<a href"
-                                   (substring line 0 (match-beginning 0))))
-                   nil     ; Don't do the replacement - it is inside a link
-                 (setq line (replace-match "<span class=\"deadline\">\\&</span>"
-                                           nil nil line 1)))))
          (cond
           ((string-match "^\\(\\*+\\)[ \t]*\\(.*\\)" line)
            ;; This is a headline
            (setq level (org-tr-level (- (match-end 1) (match-beginning 1)))
                  txt (match-string 2 line))
+           (if (string-match quote-re0 txt)
+               (setq txt (replace-match "" t t txt)))
            (if (<= level umax) (setq head-count (+ head-count 1)))
            (when in-local-list
              ;; Close any local lists before inserting a new header line
              (while local-list-num
+               (org-close-li)
                (insert (if (car local-list-num) "</ol>\n" "</ul>"))
                (pop local-list-num))
              (setq local-list-indent nil
@@ -11244,20 +14217,21 @@ headlines.  The default is 3.  Lower levels will become bulleted lists."
              (setq table-open nil
                    table-buffer (nreverse table-buffer)
                    table-orig-buffer (nreverse table-orig-buffer))
+             (org-close-par-maybe)
              (insert (org-format-table-html table-buffer table-orig-buffer))))
           (t
            ;; Normal lines
-           (when (and (> org-export-plain-list-max-depth 0)
-                      (string-match
-                       (cond
-                        ((eq llt t) "^\\([ \t]*\\)\\(\\([-+*]\\)\\|\\([0-9]+[.)]\\)\\)?\\( +[^ \t\n\r]\\|[ \t]*$\\)")
-                        ((= llt ?.) "^\\([ \t]*\\)\\(\\([-+*]\\)\\|\\([0-9]+\\.\\)\\)?\\( +[^ \t\n\r]\\|[ \t]*$\\)")
-                        ((= llt ?\)) "^\\( \t]*\\)\\(\\([-+*]\\)\\|\\([0-9]+)\\)\\)?\\( +[^ \t\n\r]\\|[ \t]*$\\)")
-                        (t (error "Invalid value of `org-plain-list-ordered-item-terminator'")))
-                       line))
+           (when (string-match
+                  (cond
+                   ((eq llt t) "^\\([ \t]*\\)\\(\\([-+*] \\)\\|\\([0-9]+[.)]\\) \\)?\\( *[^ \t\n\r]\\|[ \t]*$\\)")
+                   ((= llt ?.) "^\\([ \t]*\\)\\(\\([-+*] \\)\\|\\([0-9]+\\.\\) \\)?\\( *[^ \t\n\r]\\|[ \t]*$\\)")
+                   ((= llt ?\)) "^\\( \t]*\\)\\(\\([-+*] \\)\\|\\([0-9]+)\\) \\)?\\( *[^ \t\n\r]\\|[ \t]*$\\)")
+                   (t (error "Invalid value of `org-plain-list-ordered-item-terminator'")))
+                  line)
              (setq ind (org-get-string-indentation line)
                    start-is-num (match-beginning 4)
-                   starter (if (match-beginning 2) (match-string 2 line))
+                   starter (if (match-beginning 2)
+                               (substring (match-string 2 line) 0 -1))
                    line (substring line (match-beginning 5)))
              (unless (string-match "[^ \t]" line)
                ;; empty line.  Pretend indentation is large.
@@ -11266,35 +14240,89 @@ headlines.  The default is 3.  Lower levels will become bulleted lists."
                          (or (and (= ind (car local-list-indent))
                                   (not starter))
                              (< ind (car local-list-indent))))
+               (org-close-li)
                (insert (if (car local-list-num) "</ol>\n" "</ul>"))
                (pop local-list-num) (pop local-list-indent)
                (setq in-local-list local-list-indent))
              (cond
               ((and starter
                     (or (not in-local-list)
-                        (> ind (car local-list-indent)))
-                    (< (length local-list-indent)
-                       org-export-plain-list-max-depth))
+                        (> ind (car local-list-indent))))
                ;; Start new (level of ) list
+               (org-close-par-maybe)
                (insert (if start-is-num "<ol>\n<li>\n" "<ul>\n<li>\n"))
                (push start-is-num local-list-num)
                (push ind local-list-indent)
                (setq in-local-list t))
               (starter
                ;; continue current list
-               (insert "<li>\n"))))
+               (org-close-li)
+               (insert "<li>\n")))
+             (if (string-match "^[ \t]*\\[\\([X ]\\)\\]" line)
+                 (setq line
+                       (replace-match
+                        (if (equal (match-string 1 line) "X")
+                            "<b>[X]</b>"
+                          "<b>[<span style=\"visibility:hidden;\">X</span>]</b>")
+                          t t line))))
+
            ;; Empty lines start a new paragraph.  If hand-formatted lists
            ;; are not fully interpreted, lines starting with "-", "+", "*"
            ;; also start a new paragraph.
-           (if (string-match "^ [-+*]-\\|^[ \t]*$" line) (insert "<p>"))
-           (insert line (if org-export-preserve-breaks "<br>\n" "\n"))))
-         ))
+           (if (string-match "^ [-+*]-\\|^[ \t]*$" line) (org-open-par))
+
+           ;; Check if the line break needs to be conserved
+           (cond
+            ((string-match "\\\\\\\\[ \t]*$" line)
+             (setq line (replace-match "<br/>" t t line)))
+            (org-export-preserve-breaks
+             (setq line (concat line "<br/>"))))
+
+           (insert line "\n")))))
+
+      ;; Properly close all local lists and other lists
+      (when inquote (insert "</pre>\n"))
+      (when in-local-list
+       ;; Close any local lists before inserting a new header line
+       (while local-list-num
+         (org-close-li)
+         (insert (if (car local-list-num) "</ol>\n" "</ul>\n"))
+         (pop local-list-num))
+       (setq local-list-indent nil
+             in-local-list nil))
+      (org-html-level-start 1 nil umax
+                           (and org-export-with-toc (<= level umax))
+                           head-count)
+
+      (when (plist-get opt-plist :auto-postamble)
+       (when author
+         (insert "<p class=\"author\"> "
+                 (nth 1 lang-words) ": " author "\n")
+         (when email
+           (insert "<a href=\"mailto:" email "\">&lt;"
+                   email "&gt;</a>\n"))
+         (insert "</p>\n"))
+       (when (and date time)
+         (insert "<p class=\"date\"> "
+                 (nth 2 lang-words) ": "
+                 date " " time "</p>\n")))
+
       (if org-export-html-with-timestamp
          (insert org-export-html-html-helper-timestamp))
+      (insert (or (plist-get opt-plist :postamble) ""))
       (insert "</body>\n</html>\n")
       (normal-mode)
+      ;; remove empty paragraphs and lists
+      (goto-char (point-min))
+      (while (re-search-forward "<p>[ \r\n\t]*</p>" nil t)
+       (replace-match ""))
+      (goto-char (point-min))
+      (while (re-search-forward "<li>[ \r\n\t]*</li>\n?" nil t)
+       (replace-match ""))
       (save-buffer)
-      (goto-char (point-min)))))
+      (goto-char (point-min))
+      (message "Exporting... done"))))
+
 
 (defun org-format-table-html (lines olines)
   "Find out which HTML converter to use and return the HTML code."
@@ -11396,7 +14424,7 @@ But it has the disadvantage, that no cell- or row-spanning is allowed."
             fields html empty)
     (setq html (concat org-export-html-table-tag "\n"))
     (while (setq line (pop lines))
-      (setq empty "&nbsp")
+      (setq empty "&nbsp;")
       (catch 'next-line
        (if (string-match "^[ \t]*\\+-" line)
            (progn
@@ -11422,7 +14450,7 @@ But it has the disadvantage, that no cell- or row-spanning is allowed."
        (if field-buffer
            (setq field-buffer (mapcar
                                (lambda (x)
-                                 (concat x "<br>" (pop fields)))
+                                 (concat x "<br/>" (pop fields)))
                                field-buffer))
          (setq field-buffer fields))))
     (setq html (concat html "</table>\n"))
@@ -11445,6 +14473,34 @@ But it has the disadvantage, that Org-mode's HTML conversions cannot be used."
     (set-buffer " org-tmp2 ")
     (buffer-substring (point-min) (point-max))))
 
+(defun org-html-handle-time-stamps (s)
+  "Format time stamps in string S, or remove them."
+  (catch 'exit
+    (let (r b)
+      (while (string-match org-maybe-keyword-time-regexp s)
+       ;; FIXME: is it good to never export CLOCK, or do we need control?
+       (if (and (match-end 1) (equal (match-string 1 s) org-clock-string))
+           (throw 'exit ""))
+       (or b (setq b (substring s 0 (match-beginning 0))))
+       (if (not org-export-with-timestamps)
+           (setq r (concat r (substring s 0 (match-beginning 0)))
+                 s (substring s (match-end 0)))
+         (setq r (concat
+                  r (substring s 0 (match-beginning 0))
+                  (if (match-end 1)
+                      (format "@<span class=\"timestamp-kwd\">%s @</span>"
+                              (match-string 1 s)))
+                  (format " @<span class=\"timestamp\">%s@</span>"
+                          (substring (match-string 3 s) 1 -1)))
+               s (substring s (match-end 0)))))
+      ;; Line break if line started and ended with time stamp stuff
+      (if (not r)
+         s
+       (setq r (concat r s))
+       (unless (string-match "\\S-" (concat b s))
+         (setq r (concat r "@<br/>")))
+       r))))
+
 (defun org-html-protect (s)
   ;; convert & to &amp;, < to &lt; and > to &gt;
   (let ((start 0))
@@ -11457,33 +14513,48 @@ But it has the disadvantage, that Org-mode's HTML conversions cannot be used."
       (setq s (replace-match "&gt;" t t s))))
   s)
 
+(defun org-export-cleanup-toc-line (s)
+  "Remove tags and time staps from lines going into the toc."
+  (if (string-match " +:[a-zA-Z0-9_@:]+: *$" s)
+      (setq s (replace-match "" t t s)))
+  (when org-export-remove-timestamps-from-toc
+    (while (string-match org-maybe-keyword-time-regexp s)
+      (setq s (replace-match "" t t s))))
+  s)
+
 (defun org-html-expand (string)
-  "Prepare STRING for HTML export.  Applies all active conversions."
-  ;; First check if there is a link in the line - if yes, apply conversions
-  ;; only before the start of the link.
-  ;; FIXME: This is no longer correct, because links now have an end.
-  (let* ((m (string-match org-link-regexp string))
-        (s (if m (substring string 0 m) string))
-        (r (if m (substring string m) "")))
-    ;; convert & to &amp;, < to &lt; and > to &gt;
-    (setq s (org-html-protect s))
-    (if org-export-html-expand
-       (while (string-match "@&lt;\\([^&]*\\)&gt;" s)
-         (setq s (replace-match "<\\1>" nil nil s))))
-    (if org-export-with-emphasize
-       (setq s (org-export-html-convert-emphasize s)))
-    (if org-export-with-sub-superscripts
-       (setq s (org-export-html-convert-sub-super s)))
-    (if org-export-with-TeX-macros
-       (let ((start 0) wd ass)
-         (while (setq start (string-match "\\\\\\([a-zA-Z]+\\)" s start))
-           (setq wd (match-string 1 s))
-           (if (setq ass (assoc wd org-html-entities))
-               (setq s (replace-match (or (cdr ass)
-                                          (concat "&" (car ass) ";"))
-                                      t t s))
-             (setq start (+ start (length wd)))))))
-    (concat s r)))
+  "Prepare STRING for HTML export.  Applies all active conversions.
+If there are links in the string, don't modify these."
+  (let* (m s l res)
+    (while (setq m (string-match org-bracket-link-regexp string))
+      (setq s (substring string 0 m)
+           l (match-string 0 string)
+           string (substring string (match-end 0)))
+      (push (org-html-do-expand s) res)
+      (push l res))
+    (push (org-html-do-expand string) res)
+    (apply 'concat (nreverse res))))
+
+(defun org-html-do-expand (s)
+  "Apply all active conversions to translate special ASCII to HTML."
+  (setq s (org-html-protect s))
+  (if org-export-html-expand
+      (while (string-match "@&lt;\\([^&]*\\)&gt;" s)
+       (setq s (replace-match "<\\1>" t nil s))))
+  (if org-export-with-emphasize
+      (setq s (org-export-html-convert-emphasize s)))
+  (if org-export-with-sub-superscripts
+      (setq s (org-export-html-convert-sub-super s)))
+  (if org-export-with-TeX-macros
+      (let ((start 0) wd ass)
+       (while (setq start (string-match "\\\\\\([a-zA-Z]+\\)" s start))
+         (setq wd (match-string 1 s))
+         (if (setq ass (assoc wd org-html-entities))
+             (setq s (replace-match (or (cdr ass)
+                                        (concat "&" (car ass) ";"))
+                                    t t s))
+           (setq start (+ start (length wd)))))))
+  s)
 
 (defun org-create-multibrace-regexp (left right n)
   "Create a regular expression which will match a balanced sexp.
@@ -11530,69 +14601,35 @@ stacked delimiters is N.  Escaping delimiters is not possible."
   string)
 
 (defun org-export-html-convert-emphasize (string)
-  (while (string-match
-         "\\(\\s-\\|^\\)\\(\\*\\([a-zA-Z]+\\)\\*\\)\\([^a-zA-Z*]\\|$\\)"
-         string)
-    (setq string (replace-match
-                 (concat "<b>" (match-string 3 string) "</b>")
-                 t t string 2)))
-  (while (string-match
-         "\\(\\s-\\|^\\)\\(/\\([a-zA-Z]+\\)/\\)\\([^a-zA-Z*]\\|$\\)"
-         string)
-    (setq string (replace-match
-                 (concat "<i>" (match-string 3 string) "</i>")
-                 t t string 2)))
-  (while (string-match
-         "\\(\\s-\\|^\\)\\(_\\([a-zA-Z]+\\)_\\)\\([^a-zA-Z*]\\|$\\)"
-         string)
-    (setq string (replace-match
-                 (concat "<u>" (match-string 3 string) "</u>")
-                 t t string 2)))
+  "Apply emphasis."
+  (while (string-match org-emph-re string)
+    (setq string (replace-match (concat "\\1" (nth 2 (assoc (match-string 3 string) org-emphasis-alist)) "\\4" (nth 3 (assoc (match-string 3 string) org-emphasis-alist)) "\\5") t nil string)))
   string)
 
-(defun org-parse-key-lines ()
-  "Find the special key lines with the information for exporters."
-  (save-excursion
-    (goto-char 0)
-    (let ((re (org-make-options-regexp
-              '("TITLE" "AUTHOR" "EMAIL" "TEXT" "OPTIONS" "LANGUAGE")))
-         key)
-      (while (re-search-forward re nil t)
-       (setq key (match-string 1))
-       (cond ((string-equal key "TITLE")
-              (setq title (match-string 2)))
-             ((string-equal key "AUTHOR")
-              (setq author (match-string 2)))
-             ((string-equal key "EMAIL")
-              (setq email (match-string 2)))
-             ((string-equal key "LANGUAGE")
-              (setq language (match-string 2)))
-             ((string-equal key "TEXT")
-              (setq text (concat text "\n" (match-string 2))))
-             ((string-equal key "OPTIONS")
-              (setq options (match-string 2))))))))
-
-(defun org-parse-export-options (s)
-  "Parse the export options line."
-  (let ((op '(("H"     . org-export-headline-levels)
-             ("num"   . org-export-with-section-numbers)
-             ("toc"   . org-export-with-toc)
-             ("\\n"   . org-export-preserve-breaks)
-             ("@"     . org-export-html-expand)
-             (":"     . org-export-with-fixed-width)
-             ("|"     . org-export-with-tables)
-             ("^"     . org-export-with-sub-superscripts)
-             ("*"     . org-export-with-emphasize)
-             ("TeX"   . org-export-with-TeX-macros)))
-       o)
-    (while (setq o (pop op))
-      (if (string-match (concat (regexp-quote (car o)) ":\\([^ \t\n\r;,.]*\\)")
-                       s)
-         (set (make-local-variable (cdr o))
-              (car (read-from-string (match-string 1 s))))))))
+(defvar org-par-open nil)
+(defun org-open-par ()
+  "Insert <p>, but first close previous paragraph if any."
+  (org-close-par-maybe)
+  (insert "\n<p>")
+  (setq org-par-open t))
+(defun org-close-par-maybe ()
+  "Close paragraph if there is one open."
+  (when org-par-open
+    (insert "</p>")
+    (setq org-par-open nil)))
+(defun org-close-li ()
+  "Close <li> if necessary."
+  (org-close-par-maybe)
+  (insert "</li>\n"))
+;  (when (save-excursion
+;        (re-search-backward "</?\\(ul\\|ol\\|li\\|[hH][0-9]\\)>" nil t))
+;    (if (member (match-string 0) '("</ul>" "</ol>" "<li>"))
+;      (insert "</li>"))))
 
 (defun org-html-level-start (level title umax with-toc head-count)
-  "Insert a new level in HTML export."
+  "Insert a new level in HTML export.
+When TITLE is nil, just close all open levels."
+  (org-close-par-maybe)
   (let ((l (1+ (max level umax))))
     (while (<= l org-level-max)
       (if (aref levels-open (1- l))
@@ -11600,22 +14637,42 @@ stacked delimiters is N.  Escaping delimiters is not possible."
            (org-html-level-close l)
            (aset levels-open (1- l) nil)))
       (setq l (1+ l)))
-    (if (> level umax)
-       (progn
-         (if (aref levels-open (1- level))
-             (insert "<li>" title "<p>\n")
-           (aset levels-open (1- level) t)
-           (insert "<ul><li>" title "<p>\n")))
-      (if org-export-with-section-numbers
-         (setq title (concat (org-section-number level) " " title)))
-      (setq level (+ level 1))
-      (if with-toc
-         (insert (format "\n<H%d><a name=\"sec-%d\">%s</a></H%d>\n"
-                         level head-count title level))
-       (insert (format "\n<H%d>%s</H%d>\n" level title level))))))
+    (when title
+      ;; If title is nil, this means this function is called to close
+      ;; all levels, so the rest is done only if title is given
+       (when (string-match "\\(:[a-zA-Z0-9_@:]+:\\)[ \t]*$" title)
+         (setq title (replace-match
+                      (if org-export-with-tags
+                          (save-match-data
+                            (concat
+                             "&nbsp;&nbsp;&nbsp;<span class=\"tag\">"
+                             (mapconcat 'identity (org-split-string
+                                                   (match-string 1 title) ":")
+                                        "&nbsp;")
+                             "</span>"))
+                        "")
+                      t t title)))
+      (if (> level umax)
+         (progn
+           (if (aref levels-open (1- level))
+               (progn
+                 (org-close-li)
+                 (insert "<li>" title "<br/>\n"))
+             (aset levels-open (1- level) t)
+             (org-close-par-maybe)
+             (insert "<ul>\n<li>" title "<br/>\n")))
+       (if org-export-with-section-numbers
+           (setq title (concat (org-section-number level) " " title)))
+       (setq level (+ level org-export-html-toplevel-hlevel -1))
+       (if with-toc
+           (insert (format "\n<h%d><a name=\"sec-%d\">%s</a></h%d>\n"
+                           level head-count title level))
+         (insert (format "\n<h%d>%s</h%d>\n" level title level)))
+       (org-open-par)))))
 
 (defun org-html-level-close (&rest args)
   "Terminate one level in HTML export."
+  (org-close-li)
   (insert "</ul>"))
 
 ;; Variable holding the vector with section numbers
@@ -11659,12 +14716,13 @@ When LEVEL is non-nil, increase section numbers on that level."
       (setq idx (1+ idx)))
     (save-match-data
       (if (string-match "\\`\\([@0]\\.\\)+" string)
-         (setq string (replace-match "" nil nil string)))
+         (setq string (replace-match "" t nil string)))
       (if (string-match "\\(\\.0\\)+\\'" string)
-         (setq string (replace-match "" nil nil string))))
+         (setq string (replace-match "" t nil string))))
     string))
 
 
+;;;###autoload
 (defun org-export-icalendar-this-file ()
   "Export current file as an iCalendar file.
 The iCalendar file will be located in the same directory as the Org-mode
@@ -11672,39 +14730,131 @@ file, but with extension `.ics'."
   (interactive)
   (org-export-icalendar nil buffer-file-name))
 
+(defun org-export-as-xoxo-insert-into (buffer &rest output)
+  (with-current-buffer buffer
+    (apply 'insert output)))
+
+(defun org-export-as-xoxo (&optional buffer)
+  "Export the org buffer as XOXO.
+The XOXO buffer is named *xoxo-<source buffer name>*"
+  (interactive (list (current-buffer)))
+  ;; A quickie abstraction
+
+  ;; Output everything as XOXO
+  (with-current-buffer (get-buffer buffer)
+    (goto-char (point-min))  ;; CD:  beginning-of-buffer is not allowed.
+    (let* ((opt-plist (org-combine-plists (org-default-export-plist)
+                                       (org-infile-export-plist)))
+          (filename (concat (file-name-as-directory
+                             (org-export-directory :xoxo opt-plist))
+                            (file-name-sans-extension
+                             (file-name-nondirectory buffer-file-name))
+                            ".html"))
+          (out (find-file-noselect filename))
+          (last-level 1)
+          (hanging-li nil))
+      ;; Check the output buffer is empty.
+      (with-current-buffer out (erase-buffer))
+      ;; Kick off the output
+      (org-export-as-xoxo-insert-into out "<ol class='xoxo'>\n")
+      (while (re-search-forward "^\\(\\*+\\) \\(.+\\)" (point-max) 't)
+        (let* ((hd (match-string-no-properties 1))
+               (level (length hd))
+               (text (concat
+                      (match-string-no-properties 2)
+                      (save-excursion
+                        (goto-char (match-end 0))
+                        (let ((str ""))
+                          (catch 'loop
+                            (while 't
+                              (forward-line)
+                              (if (looking-at "^[ \t]\\(.*\\)")
+                                  (setq str (concat str (match-string-no-properties 1)))
+                                (throw 'loop str)))))))))
+
+          ;; Handle level rendering
+          (cond
+           ((> level last-level)
+            (org-export-as-xoxo-insert-into out "\n<ol>\n"))
+
+           ((< level last-level)
+            (dotimes (- (- last-level level) 1)
+              (if hanging-li
+                  (org-export-as-xoxo-insert-into out "</li>\n"))
+              (org-export-as-xoxo-insert-into out "</ol>\n"))
+            (when hanging-li
+              (org-export-as-xoxo-insert-into out "</li>\n")
+              (setq hanging-li nil)))
+
+           ((equal level last-level)
+            (if hanging-li
+                (org-export-as-xoxo-insert-into out "</li>\n")))
+           )
+
+          (setq last-level level)
+
+          ;; And output the new li
+          (setq hanging-li 't)
+          (if (equal ?+ (elt text 0))
+              (org-export-as-xoxo-insert-into out "<li class='" (substring text 1) "'>")
+            (org-export-as-xoxo-insert-into out "<li>" text))))
+
+      ;; Finally finish off the ol
+      (dotimes (- last-level 1)
+        (if hanging-li
+            (org-export-as-xoxo-insert-into out "</li>\n"))
+        (org-export-as-xoxo-insert-into out "</ol>\n"))
+
+      ;; Finish the buffer off and clean it up.
+      (switch-to-buffer-other-window out)
+      (indent-region (point-min) (point-max) nil)
+      (save-buffer)
+      (goto-char (point-min))
+      )))
+
 ;;;###autoload
 (defun org-export-icalendar-all-agenda-files ()
   "Export all files in `org-agenda-files' to iCalendar .ics files.
 Each iCalendar file will be located in the same directory as the Org-mode
 file, but with extension `.ics'."
   (interactive)
-  (apply 'org-export-icalendar nil org-agenda-files))
+  (apply 'org-export-icalendar nil (org-agenda-files t)))
 
 ;;;###autoload
 (defun org-export-icalendar-combine-agenda-files ()
   "Export all files in `org-agenda-files' to a single combined iCalendar file.
 The file is stored under the name `org-combined-agenda-icalendar-file'."
   (interactive)
-  (apply 'org-export-icalendar t org-agenda-files))
+  (apply 'org-export-icalendar t (org-agenda-files t)))
 
 (defun org-export-icalendar (combine &rest files)
   "Create iCalendar files for all elements of FILES.
 If COMBINE is non-nil, combine all calendar entries into a single large
 file and store it under the name `org-combined-agenda-icalendar-file'."
   (save-excursion
-    (let* (file ical-file ical-buffer category started org-agenda-new-buffers)
+    (let* ((dir (org-export-directory
+                :ical (list :publishing-directory
+                            org-export-publishing-directory)))
+          file ical-file ical-buffer category started org-agenda-new-buffers)
+
       (when combine
-       (setq ical-file org-combined-agenda-icalendar-file
+       (setq ical-file
+             (if (file-name-absolute-p org-combined-agenda-icalendar-file)
+                 org-combined-agenda-icalendar-file
+               (expand-file-name org-combined-agenda-icalendar-file dir))
              ical-buffer (org-get-agenda-file-buffer ical-file))
        (set-buffer ical-buffer) (erase-buffer))
       (while (setq file (pop files))
        (catch 'nextfile
          (org-check-agenda-file file)
+         (set-buffer (org-get-agenda-file-buffer file))
          (unless combine
-           (setq ical-file (concat (file-name-sans-extension file) ".ics"))
+           (setq ical-file (concat (file-name-as-directory dir)
+                                   (file-name-sans-extension
+                                    (file-name-nondirectory buffer-file-name))
+                                   ".ics"))
            (setq ical-buffer (org-get-agenda-file-buffer ical-file))
-           (set-buffer ical-buffer) (erase-buffer))
-         (set-buffer (org-get-agenda-file-buffer file))
+           (with-current-buffer ical-buffer (erase-buffer)))
          (setq category (or org-category
                             (file-name-sans-extension
                              (file-name-nondirectory buffer-file-name))))
@@ -11827,6 +14977,293 @@ a time), or the day by one (if it does not contain a time)."
     (setq fmt (if have-time ":%Y%m%dT%H%M%S" ";VALUE=DATE:%Y%m%d"))
     (concat keyword (format-time-string fmt time))))
 
+;;; LaTeX stuff
+
+(defvar org-cdlatex-mode-map (make-sparse-keymap)
+  "Keymap for the minor `org-cdlatex-mode'.")
+
+(define-key org-cdlatex-mode-map "_" 'org-cdlatex-underscore-caret)
+(define-key org-cdlatex-mode-map "^" 'org-cdlatex-underscore-caret)
+(define-key org-cdlatex-mode-map "`" 'cdlatex-math-symbol)
+(define-key org-cdlatex-mode-map "'" 'org-cdlatex-math-modify)
+(define-key org-cdlatex-mode-map "\C-c{" 'cdlatex-environment)
+
+(defvar org-cdlatex-texmathp-advice-is-done nil
+  "Flag remembering if we have applied the advice to texmathp already.")
+
+(define-minor-mode org-cdlatex-mode 
+  "Toggle the minor `org-cdlatex-mode'.
+This mode supports entering LaTeX environment and math in LaTeX fragments
+in Org-mode.
+\\{org-cdlatex-mode-map}"
+  nil " OCDL" nil
+  (when org-cdlatex-mode (require 'cdlatex))
+  (unless org-cdlatex-texmathp-advice-is-done
+    (setq org-cdlatex-texmathp-advice-is-done t)
+    (defadvice texmathp (around org-math-always-on activate)
+      "Always return t in org-mode buffers.
+This is because we want to insert math symbols without dollars even outside
+the LaTeX math segments.  If Orgmode thinks that point is actually inside
+en embedded LaTeX fragement, let texmathp do its job.
+\\[org-cdlatex-mode-map]"
+      (interactive)
+      (let (p)
+       (cond
+        ((not (org-mode-p)) ad-do-it)
+        ((eq this-command 'cdlatex-math-symbol)
+         (setq ad-return-value t
+               texmathp-why '("cdlatex-math-symbol in org-mode" . 0)))
+        (t
+         (let ((p (org-inside-LaTeX-fragment-p)))
+           (if (and p (member (car p) (plist-get org-format-latex-options :matchers)))
+               (setq ad-return-value t
+                     texmathp-why '("Org-mode embedded math" . 0))
+             (if p ad-do-it)))))))))
+
+(defun turn-on-org-cdlatex ()
+  "Unconditionally turn on `org-cdlatex-mode'."
+  (org-cdlatex-mode 1))
+
+(defun org-inside-LaTeX-fragment-p ()
+  "Test if point is inside a LaTeX fragment.
+I.e. after a \\begin, \\(, \\[, $, or $$, without the corresponding closing
+sequence appearing also before point.
+Even though the matchers for math are configurable, this function assumes
+that \\begin, \\(, \\[, and $$ are always used.  Only the single dollar
+delimiters are skipped when they have been removed by customization.
+The return value is nil, or a cons cell with the delimiter and
+and the position of this delimiter.
+
+This function does a reasonably good job, but can locally be fooled by
+for example currency specifications.  For example it will assume being in
+inline math after \"$22.34\".  The LaTeX fragment formatter will only format
+fragments that are properly closed, but during editing, we have to live
+with the uncertainty caused by missing closing delimiters.  This function
+looks only before point, not after."
+  (catch 'exit
+    (let ((pos (point))
+         (dodollar (member "$" (plist-get org-format-latex-options :matchers)))
+         (lim (progn
+                (re-search-backward (concat "^\\(" paragraph-start "\\)") nil t)
+                (point)))
+         dd-on str (start 0) m re)
+      (goto-char pos)
+      (when dodollar
+       (setq str (concat (buffer-substring lim (point)) "\000 X$.")
+             re (nth 1 (assoc "$" org-latex-regexps)))
+       (while (string-match re str start)
+         (cond
+          ((= (match-end 0) (length str))
+           (throw 'exit (cons "$" (+ lim (match-beginning 0)))))
+          ((= (match-end 0) (- (length str) 5))
+           (throw 'exit nil))
+          (t (setq start (match-end 0))))))
+      (when (setq m (re-search-backward "\\(\\\\begin{[^}]*}\\|\\\\(\\|\\\\\\[\\)\\|\\(\\\\end{[^}]*}\\|\\\\)\\|\\\\\\]\\)\\|\\(\\$\\$\\)" lim t))
+       (goto-char pos)
+       (and (match-beginning 1) (throw 'exit (cons (match-string 1) m)))
+       (and (match-beginning 2) (throw 'exit nil))
+       ;; count $$
+       (while (re-search-backward "\\$\\$" lim t)
+         (setq dd-on (not dd-on)))
+       (goto-char pos)
+       (if dd-on (cons "$$" m))))))
+
+
+(defun org-try-cdlatex-tab ()
+  "Check if it makes sense to execute `cdlatex-tab', and do it if yes.
+It makes sense to do so if `org-cdlatex-mode' is active and if the cursor is
+  - inside a LaTeX fragment, or
+  - after the first word in a line, where an abbreviation expansion could
+    insert a LaTeX environment."
+  ;; FIXME:  This may still need refinement.
+  (when org-cdlatex-mode
+    (cond
+     ((save-excursion
+       (skip-chars-backward "a-zA-Z0-9*")
+       (skip-chars-backward " \t")
+       (bolp))
+      (cdlatex-tab) t)
+     ((org-inside-LaTeX-fragment-p)
+      (cdlatex-tab) t)
+     (t nil))))
+
+(defun org-cdlatex-underscore-caret (&optional arg)
+  "Execute `cdlatex-sub-superscript' in LaTeX fragments.
+Revert to the normal definition outside of these fragments."
+  (interactive "P")
+  (if (org-inside-LaTeX-fragment-p)
+      (call-interactively 'cdlatex-sub-superscript)
+    (let (org-cdlatex-mode)
+      (call-interactively (key-binding (vector last-input-event))))))
+
+(defun org-cdlatex-math-modify (&optional arg)
+  "Execute `cdlatex-math-modify' in LaTeX fragments.
+Revert to the normal definition outside of these fragments."
+  (interactive "P")
+  (if (org-inside-LaTeX-fragment-p)
+      (call-interactively 'cdlatex-math-modify)
+    (let (org-cdlatex-mode)
+      (call-interactively (key-binding (vector last-input-event))))))
+
+(defvar org-latex-fragment-image-overlays nil
+  "List of overlays carrying the images of latex fragments.")
+(make-variable-buffer-local 'org-latex-fragment-image-overlays)
+
+(defun org-remove-latex-fragment-image-overlays ()
+  "Remove all overlays with LaTeX fragment images in current buffer."
+  (mapc 'org-delete-overlay org-latex-fragment-image-overlays)
+  (setq org-latex-fragment-image-overlays nil))
+
+(defun org-preview-latex-fragment (&optional subtree)
+  "Preview the LaTeX fragment at point, or all locally or globally.
+If the cursor is in a LaTeX fragment, create the image and overlay
+it over the source code.  If there is no fragment at point, display
+all fragments in the current text, from one headline to the next.  With
+prefix SUBTREE, display all fragments in the current subtree.  With a 
+double prefix `C-u C-u', or when the cursor is before the first headline,
+display all fragments in the buffer.
+The images can be removed again with \\[org-ctrl-c-ctrl-c]."
+  (interactive "P")
+  (org-remove-latex-fragment-image-overlays)
+  (save-excursion
+    (save-restriction
+      (let (beg end at msg)
+       (cond
+        ((or (equal subtree '(16))
+             (not (save-excursion
+                    (re-search-backward (concat "^" outline-regexp) nil t))))
+         (setq beg (point-min) end (point-max)
+               msg "Creating images for buffer...%s"))
+        ((equal subtree '(4))
+         (org-back-to-heading)
+         (setq beg (point) end (org-end-of-subtree)
+               msg "Creating images for subtree...%s"))
+        (t
+         (if (setq at (org-inside-LaTeX-fragment-p))
+             (goto-char (max (point-min) (- (cdr at) 2)))
+           (org-back-to-heading))
+         (setq beg (point) end (progn (outline-next-heading) (point))
+               msg (if at "Creating image...%s"
+                     "Creating images for entry...%s"))))
+       (message msg "")
+       (narrow-to-region beg end)
+       (org-format-latex
+        (concat "ltxpng/" (file-name-sans-extension
+                           (file-name-nondirectory
+                            buffer-file-name)))
+        default-directory 'overlays msg at)
+      (message msg "done.  Use `C-c C-c' to remove images.")))))
+
+(defvar org-latex-regexps
+  '(("begin" "^[ \t]*\\(\\\\begin{\\([a-zA-Z0-9\\*]+\\)[^\000]+?\\\\end{\\2}\\)" 1 t)
+    ;; ("$" "\\([      (]\\|^\\)\\(\\(\\([$]\\)\\([^   \r\n,.$].*?\\(\n.*?\\)\\{0,5\\}[^       \r\n,.$]\\)\\4\\)\\)\\([        .,?;:'\")]\\|$\\)" 2 nil)
+    ;; \000 in the following regex is needed for org-inside-LaTeX-fragment-p
+    ("$" "\\([^$]\\)\\(\\(\\$\\([^     \r\n,;.$][^$\n\r]*?\\(\n[^$\n\r]*?\\)\\{0,2\\}[^        \r\n,.$]\\)\\$\\)\\)\\([        .,?;:'\")\000]\\|$\\)" 2 nil)
+    ("\\(" "\\\\([^\000]*?\\\\)" 0 nil)
+    ("\\[" "\\\\\\[[^\000]*?\\\\\\]" 0 t)
+    ("$$" "\\$\\$[^\000]*?\\$\\$" 0 t))
+  "Regular expressions for matching embedded LaTeX.")
+
+(defun org-format-latex (prefix &optional dir overlays msg at)
+  "Replace LaTeX fragments with links to an image, and produce images."
+  (if (and overlays (fboundp 'clear-image-cache)) (clear-image-cache))
+  (let* ((prefixnodir (file-name-nondirectory prefix))
+        (absprefix (expand-file-name prefix dir))
+        (todir (file-name-directory absprefix))
+        (opt org-format-latex-options)
+        (matchers (plist-get opt :matchers))
+        (re-list org-latex-regexps)
+        (cnt 0) txt link beg end re e oldfiles
+        m n block linkfile movefile ov)
+    ;; Make sure the directory exists
+    (or (file-directory-p todir) (make-directory todir))
+    ;; Check if there are old images files with this prefix, and remove them
+    (setq oldfiles (directory-files
+                   todir 'full
+                   (concat (regexp-quote prefixnodir) "_[0-9]+\\.png$")))
+    (while oldfiles (delete-file (pop oldfiles)))
+    ;; Check the different regular expressions
+    (while (setq e (pop re-list))
+      (setq m (car e) re (nth 1 e) n (nth 2 e)
+           block (if (nth 3 e) "\n\n" ""))
+      (when (member m matchers)
+       (goto-char (point-min))
+       (while (re-search-forward re nil t)
+         (when (or (not at) (equal (cdr at) (match-beginning n)))
+           (setq txt (match-string n)
+                 beg (match-beginning n) end (match-end n)
+                 cnt (1+ cnt)
+                 linkfile (format "%s_%04d.png" prefix cnt)
+                 movefile (format "%s_%04d.png" absprefix cnt)
+                 link (concat block "[[file:" linkfile "]]" block))
+           (if msg (message msg cnt))
+           (goto-char beg)
+           (org-create-formula-image
+            txt movefile opt)
+           (if overlays
+               (progn
+                 (setq ov (org-make-overlay beg end))
+                 (if (featurep 'xemacs)
+                     (progn
+                       (org-overlay-put ov 'invisible t)
+                       (org-overlay-put
+                        ov 'end-glyph 
+                        (make-glyph (vector 'png :file movefile))))
+                   (org-overlay-put 
+                    ov 'display 
+                    (list 'image :type 'png :file movefile :ascent 'center)))
+                 (push ov org-latex-fragment-image-overlays)
+                 (goto-char end))
+             (delete-region beg end)
+             (insert link))))))))
+    
+;; This function borrows from Ganesh Swami's latex2png.el
+(defun org-create-formula-image (string tofile options)
+  (let* ((tmpdir (if (featurep 'xemacs)
+                    (temp-directory)
+                  temporary-file-directory))
+        (texfilebase (make-temp-name
+                      (expand-file-name "orgtex" tmpdir)))
+
+;(texfilebase (make-temp-file "orgtex"))
+;       (dummy (delete-file texfilebase))
+        (texfile (concat texfilebase ".tex"))
+        (dvifile (concat texfilebase ".dvi"))
+        (pngfile (concat texfilebase ".png"))
+        (scale (number-to-string (* 1000 (or (plist-get options :scale) 1.0))))
+        (fg (or (plist-get options :foreground) "Black"))
+        (bg (or (plist-get options :background) "Transparent")))
+    (with-temp-file texfile
+      (insert "\\documentclass{article}
+\\usepackage{fullpage}
+\\usepackage{amssymb}
+\\usepackage[usenames]{color}
+\\usepackage{amsmath}
+\\usepackage{latexsym}
+\\usepackage[mathscr]{eucal}
+\\pagestyle{empty}
+\\begin{document}\n" string "\n\\end{document}\n"))
+    (let ((dir default-directory))
+      (condition-case nil
+         (progn
+           (cd tmpdir)
+           (call-process "latex" nil nil nil texfile))
+       (error nil))
+      (cd dir))
+    (if (not (file-exists-p dvifile))
+       (progn (message "Failed to create dvi file from %s" texfile) nil)
+      (call-process "dvipng" nil nil nil
+                   "-E" "-fg" fg "-bg" bg
+                   "-x" scale "-y" scale "-T" "tight"
+                   "-o" pngfile
+                   dvifile)
+      (if (not (file-exists-p pngfile))
+         (progn (message "Failed to create png file from %s" texfile) nil)
+       ;; Use the requested file name and clean up
+       (copy-file pngfile tofile 'replace)
+       (loop for e in '(".dvi" ".tex" ".aux" ".log" ".png") do
+             (delete-file (concat texfilebase e)))
+       pngfile))))
 
 ;;; Key bindings
 
@@ -11842,10 +15279,11 @@ a time), or the day by one (if it does not contain a time)."
 
 ;; TAB key with modifiers
 (define-key org-mode-map "\C-i"       'org-cycle)
+(define-key org-mode-map [(tab)]      'org-cycle)
 (define-key org-mode-map [(meta tab)] 'org-complete)
 (define-key org-mode-map "\M-\C-i"    'org-complete)            ; for tty emacs
 ;; The following line is necessary under Suse GNU/Linux
-(unless org-xemacs-p
+(unless (featurep 'xemacs)
   (define-key org-mode-map [S-iso-lefttab]  'org-shifttab))
 (define-key org-mode-map [(shift tab)]    'org-shifttab)
 
@@ -11889,7 +15327,11 @@ a time), or the day by one (if it does not contain a time)."
 (define-key org-mode-map [?\C-c ?\C-x (right)] 'org-shiftright)
 
 ;; All the other keys
+
+(define-key org-mode-map "\C-c\C-a" 'show-all)  ; in case allout messed up.
+(define-key org-mode-map "\C-xns" 'org-narrow-to-subtree)
 (define-key org-mode-map "\C-c$"    'org-archive-subtree)
+(define-key org-mode-map "\C-c\C-x\C-a" 'org-toggle-archive-tag)
 (define-key org-mode-map "\C-c\C-j" 'org-goto)
 (define-key org-mode-map "\C-c\C-t" 'org-todo)
 (define-key org-mode-map "\C-c\C-s" 'org-schedule)
@@ -11923,35 +15365,34 @@ a time), or the day by one (if it does not contain a time)."
 (define-key org-mode-map "\C-c?"          'org-table-current-column)
 (define-key org-mode-map "\C-c "          'org-table-blank-field)
 (define-key org-mode-map "\C-c+"          'org-table-sum)
-(define-key org-mode-map "\C-c|"          'org-table-toggle-vline-visibility)
 (define-key org-mode-map "\C-c="          'org-table-eval-formula)
 (define-key org-mode-map "\C-c'"          'org-table-edit-formulas)
+(define-key org-mode-map "\C-c`"          'org-table-edit-field)
+(define-key org-mode-map "\C-c|"          'org-table-create-or-convert-from-region)
 (define-key org-mode-map "\C-c*"          'org-table-recalculate)
 (define-key org-mode-map [(control ?#)]   'org-table-rotate-recalc-marks)
 (define-key org-mode-map "\C-c~"          'org-table-create-with-table.el)
 (define-key org-mode-map "\C-c\C-q"       'org-table-wrap-region)
-(define-key org-mode-map "\C-c\C-xa"      'org-export-as-ascii)
-(define-key org-mode-map "\C-c\C-x\C-a"   'org-export-as-ascii)
-(define-key org-mode-map "\C-c\C-xv"      'org-export-copy-visible)
-(define-key org-mode-map "\C-c\C-x\C-v"   'org-export-copy-visible)
-;; OPML support is only an option for the future
-;(define-key org-mode-map "\C-c\C-xo"      'org-export-as-opml)
-;(define-key org-mode-map "\C-c\C-x\C-o"   'org-export-as-opml)
-(define-key org-mode-map "\C-c\C-xi"      'org-export-icalendar-this-file)
-(define-key org-mode-map "\C-c\C-x\C-i"   'org-export-icalendar-all-agenda-files)
-(define-key org-mode-map "\C-c\C-xc"      'org-export-icalendar-combine-agenda-files)
-(define-key org-mode-map "\C-c\C-x\C-c"   'org-export-icalendar-combine-agenda-files)
-(define-key org-mode-map "\C-c\C-xt"      'org-insert-export-options-template)
+(define-key org-mode-map "\C-c\C-e"       'org-export)
 (define-key org-mode-map "\C-c:"          'org-toggle-fixed-width-section)
-(define-key org-mode-map "\C-c\C-xh"      'org-export-as-html)
-(define-key org-mode-map "\C-c\C-xb"      'org-export-as-html-and-open)
-(define-key org-mode-map "\C-c\C-x\C-b"   'org-export-as-html-and-open)
 
 (define-key org-mode-map "\C-c\C-x\C-k"   'org-cut-special)
 (define-key org-mode-map "\C-c\C-x\C-w"   'org-cut-special)
 (define-key org-mode-map "\C-c\C-x\M-w"   'org-copy-special)
 (define-key org-mode-map "\C-c\C-x\C-y"   'org-paste-special)
 
+(define-key org-mode-map "\C-c\C-x\C-i" 'org-clock-in)
+(define-key org-mode-map "\C-c\C-x\C-o" 'org-clock-out)
+(define-key org-mode-map "\C-c\C-x\C-x" 'org-clock-cancel)
+(define-key org-mode-map "\C-c\C-x\C-d" 'org-clock-display)
+(define-key org-mode-map "\C-c\C-x\C-r" 'org-clock-report)
+(define-key org-mode-map "\C-c\C-x\C-u" 'org-dblock-update)
+(define-key org-mode-map "\C-c\C-x\C-l" 'org-preview-latex-fragment)
+(define-key org-mode-map "\C-c\C-x\C-b" 'org-toggle-checkbox)
+
+(when (featurep 'xemacs)
+  (define-key org-mode-map 'button3   'popup-mode-menu))
+
 (defsubst org-table-p () (org-at-table-p))
 
 (defun org-self-insert-command (N)
@@ -11960,14 +15401,19 @@ If the cursor is in a table looking at whitespace, the whitespace is
 overwritten, and the table is not marked as requiring realignment."
   (interactive "p")
   (if (and (org-table-p)
-          (or
-           (and org-table-auto-blank-field
-                (member last-command
-                        '(org-cycle org-return org-shifttab org-ctrl-c-ctrl-c))
-                (org-table-blank-field))
-           t)
+          (progn
+            ;; check if we blank the field, and if that triggers align
+            (and org-table-auto-blank-field
+                 (member last-command
+                         '(org-cycle org-return org-shifttab org-ctrl-c-ctrl-c))
+                 (if (or (equal (char-after) ?\ ) (looking-at "[^|\n]*  |"))
+                     ;; got extra space, this field does not determine column width
+                     (let (org-table-may-need-update) (org-table-blank-field))
+                   ;; no extra space, this field may determine column width
+                   (org-table-blank-field)))
+            t)
           (eq N 1)
-          (looking-at "[^|\n]*  +|"))
+          (looking-at "[^|\n]*  |"))
       (let (org-table-may-need-update)
        (goto-char (1- (match-end 0)))
        (delete-backward-char 1)
@@ -11976,45 +15422,52 @@ overwritten, and the table is not marked as requiring realignment."
     (setq org-table-may-need-update t)
     (self-insert-command N)))
 
-;; FIXME:
-;; The following two functions might still be optimized to trigger
-;; re-alignment less frequently.
-
 (defun org-delete-backward-char (N)
   "Like `delete-backward-char', insert whitespace at field end in tables.
 When deleting backwards, in tables this function will insert whitespace in
 front of the next \"|\" separator, to keep the table aligned.  The table will
-still be marked for re-alignment, because a narrow field may lead to a
-reduced column width."
+still be marked for re-alignment if the field did fill the entire column,
+because, in this case the deletion might narrow the column."
   (interactive "p")
   (if (and (org-table-p)
           (eq N 1)
           (string-match "|" (buffer-substring (point-at-bol) (point)))
           (looking-at ".*?|"))
-      (let ((pos (point)))
+      (let ((pos (point))
+           (noalign (looking-at "[^|\n\r]*  |"))
+           (c org-table-may-need-update))
        (backward-delete-char N)
        (skip-chars-forward "^|")
        (insert " ")
-       (goto-char (1- pos)))
+       (goto-char (1- pos))
+       ;; noalign: if there were two spaces at the end, this field
+       ;; does not determine the width of the column.
+       (if noalign (setq org-table-may-need-update c)))
     (backward-delete-char N)))
 
 (defun org-delete-char (N)
   "Like `delete-char', but insert whitespace at field end in tables.
 When deleting characters, in tables this function will insert whitespace in
-front of the next \"|\" separator, to keep the table aligned.  The table
-will still be marked for re-alignment, because a narrow field may lead to
-a reduced column width."
+front of the next \"|\" separator, to keep the table aligned.  The table will
+still be marked for re-alignment if the field did fill the entire column,
+because, in this case the deletion might narrow the column."
   (interactive "p")
   (if (and (org-table-p)
           (not (bolp))
           (not (= (char-after) ?|))
           (eq N 1))
       (if (looking-at ".*?|")
-         (let ((pos (point)))
+         (let ((pos (point))
+               (noalign (looking-at "[^|\n\r]*  |"))
+               (c org-table-may-need-update))
            (replace-match (concat
                            (substring (match-string 0) 1 -1)
                            " |"))
-           (goto-char pos)))
+           (goto-char pos)
+           ;; noalign: if there were two spaces at the end, this field
+           ;; does not determine the width of the column.
+           (if noalign (setq org-table-may-need-update c)))
+       (delete-char N))
     (delete-char N)))
 
 ;; How to do this: Measure non-white length of current string
@@ -12043,14 +15496,15 @@ COMMANDS is a list of alternating OLDDEF NEWDEF command names."
   "Throw an error because Shift-Cursor command was applied in wrong context."
   (error "This command is active in special context like tables, headlines or timestamps"))
 
-(defun org-shifttab ()
+(defun org-shifttab (&optional arg)
   "Global visibility cycling or move to previous table field.
-Calls `(org-cycle t)' or `org-table-previous-field', depending on context.
+Calls `org-cycle' with argument t, or `org-table-previous-field', depending
+on context.
 See the individual commands for more information."
-  (interactive)
+  (interactive "P")
   (cond
-   ((org-at-table-p) (org-table-previous-field))
-   (t (org-cycle '(4)))))
+   ((org-at-table-p) (call-interactively 'org-table-previous-field))
+   (t (call-interactively 'org-global-cycle))))
 
 (defun org-shiftmetaleft ()
   "Promote subtree or delete table column.
@@ -12058,8 +15512,8 @@ Calls `org-promote-subtree' or `org-table-delete-column', depending on context.
 See the individual commands for more information."
   (interactive)
   (cond
-   ((org-at-table-p) (org-table-delete-column))
-   ((org-on-heading-p) (org-promote-subtree))
+   ((org-at-table-p) (call-interactively 'org-table-delete-column))
+   ((org-on-heading-p) (call-interactively 'org-promote-subtree))
    ((org-at-item-p) (call-interactively 'org-outdent-item))
    (t (org-shiftcursor-error))))
 
@@ -12069,8 +15523,8 @@ Calls `org-demote-subtree' or `org-table-insert-column', depending on context.
 See the individual commands for more information."
   (interactive)
   (cond
-   ((org-at-table-p) (org-table-insert-column))
-   ((org-on-heading-p) (org-demote-subtree))
+   ((org-at-table-p) (call-interactively 'org-table-insert-column))
+   ((org-on-heading-p) (call-interactively 'org-demote-subtree))
    ((org-at-item-p) (call-interactively 'org-indent-item))
    (t (org-shiftcursor-error))))
 
@@ -12081,9 +15535,9 @@ Calls `org-move-subtree-up' or `org-table-kill-row' or
 for more information."
   (interactive "P")
   (cond
-   ((org-at-table-p) (org-table-kill-row))
-   ((org-on-heading-p) (org-move-subtree-up arg))
-   ((org-at-item-p) (org-move-item-up arg))
+   ((org-at-table-p) (call-interactively 'org-table-kill-row))
+   ((org-on-heading-p) (call-interactively 'org-move-subtree-up))
+   ((org-at-item-p) (call-interactively 'org-move-item-up))
    (t (org-shiftcursor-error))))
 (defun org-shiftmetadown (&optional arg)
   "Move subtree down or insert table row.
@@ -12092,9 +15546,9 @@ Calls `org-move-subtree-down' or `org-table-insert-row' or
 commands for more information."
   (interactive "P")
   (cond
-   ((org-at-table-p) (org-table-insert-row arg))
-   ((org-on-heading-p) (org-move-subtree-down arg))
-   ((org-at-item-p) (org-move-item-down arg))
+   ((org-at-table-p) (call-interactively 'org-table-insert-row))
+   ((org-on-heading-p) (call-interactively 'org-move-subtree-down))
+   ((org-at-item-p) (call-interactively 'org-move-item-down))
    (t (org-shiftcursor-error))))
 
 (defun org-metaleft (&optional arg)
@@ -12104,9 +15558,10 @@ With no specific context, calls the Emacs default `backward-word'.
 See the individual commands for more information."
   (interactive "P")
   (cond
-   ((org-at-table-p) (org-table-move-column 'left))
-   ((or (org-on-heading-p) (org-region-active-p)) (org-do-promote))
-   (t (backward-word (prefix-numeric-value arg)))))
+   ((org-at-table-p) (org-call-with-arg 'org-table-move-column 'left))
+   ((or (org-on-heading-p) (org-region-active-p))
+    (call-interactively 'org-do-promote))
+   (t (call-interactively 'backward-word))))
 
 (defun org-metaright (&optional arg)
   "Demote subtree or move table column to right.
@@ -12115,9 +15570,10 @@ With no specific context, calls the Emacs default `forward-word'.
 See the individual commands for more information."
   (interactive "P")
   (cond
-   ((org-at-table-p) (org-table-move-column nil))
-   ((or (org-on-heading-p) (org-region-active-p)) (org-do-demote))
-   (t (forward-word (prefix-numeric-value arg)))))
+   ((org-at-table-p) (call-interactively 'org-table-move-column))
+   ((or (org-on-heading-p) (org-region-active-p))
+    (call-interactively 'org-do-demote))
+   (t (call-interactively 'forward-word))))
 
 (defun org-metaup (&optional arg)
   "Move subtree up or move table row up.
@@ -12126,9 +15582,9 @@ Calls `org-move-subtree-up' or `org-table-move-row' or
 for more information."
   (interactive "P")
   (cond
-   ((org-at-table-p) (org-table-move-row 'up))
-   ((org-on-heading-p) (org-move-subtree-up arg))
-   ((org-at-item-p) (org-move-item-up arg))
+   ((org-at-table-p) (org-call-with-arg 'org-table-move-row 'up))
+   ((org-on-heading-p) (call-interactively 'org-move-subtree-up))
+   ((org-at-item-p) (call-interactively 'org-move-item-up))
    (t (org-shiftcursor-error))))
 
 (defun org-metadown (&optional arg)
@@ -12138,43 +15594,46 @@ Calls `org-move-subtree-down' or `org-table-move-row' or
 commands for more information."
   (interactive "P")
   (cond
-   ((org-at-table-p) (org-table-move-row nil))
-   ((org-on-heading-p) (org-move-subtree-down arg))
-   ((org-at-item-p) (org-move-item-down arg))
+   ((org-at-table-p) (call-interactively 'org-table-move-row))
+   ((org-on-heading-p) (call-interactively 'org-move-subtree-down))
+   ((org-at-item-p) (call-interactively 'org-move-item-down))
    (t (org-shiftcursor-error))))
 
 (defun org-shiftup (&optional arg)
-  "Increase item in timestamp or increase priority of current item.
+  "Increase item in timestamp or increase priority of current headline.
 Calls `org-timestamp-up' or `org-priority-up', depending on context.
 See the individual commands for more information."
   (interactive "P")
   (cond
-   ((org-at-timestamp-p) (org-timestamp-up arg))
-   (t (org-priority-up))))
+   ((org-at-timestamp-p t) (call-interactively 'org-timestamp-up))
+   ((org-on-heading-p) (call-interactively 'org-priority-up))
+   ((org-at-item-p) (call-interactively 'org-previous-item))
+   (t (call-interactively 'org-beginning-of-item) (beginning-of-line 1))))
 
 (defun org-shiftdown (&optional arg)
-  "Decrease item in timestamp or decrease priority of current item.
+  "Decrease item in timestamp or decrease priority of current headline.
 Calls `org-timestamp-down' or `org-priority-down', depending on context.
 See the individual commands for more information."
   (interactive "P")
   (cond
-   ((org-at-timestamp-p) (org-timestamp-down arg))
-   (t (org-priority-down))))
+   ((org-at-timestamp-p t) (call-interactively 'org-timestamp-down))
+   ((org-on-heading-p) (call-interactively 'org-priority-down))
+   (t (call-interactively 'org-next-item))))
 
 (defun org-shiftright ()
   "Next TODO keyword or timestamp one day later, depending on context."
   (interactive)
   (cond
-   ((org-at-timestamp-p) (org-timestamp-up-day))
-   ((org-on-heading-p) (org-todo 'right))
+   ((org-at-timestamp-p t) (call-interactively 'org-timestamp-up-day))
+   ((org-on-heading-p) (org-call-with-arg 'org-todo 'right))
    (t (org-shiftcursor-error))))
 
 (defun org-shiftleft ()
   "Previous TODO keyword or timestamp one day earlier, depending on context."
   (interactive)
   (cond
-   ((org-at-timestamp-p) (org-timestamp-down-day))
-   ((org-on-heading-p) (org-todo 'left))
+   ((org-at-timestamp-p t) (call-interactively 'org-timestamp-down-day))
+   ((org-on-heading-p) (org-call-with-arg 'org-todo 'left))
    (t (org-shiftcursor-error))))
 
 (defun org-copy-special ()
@@ -12203,37 +15662,65 @@ See the individual commands for more information."
     (org-paste-subtree arg)))
 
 (defun org-ctrl-c-ctrl-c (&optional arg)
-  "Call realign table, or recognize a table.el table, or update keywords.
-When the cursor is inside a table created by the table.el package,
-activate that table.  Otherwise, if the cursor is at a normal table
-created with org.el, re-align that table.  This command works even if
-the automatic table editor has been turned off.
-
-If the cursor is in a headline, prompt for tags and insert them into
-the current line, aligned to `org-tags-column'.  When in a headline and
-called with prefix arg, realign all tags in the current buffer.
-
-If the cursor is in one of the special #+KEYWORD lines, this triggers
-scanning the buffer for these lines and updating the information.
-If the cursor is on a #+TBLFM line, re-apply the formulae to the table."
+  "Set tags in headline, or update according to changed information at point.
+
+This command does many different things, depending on context:
+
+- If the cursor is in a headline, prompt for tags and insert them
+  into the current line, aligned to `org-tags-column'.  When called
+  with prefix arg, realign all tags in the current buffer.
+
+- If the cursor is in one of the special #+KEYWORD lines, this
+  triggers scanning the buffer for these lines and updating the
+  information.
+
+- If the cursor is inside a table, realign the table.  This command
+  works even if the automatic table editor has been turned off.
+
+- If the cursor is on a #+TBLFM line, re-apply the formulas to
+  the entire table.
+
+- If the cursor is inside a table created by the table.el package,
+  activate that table.
+
+- If the current buffer is a remember buffer, close note and file it.
+  with a prefix argument, file it without further interaction to the default
+  location.
+
+- If the cursor is on a <<<target>>>, update radio targets and corresponding
+  links in this buffer.
+
+- If the cursor is on a numbered item in a plain list, renumber the
+  ordered list."
   (interactive "P")
   (let  ((org-enable-table-editor t))
     (cond
-     ((org-on-target-p) (org-update-radio-target-regexp))
-     ((org-on-heading-p) (org-set-tags arg))
+     ((or org-clock-overlays org-occur-highlights
+         org-latex-fragment-image-overlays)
+      (org-remove-clock-overlays)
+      (org-remove-occur-highlights)
+      (org-remove-latex-fragment-image-overlays)
+      (message "Temporary highlights/overlays removed from current buffer"))
+     ((and (local-variable-p 'org-finish-function (current-buffer))
+          (fboundp org-finish-function))
+      (funcall org-finish-function))
+     ((org-on-target-p) (call-interactively 'org-update-radio-target-regexp))
+     ((org-on-heading-p) (call-interactively 'org-set-tags))
      ((org-at-table.el-p)
       (require 'table)
       (beginning-of-line 1)
       (re-search-forward "|" (save-excursion (end-of-line 2) (point)))
-      (table-recognize-table))
+      (call-interactively 'table-recognize-table))
      ((org-at-table-p)
       (org-table-maybe-eval-formula)
       (if arg
-         (org-table-recalculate t)
+         (call-interactively 'org-table-recalculate)
        (org-table-maybe-recalculate-line))
-      (org-table-align))
+      (call-interactively 'org-table-align))
+     ((org-at-item-checkbox-p)
+      (call-interactively 'org-toggle-checkbox))
      ((org-at-item-p)
-      (org-renumber-ordered-list (prefix-numeric-value arg)))
+      (call-interactively 'org-renumber-ordered-list))
      ((save-excursion (beginning-of-line 1) (looking-at "#\\+\\([A-Z]+\\)"))
       (cond
        ((equal (match-string 1) "TBLFM")
@@ -12241,17 +15728,10 @@ If the cursor is on a #+TBLFM line, re-apply the formulae to the table."
        (save-excursion
          (beginning-of-line 1)
          (skip-chars-backward " \r\n\t")
-         (if (org-at-table-p) (org-table-recalculate t))))
+         (if (org-at-table-p)
+             (org-call-with-arg 'org-table-recalculate t))))
        (t
-       (org-mode-restart))))
-     ((org-region-active-p)
-      (org-table-convert-region (region-beginning) (region-end) arg))
-     ((condition-case nil
-         (and (region-beginning) (region-end))
-       (error nil))
-      (if (y-or-n-p "Convert inactive region to table? ")
-         (org-table-convert-region (region-beginning) (region-end) arg)
-       (error "Abort")))
+       (call-interactively 'org-mode-restart))))
      (t (error "C-c C-c can do nothing useful at this location.")))))
 
 (defun org-mode-restart ()
@@ -12269,7 +15749,7 @@ See the individual commands for more information."
   (cond
    ((org-at-table-p)
     (org-table-justify-field-maybe)
-    (org-table-next-row))
+    (call-interactively 'org-table-next-row))
    (t (newline))))
 
 (defun org-meta-return (&optional arg)
@@ -12279,8 +15759,8 @@ See the individual commands for more information."
   (interactive "P")
   (cond
    ((org-at-table-p)
-    (org-table-wrap-region arg))
-   (t (org-insert-heading arg))))
+    (call-interactively 'org-table-wrap-region))
+   (t (call-interactively 'org-insert-heading))))
 
 ;;; Menu entries
 
@@ -12293,13 +15773,16 @@ See the individual commands for more information."
     ["Next Row" org-return (org-at-table-p)]
     "--"
     ["Blank Field" org-table-blank-field (org-at-table-p)]
+    ["Edit Field" org-table-edit-field (org-at-table-p)]
     ["Copy Field from Above" org-table-copy-down (org-at-table-p)]
     "--"
     ("Column"
      ["Move Column Left" org-metaleft (org-at-table-p)]
      ["Move Column Right" org-metaright (org-at-table-p)]
      ["Delete Column" org-shiftmetaleft (org-at-table-p)]
-     ["Insert Column" org-shiftmetaright (org-at-table-p)])
+     ["Insert Column" org-shiftmetaright (org-at-table-p)]
+    "--"
+    ["Enable Narrowing" (setq org-table-limit-column-width (not org-table-limit-column-width)) :active (org-at-table-p) :selected org-table-limit-column-width :style toggle])
     ("Row"
      ["Move Row Up" org-metaup (org-at-table-p)]
      ["Move Row Down" org-metadown (org-at-table-p)]
@@ -12330,12 +15813,9 @@ See the individual commands for more information."
      (setq org-table-formula-debug (not org-table-formula-debug))
      :style toggle :selected org-table-formula-debug]
     "--"
-    ["Invisible Vlines" org-table-toggle-vline-visibility
-     :style toggle :selected (org-in-invisibility-spec-p '(org-table))]
-    "--"
     ["Create" org-table-create (and (not (org-at-table-p))
                                    org-enable-table-editor)]
-    ["Convert Region" org-ctrl-c-ctrl-c (not (org-at-table-p 'any))]
+    ["Convert Region" org-table-convert-region (not (org-at-table-p 'any))]
     ["Import from File" org-table-import (not (org-at-table-p))]
     ["Export to File" org-table-export (org-at-table-p)]
     "--"
@@ -12370,12 +15850,33 @@ See the individual commands for more information."
      ["Demote Heading"  org-metaright (not (org-at-table-p))]
      ["Demote Subtree"  org-shiftmetaright (not (org-at-table-p))]
      "--"
-     ["Archive Subtree" org-archive-subtree t]
+     ["Convert to odd levels" org-convert-to-odd-levels t]
+     ["Convert to odd/even levels" org-convert-to-oddeven-levels t])
+    ("Archive"
+     ["Toggle ARCHIVE tag" org-toggle-archive-tag t]
+     ["Check and Tag Children" (org-toggle-archive-tag (4))
+      :active t :keys "C-u C-c C-x C-a"]
+     ["Sparse trees open ARCHIVE trees"
+      (setq org-sparse-tree-open-archived-trees
+           (not org-sparse-tree-open-archived-trees))
+      :style toggle :selected org-sparse-tree-open-archived-trees]
+     ["Cycling opens ARCHIVE trees"
+      (setq org-cycle-open-archived-trees (not org-cycle-open-archived-trees))
+      :style toggle :selected org-cycle-open-archived-trees]
+     ["Agenda includes ARCHIVE trees"
+      (setq org-agenda-skip-archived-trees (not org-agenda-skip-archived-trees))
+      :style toggle :selected (not org-agenda-skip-archived-trees)]
      "--"
-     ["Convert file to odd levels" org-convert-to-odd-levels t])
+     ["Move Subtree to Archive" org-archive-subtree t]
+     ["Check and Move Children" (org-archive-subtree '(4)) 
+      :active t :keys "C-u C-c $"])
     "--"
     ("TODO Lists"
      ["TODO/DONE/-" org-todo t]
+     ("Select keyword"
+      ["Next keyword" org-shiftright (org-on-heading-p)]
+      ["Previous keyword" org-shiftleft (org-on-heading-p)]
+      ["Complete Keyword" org-complete (assq :todo-keyword (org-context))])
      ["Show TODO Tree" org-show-todo-tree t]
      ["Global TODO list" org-todo-list t]
      "--"
@@ -12396,6 +15897,19 @@ See the individual commands for more information."
      "--"
      ["Goto Calendar" org-goto-calendar t]
      ["Date from Calendar" org-date-from-calendar t])
+    ("Logging work"
+     ["Clock in" org-clock-in t]
+     ["Clock out" org-clock-out t]
+     ["Clock cancel" org-clock-cancel t]
+     ["Display times" org-clock-display t]
+     ["Create clock table" org-clock-report t]
+     "--"
+     ["Record DONE time"
+      (progn (setq org-log-done (not org-log-done))
+            (message "Switching to %s will %s record a timestamp"
+                     org-done-string
+                     (if org-log-done "automatically" "not")))
+      :style toggle :selected org-log-done])
     "--"
     ["Agenda Command" org-agenda t]
     ("File List for Agenda")
@@ -12408,22 +15922,31 @@ See the individual commands for more information."
     ("Hyperlinks"
      ["Store Link (Global)" org-store-link t]
      ["Insert Link" org-insert-link t]
-     ["Follow Link" org-open-at-point t])
-    "--"
-    ("Export"
-     ["ASCII" org-export-as-ascii t]
-     ["Extract Visible Text" org-export-copy-visible t]
-     ["HTML"  org-export-as-html t]
-     ["HTML and Open" org-export-as-html-and-open t]
-;     ["OPML" org-export-as-opml nil]
+     ["Follow Link" org-open-at-point t]
      "--"
-     ["iCalendar this file" org-export-icalendar-this-file t]
-     ["iCalendar all agenda files" org-export-icalendar-all-agenda-files
-      :active t :keys "C-c C-x C-i"]
-     ["iCalendar combined" org-export-icalendar-combine-agenda-files t]
+     ["Descriptive Links"
+      (progn (org-add-to-invisibility-spec '(org-link)) (org-restart-font-lock))
+      :style radio :selected (member '(org-link) buffer-invisibility-spec)]
+     ["Literal Links"
+      (progn
+       (org-remove-from-invisibility-spec '(org-link)) (org-restart-font-lock))
+      :style radio :selected (not (member '(org-link) buffer-invisibility-spec))]
      "--"
-     ["Option Template" org-insert-export-options-template t]
-     ["Toggle Fixed Width" org-toggle-fixed-width-section t])
+     ["Upgrade all <link> to [[link][desc]]" org-upgrade-old-links
+      (save-excursion (goto-char (point-min))
+                     (re-search-forward "<[a-z]+:" nil t))])
+    "--"
+    ["Export/Publish" org-export t]
+    ("LaTeX"
+     ["Org CDLaTeX mode" org-cdlatex-mode :style toggle 
+      :selected org-cdlatex-mode]
+     ["Insert Environment" cdlatex-environment (fboundp 'cdlatex-environment)]
+     ["Insert math symbol" cdlatex-math-symbol (fboundp 'cdlatex-math-symbol)]
+     ["Modify math symbol" org-cdlatex-math-modify
+      (org-inside-LaTeX-fragment-p)]
+     ["Export LaTeX fragments as images"
+      (setq org-export-with-LaTeX-fragments (not org-export-with-LaTeX-fragments)) 
+      :style toggle :selected org-export-with-LaTeX-fragments])
     "--"
     ("Documentation"
      ["Show Version" org-version t]
@@ -12431,7 +15954,7 @@ See the individual commands for more information."
     ("Customize"
      ["Browse Org Group" org-customize t]
      "--"
-     ["Build Full Customize Menu" org-create-customize-menu
+     ["Expand This Menu" org-create-customize-menu
       (fboundp 'customize-menu-create)])
     "--"
     ["Refresh setup" org-mode-restart t]
@@ -12445,16 +15968,22 @@ With optional NODE, go directly to that node."
   (Info-goto-node (format "(org)%s" (or node ""))))
 
 (defun org-install-agenda-files-menu ()
-  (easy-menu-change
-   '("Org") "File List for Agenda"
-   (append
-    (list
-     ["Edit File List" (customize-variable 'org-agenda-files) t]
-     ["Add/Move Current File to Front of List" org-agenda-file-to-front t]
-     ["Remove Current File from List" org-remove-file t]
-     ["Cycle through agenda files" org-cycle-agenda-files t]
-     "--")
-    (mapcar 'org-file-menu-entry org-agenda-files))))
+  (let ((bl (buffer-list)))
+    (save-excursion
+      (while bl
+       (set-buffer (pop bl))
+       (if (org-mode-p) (setq bl nil)))
+      (when (org-mode-p)
+       (easy-menu-change
+        '("Org") "File List for Agenda"
+        (append
+         (list
+          ["Edit File List" (org-edit-agenda-file-list) t]
+          ["Add/Move Current File to Front of List" org-agenda-file-to-front t]
+          ["Remove Current File from List" org-remove-file t]
+          ["Cycle through agenda files" org-cycle-agenda-files t]
+          "--")
+         (mapcar 'org-file-menu-entry (org-agenda-files t))))))))
 
 ;;; Documentation
 
@@ -12483,6 +16012,116 @@ With optional NODE, go directly to that node."
 
 ;;; Miscellaneous stuff
 
+(defun org-context ()
+  "Return a list of contexts of the current cursor position.
+If several contexts apply, all are returned.
+Each context entry is a list with a symbol naming the context, and
+two positions indicating start and end of the context.  Possible
+contexts are:
+
+:headline         anywhere in a headline
+:headline-stars   on the leading stars in a headline
+:todo-keyword     on a TODO keyword (including DONE) in a headline
+:tags             on the TAGS in a headline
+:priority         on the priority cookie in a headline
+:item             on the first line of a plain list item
+:item-bullet      on the bullet/number of a plain list item
+:checkbox         on the checkbox in a plain list item
+:table            in an org-mode table
+:table-special    on a special filed in a table
+:table-table      in a table.el table
+:link             on a hyperline
+:keyword          on a keyword: SCHEDULED, DEADLINE, CLOSE,COMMENT, QUOTE.
+:target           on a <<target>>
+:radio-target     on a <<<radio-target>>>
+:latex-fragment   on a LaTeX fragment
+:latex-preview    on a LaTeX fragment with overlayed preview image
+
+This function expects the position to be visible because it uses font-lock
+faces as a help to recognize the following contexts: :table-special, :link,
+and :keyword."
+  (let* ((f (get-text-property (point) 'face))
+        (faces (if (listp f) f (list f)))
+        (p (point)) clist o)
+    ;; First the large context
+    (cond
+     ((org-on-heading-p)
+      (push (list :headline (point-at-bol) (point-at-eol)) clist)
+      (when (progn
+             (beginning-of-line 1)
+             (looking-at org-todo-line-tags-regexp))
+       (push (org-point-in-group p 1 :headline-stars) clist)
+       (push (org-point-in-group p 2 :todo-keyword) clist)
+       (push (org-point-in-group p 4 :tags) clist))
+      (goto-char p)
+      (skip-chars-backward "^[\n\r \t") (or (eobp) (backward-char 1))
+      (if (looking-at "\\[#[A-Z]\\]")
+         (push (org-point-in-group p 0 :priority) clist)))
+
+     ((org-at-item-p)
+      (push (org-point-in-group p 2 :item-bullet) clist)
+      (push (list :item (point-at-bol)
+                 (save-excursion (org-end-of-item) (point)))
+           clist)
+      (and (org-at-item-checkbox-p)
+          (push (org-point-in-group p 0 :checkbox) clist)))
+
+     ((org-at-table-p)
+      (push (list :table (org-table-begin) (org-table-end)) clist)
+      (if (memq 'org-formula faces)
+         (push (list :table-special
+                     (previous-single-property-change p 'face)
+                     (next-single-property-change p 'face)) clist)))
+     ((org-at-table-p 'any)
+      (push (list :table-table) clist)))
+    (goto-char p)
+
+    ;; Now the small context
+    (cond
+     ((org-at-timestamp-p)
+      (push (org-point-in-group p 0 :timestamp) clist))
+     ((memq 'org-link faces)
+      (push (list :link
+                 (previous-single-property-change p 'face)
+                 (next-single-property-change p 'face)) clist))
+     ((memq 'org-special-keyword faces)
+      (push (list :keyword
+                 (previous-single-property-change p 'face)
+                 (next-single-property-change p 'face)) clist))
+     ((org-on-target-p)
+      (push (org-point-in-group p 0 :target) clist)
+      (goto-char (1- (match-beginning 0)))
+      (if (looking-at org-radio-target-regexp)
+         (push (org-point-in-group p 0 :radio-target) clist))
+      (goto-char p))
+     ((setq o (car (delq nil
+                        (mapcar 
+                         (lambda (x)
+                           (if (memq x org-latex-fragment-image-overlays) x))
+                         (org-overlays-at (point))))))
+      (push (list :latex-fragment 
+                 (org-overlay-start o) (org-overlay-end o)) clist)
+      (push (list :latex-preview 
+                 (org-overlay-start o) (org-overlay-end o)) clist))
+     ((org-inside-LaTeX-fragment-p)
+      ;; FIXME: positions wring.
+      (push (list :latex-fragment (point) (point)) clist)))
+
+    (setq clist (nreverse (delq nil clist)))
+    clist))
+
+(defun org-point-in-group (point group &optional context)
+  "Check if POINT is in match-group GROUP.
+If CONTEXT is non-nil, return a list with CONTEXT and the boundaries of the
+match.  If the match group does ot exist or point is not inside it,
+return nil."
+  (and (match-beginning group)
+       (>= point (match-beginning group))
+       (<= point (match-end group))
+       (if context
+          (list context (match-beginning group) (match-end group))
+        t)))
+
 (defun org-move-line-down (arg)
   "Move the current line down.  With prefix argument, move it past ARG lines."
   (interactive "p")
@@ -12511,36 +16150,38 @@ With optional NODE, go directly to that node."
 
 ;; Paragraph filling stuff.
 ;; We want this to be just right, so use the full arsenal.
-;; FIXME:  This very likely does not work correctly for XEmacs, because the
-;; filladapt package works slightly differently.
 
 (defun org-set-autofill-regexps ()
   (interactive)
   ;; In the paragraph separator we include headlines, because filling
   ;; text in a line directly attached to a headline would otherwise
   ;; fill the headline as well.
-  (set (make-local-variable 'paragraph-separate) "\f\\|\\*\\|[         ]*$\\|[ \t]*[:|]")
+  (org-set-local 'comment-start-skip "^#+[ \t]*")
+  (org-set-local 'paragraph-separate "\f\\|\\*\\|[     ]*$\\|[ \t]*[:|]")
   ;; The paragraph starter includes hand-formatted lists.
-  (set (make-local-variable 'paragraph-start)
-       "\f\\|[         ]*$\\|\\([*\f]+\\)\\|[ \t]*\\([-+*]\\|[0-9]+[.)][ \t]+\\)\\|[ \t]*[:|]")
+  (org-set-local 'paragraph-start
+                "\f\\|[        ]*$\\|\\([*\f]+\\)\\|[ \t]*\\([-+*][ \t]+\\|[0-9]+[.)][ \t]+\\)\\|[ \t]*[:|]")
   ;; Inhibit auto-fill for headers, tables and fixed-width lines.
   ;; But only if the user has not turned off tables or fixed-width regions
-  (set (make-local-variable 'auto-fill-inhibit-regexp)
-       (concat "\\*\\|#"
-              (if (or org-enable-table-editor org-enable-fixed-width-editor)
-                  (concat
-                   "\\|[ \t]*["
-                   (if org-enable-table-editor "|" "")
-                   (if org-enable-fixed-width-editor ":"  "")
-                   "]"))))
+  (org-set-local
+   'auto-fill-inhibit-regexp
+   (concat "\\*\\|#"
+          "\\|[ \t]*" org-keyword-time-regexp
+          (if (or org-enable-table-editor org-enable-fixed-width-editor)
+              (concat
+               "\\|[ \t]*["
+               (if org-enable-table-editor "|" "")
+               (if org-enable-fixed-width-editor ":"  "")
+               "]"))))
   ;; We use our own fill-paragraph function, to make sure that tables
   ;; and fixed-width regions are not wrapped.  That function will pass
   ;; through to `fill-paragraph' when appropriate.
-  (set (make-local-variable 'fill-paragraph-function) 'org-fill-paragraph)
-  ;; Adaptive filling: To get full control, first make sure that
-  ;; `adaptive-fill-regexp' never matches.  Then install our won matcher.
-  (setq adaptive-fill-regexp "\000")
-  (setq adaptive-fill-function 'org-adaptive-fill-function))
+  (org-set-local 'fill-paragraph-function 'org-fill-paragraph)
+  ; Adaptive filling: To get full control, first make sure that
+  ;; `adaptive-fill-regexp' never matches.  Then install our own matcher.
+  (org-set-local 'adaptive-fill-regexp "\000")
+  (org-set-local 'adaptive-fill-function
+                'org-adaptive-fill-function))
 
 (defun org-fill-paragraph (&optional justify)
   "Re-align a table, pass through to fill-paragraph if no table."
@@ -12565,7 +16206,7 @@ work correctly."
 
 (defun org-add-hook (hook function &optional append local)
   "Add-hook, compatible with both Emacsen."
-  (if (and local org-xemacs-p)
+  (if (and local (featurep 'xemacs))
       (add-local-hook hook function append)
     (add-hook hook function append local)))
 
@@ -12574,7 +16215,7 @@ work correctly."
 Works on both Emacs and XEmacs."
   (if org-ignore-region
       nil
-    (if org-xemacs-p
+    (if (featurep 'xemacs)
        (and zmacs-regions (region-active-p))
       (and transient-mark-mode mark-active))))
 
@@ -12619,18 +16260,7 @@ that can be added."
                          t)
              "\\'"))))
 
-;; Functions needed for compatibility with old outline.el.
-
-;; Programming for the old outline.el (that uses selective display
-;; instead of `invisible' text properties) is a nightmare, mostly
-;; because regular expressions can no longer be anchored at
-;; beginning/end of line.  Therefore a number of function need special
-;; treatment when the old outline.el is being used.
-
-;; The following functions capture almost the entire compatibility code
-;; between the different versions of outline-mode.  The only other
-;; places where this is important are the font-lock-keywords, and in
-;; `org-export-copy-visible'.  Search for `org-noutline-p' to find them.
+;; Functions extending outline functionality
 
 ;; C-a should go to the beginning of a *visible* line, also in the
 ;; new outline.el.  I guess this should be patched into Emacs?
@@ -12648,131 +16278,65 @@ to a visible line beginning.  This makes the function of C-a more intuitive."
          (beginning-of-line 1))
       (forward-char 1))))
 
-(when org-noutline-p
-  (define-key org-mode-map "\C-a" 'org-beginning-of-line))
-;; FIXME: should I use substitute-key-definition to reach other bindings
-;; of beginning-of-line?
+(define-key org-mode-map "\C-a" 'org-beginning-of-line)
 
 (defun org-invisible-p ()
   "Check if point is at a character currently not visible."
-  (if org-noutline-p
-      ;; Early versions of noutline don't have `outline-invisible-p'.
-      (if (fboundp 'outline-invisible-p)
-         (outline-invisible-p)
-       (get-char-property (point) 'invisible))
-    (save-excursion
-      (skip-chars-backward "^\r\n")
-      (equal (char-before) ?\r))))
+  ;; Early versions of noutline don't have `outline-invisible-p'.
+  (if (fboundp 'outline-invisible-p)
+      (outline-invisible-p)
+    (get-char-property (point) 'invisible)))
 
 (defun org-invisible-p2 ()
   "Check if point is at a character currently not visible."
   (save-excursion
-    (if org-noutline-p
-       (progn
-         (if (and (eolp) (not (bobp))) (backward-char 1))
-         ;; Early versions of noutline don't have `outline-invisible-p'.
-         (if (fboundp 'outline-invisible-p)
-             (outline-invisible-p)
-           (get-char-property (point) 'invisible)))
-      (skip-chars-backward "^\r\n")
-      (equal (char-before) ?\r))))
-
-(defun org-back-to-heading (&optional invisible-ok)
-  "Move to previous heading line, or beg of this line if it's a heading.
-Only visible heading lines are considered, unless INVISIBLE-OK is non-nil."
-  (if org-noutline-p
-      (outline-back-to-heading invisible-ok)
-    (if (and (memq (char-before) '(?\n ?\r))
-             (looking-at outline-regexp))
-       t
-      (if (re-search-backward (concat (if invisible-ok "\\([\r\n]\\|^\\)" "^")
-                                     outline-regexp)
-                             nil t)
-         (if invisible-ok
-             (progn (goto-char (match-end 1))
-                    (looking-at outline-regexp)))
-       (error "Before first heading")))))
-
-(defun org-on-heading-p (&optional invisible-ok)
-  "Return t if point is on a (visible) heading line.
-If INVISIBLE-OK is non-nil, an invisible heading line is ok too."
-  (if org-noutline-p
-      (outline-on-heading-p 'invisible-ok)
-    (save-excursion
-      (skip-chars-backward "^\n\r")
-      (and (looking-at outline-regexp)
-          (or invisible-ok
-              (bobp)
-              (equal (char-before) ?\n))))))
+    (if (and (eolp) (not (bobp))) (backward-char 1))
+    ;; Early versions of noutline don't have `outline-invisible-p'.
+    (if (fboundp 'outline-invisible-p)
+       (outline-invisible-p)
+      (get-char-property (point) 'invisible))))
+
+(defalias 'org-back-to-heading 'outline-back-to-heading)
+(defalias 'org-on-heading-p 'outline-on-heading-p)
 
 (defun org-on-target-p ()
   (let ((pos (point)))
     (save-excursion
       (skip-chars-forward "<")
       (and (re-search-backward "<<" nil t)
-          (or (looking-at org-target-regexp)
-              (looking-at org-radio-target-regexp))
+          (or (looking-at org-radio-target-regexp)
+              (looking-at org-target-regexp))
           (<= (match-beginning 0) pos)
-          (>= (match-end 0) pos)))))
+          (>= (1+ (match-end 0)) pos)))))
 
 (defun org-up-heading-all (arg)
   "Move to the heading line of which the present line is a subheading.
 This function considers both visible and invisible heading lines.
 With argument, move up ARG levels."
-  (if org-noutline-p
-      (if (fboundp 'outline-up-heading-all)
-         (outline-up-heading-all arg)   ; emacs 21 version of outline.el
-       (outline-up-heading arg t))      ; emacs 22 version of outline.el
-    (org-back-to-heading t)
-    (looking-at outline-regexp)
-    (if (<= (- (match-end 0) (match-beginning 0)) arg)
-       (error "Cannot move up %d levels" arg)
-    (re-search-backward
-     (concat "[\n\r]" (regexp-quote
-                      (make-string (- (match-end 0) (match-beginning 0) arg)
-                                   ?*))
-            "[^*]"))
-    (forward-char 1))))
+  (if (fboundp 'outline-up-heading-all)
+      (outline-up-heading-all arg)   ; emacs 21 version of outline.el
+    (outline-up-heading arg t)))     ; emacs 22 version of outline.el
 
 (defun org-show-hidden-entry ()
   "Show an entry where even the heading is hidden."
   (save-excursion
-    (if (not org-noutline-p)
-       (progn
-         (org-back-to-heading t)
-         (org-flag-heading nil)))
     (org-show-entry)))
 
-(defun org-check-occur-regexp (regexp)
-  "If REGEXP starts with \"^\", modify it to check for \\r as well.
-Of course, only for the old outline mode."
-  (if org-noutline-p
-      regexp
-    (if (string-match "^\\^" regexp)
-       (concat "[\n\r]" (substring regexp 1))
-      regexp)))
-
 (defun org-flag-heading (flag &optional entry)
   "Flag the current heading.  FLAG non-nil means make invisible.
 When ENTRY is non-nil, show the entire entry."
   (save-excursion
     (org-back-to-heading t)
-    (if (not org-noutline-p)
-       ;; Make the current headline visible
-       (outline-flag-region (max 1 (1- (point))) (point) (if flag ?\r ?\n)))
     ;; Check if we should show the entire entry
     (if entry
        (progn
          (org-show-entry)
-         (save-excursion  ;; FIXME: Is this the fix for points in the   -|
-                          ;;        middle of text?                      |
-           (and (outline-next-heading)   ;;                              |
-                (org-flag-heading nil))))  ; show the next heading      _|
+         (save-excursion
+           (and (outline-next-heading)
+                (org-flag-heading nil))))
       (outline-flag-region (max 1 (1- (point)))
                           (save-excursion (outline-end-of-heading) (point))
-                          (if org-noutline-p
-                              flag
-                            (if flag ?\r ?\n))))))
+                          flag))))
 
 (defun org-end-of-subtree (&optional invisible-OK)
   ;; This is an exact copy of the original function, but it uses
@@ -12792,7 +16356,8 @@ When ENTRY is non-nil, show the entire entry."
          (forward-char -1)
          (if (memq (preceding-char) '(?\n ?\^M))
              ;; leave blank line before heading
-             (forward-char -1))))))
+             (forward-char -1)))))
+  (point))
 
 (defun org-show-subtree ()
   "Show everything after this heading at deeper levels."
@@ -12800,7 +16365,7 @@ When ENTRY is non-nil, show the entire entry."
    (point)
    (save-excursion
      (outline-end-of-subtree) (outline-next-heading) (point))
-   (if org-noutline-p nil ?\n)))
+   nil))
 
 (defun org-show-entry ()
   "Show the body directly following this heading.
@@ -12809,21 +16374,20 @@ Show the heading too, if it is currently invisible."
   (save-excursion
     (org-back-to-heading t)
     (outline-flag-region
-     (1- (point))
+     (max 1 (1- (point)))
      (save-excursion
        (re-search-forward (concat "[\r\n]\\(" outline-regexp "\\)") nil 'move)
        (or (match-beginning 1) (point-max)))
-     (if org-noutline-p nil ?\n))))
-
+     nil)))
 
 (defun org-make-options-regexp (kwds)
   "Make a regular expression for keyword lines."
   (concat
-   (if org-noutline-p "^" "[\n\r]")
+   "^"
    "#?[ \t]*\\+\\("
    (mapconcat 'regexp-quote kwds "\\|")
    "\\):[ \t]*"
-   (if org-noutline-p "\\(.+\\)" "\\([^\n\r]+\\)")))
+   "\\(.+\\)"))
 
 ;; Make `bookmark-jump' show the jump location if it was hidden.
 (eval-after-load "bookmark"
@@ -12837,14 +16401,17 @@ Show the heading too, if it is currently invisible."
 
 (defun org-bookmark-jump-unhide ()
   "Unhide the current position, to show the bookmark location."
-  (and (eq major-mode 'org-mode)
+  (and (org-mode-p)
        (or (org-invisible-p)
           (save-excursion (goto-char (max (point-min) (1- (point))))
                           (org-invisible-p)))
        (org-show-hierarchy-above)))
 
-;;; Finish up
+;;; Experimental code
 
+
+;;; Finish up
+       
 (provide 'org)
 
 (run-hooks 'org-load-hook)