aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarsten Dominik2008-07-25 23:02:16 +0000
committerCarsten Dominik2008-07-25 23:02:16 +0000
commit0627c2654bf515e6b4085a1d28052060250aefe6 (patch)
tree36396fc67552b46e7e264902a5230a85ec9b1663
parentdea101f699be7433af808ce070cf49a1fcf49f9d (diff)
downloademacs-0627c2654bf515e6b4085a1d28052060250aefe6.tar.gz
emacs-0627c2654bf515e6b4085a1d28052060250aefe6.zip
2008-07-25 Carsten Dominik <dominik@science.uva.nl>
* org-publish.el (org-publish-file): Use the true name of the file. * org-jsinfo.el (org-infojs-handle-options): Use :style-extra instead of :style. * org-exp.el (org-export-plist-vars) (org-export-add-options-to-plist): Handle creator setting flag. (org-export-as-html): Handle attributes also for ftp and mailto links. * org-agenda.el (org-agenda-diary-entry) (org-agenda-execute-calendar-command): Cater for the second argument of `calendar-cursor-to-date'.
-rw-r--r--lisp/org/ChangeLog17
-rw-r--r--lisp/org/org-agenda.el7
-rw-r--r--lisp/org/org-archive.el2
-rw-r--r--lisp/org/org-bbdb.el2
-rw-r--r--lisp/org/org-bibtex.el2
-rw-r--r--lisp/org/org-clock.el2
-rw-r--r--lisp/org/org-colview.el2
-rw-r--r--lisp/org/org-compat.el2
-rw-r--r--lisp/org/org-exp.el5
-rw-r--r--lisp/org/org-export-latex.el2
-rw-r--r--lisp/org/org-faces.el2
-rw-r--r--lisp/org/org-gnus.el2
-rw-r--r--lisp/org/org-id.el2
-rw-r--r--lisp/org/org-info.el2
-rw-r--r--lisp/org/org-irc.el2
-rw-r--r--lisp/org/org-jsinfo.el6
-rw-r--r--lisp/org/org-mac-message.el2
-rw-r--r--lisp/org/org-macs.el2
-rw-r--r--lisp/org/org-mew.el2
-rw-r--r--lisp/org/org-mhe.el2
-rw-r--r--lisp/org/org-mouse.el2
-rw-r--r--lisp/org/org-publish.el7
-rw-r--r--lisp/org/org-remember.el2
-rw-r--r--lisp/org/org-rmail.el2
-rw-r--r--lisp/org/org-table.el2
-rw-r--r--lisp/org/org-vm.el2
-rw-r--r--lisp/org/org-wl.el2
-rw-r--r--lisp/org/org.el9
28 files changed, 57 insertions, 38 deletions
diff --git a/lisp/org/ChangeLog b/lisp/org/ChangeLog
index ca55cd320eb..c5602aea408 100644
--- a/lisp/org/ChangeLog
+++ b/lisp/org/ChangeLog
@@ -1,3 +1,20 @@
12008-07-25 Carsten Dominik <dominik@science.uva.nl>
2
3 * org-publish.el (org-publish-file): Use the true name of the
4 file.
5
6 * org-jsinfo.el (org-infojs-handle-options): Use :style-extra
7 instead of :style.
8
9 * org-exp.el (org-export-plist-vars)
10 (org-export-add-options-to-plist): Handle creator setting flag.
11 (org-export-as-html): Handle attributes also for ftp and mailto
12 links.
13
14 * org-agenda.el (org-agenda-diary-entry)
15 (org-agenda-execute-calendar-command): Cater for the second
16 argument of `calendar-cursor-to-date'.
17
12008-07-24 Carsten Dominik <dominik@science.uva.nl> 182008-07-24 Carsten Dominik <dominik@science.uva.nl>
2 19
3 * org-exp.el (org-export-region-as-html, org-export-as-html): Make 20 * org-exp.el (org-export-region-as-html, org-export-as-html): Make
diff --git a/lisp/org/org-agenda.el b/lisp/org/org-agenda.el
index 23cda508a9a..9a7ed8b6b98 100644
--- a/lisp/org/org-agenda.el
+++ b/lisp/org/org-agenda.el
@@ -6,7 +6,7 @@
6;; Author: Carsten Dominik <carsten at orgmode dot org> 6;; Author: Carsten Dominik <carsten at orgmode dot org>
7;; Keywords: outlines, hypermedia, calendar, wp 7;; Keywords: outlines, hypermedia, calendar, wp
8;; Homepage: http://orgmode.org 8;; Homepage: http://orgmode.org
9;; Version: 6.06a 9;; Version: 6.06b
10;; 10;;
11;; This file is part of GNU Emacs. 11;; This file is part of GNU Emacs.
12;; 12;;
@@ -5120,13 +5120,12 @@ All the standard commands work: block, weekly etc."
5120 (unwind-protect 5120 (unwind-protect
5121 (progn 5121 (progn
5122 (fset 'calendar-cursor-to-date 5122 (fset 'calendar-cursor-to-date
5123 (lambda (&optional error) 5123 (lambda (&optional error dummy)
5124 (calendar-gregorian-from-absolute 5124 (calendar-gregorian-from-absolute
5125 (get-text-property point 'day)))) 5125 (get-text-property point 'day))))
5126 (call-interactively cmd)) 5126 (call-interactively cmd))
5127 (fset 'calendar-cursor-to-date oldf))))) 5127 (fset 'calendar-cursor-to-date oldf)))))
5128 5128
5129
5130(defun org-agenda-execute-calendar-command (cmd) 5129(defun org-agenda-execute-calendar-command (cmd)
5131 "Execute a calendar command from the agenda, with the date associated to 5130 "Execute a calendar command from the agenda, with the date associated to
5132the cursor position." 5131the cursor position."
@@ -5144,7 +5143,7 @@ the cursor position."
5144 (unwind-protect 5143 (unwind-protect
5145 (progn 5144 (progn
5146 (fset 'calendar-cursor-to-date 5145 (fset 'calendar-cursor-to-date
5147 (lambda (&optional error) 5146 (lambda (&optional error dummy)
5148 (calendar-gregorian-from-absolute 5147 (calendar-gregorian-from-absolute
5149 (get-text-property point 'day)))) 5148 (get-text-property point 'day))))
5150 (call-interactively cmd)) 5149 (call-interactively cmd))
diff --git a/lisp/org/org-archive.el b/lisp/org/org-archive.el
index 0ddac74d883..3cd44dafd3e 100644
--- a/lisp/org/org-archive.el
+++ b/lisp/org/org-archive.el
@@ -5,7 +5,7 @@
5;; Author: Carsten Dominik <carsten at orgmode dot org> 5;; Author: Carsten Dominik <carsten at orgmode dot org>
6;; Keywords: outlines, hypermedia, calendar, wp 6;; Keywords: outlines, hypermedia, calendar, wp
7;; Homepage: http://orgmode.org 7;; Homepage: http://orgmode.org
8;; Version: 6.06a 8;; Version: 6.06b
9;; 9;;
10;; This file is part of GNU Emacs. 10;; This file is part of GNU Emacs.
11;; 11;;
diff --git a/lisp/org/org-bbdb.el b/lisp/org/org-bbdb.el
index fb913a09f43..947b55933ce 100644
--- a/lisp/org/org-bbdb.el
+++ b/lisp/org/org-bbdb.el
@@ -6,7 +6,7 @@
6;; Thomas Baumann <thomas dot baumann at ch dot tum dot de> 6;; Thomas Baumann <thomas dot baumann at ch dot tum dot de>
7;; Keywords: outlines, hypermedia, calendar, wp 7;; Keywords: outlines, hypermedia, calendar, wp
8;; Homepage: http://orgmode.org 8;; Homepage: http://orgmode.org
9;; Version: 6.06a 9;; Version: 6.06b
10;; 10;;
11;; This file is part of GNU Emacs. 11;; This file is part of GNU Emacs.
12;; 12;;
diff --git a/lisp/org/org-bibtex.el b/lisp/org/org-bibtex.el
index 0fe619d5bc7..6c067f533df 100644
--- a/lisp/org/org-bibtex.el
+++ b/lisp/org/org-bibtex.el
@@ -5,7 +5,7 @@
5;; Author: Bastien Guerry <bzg at altern dot org> 5;; Author: Bastien Guerry <bzg at altern dot org>
6;; Carsten Dominik <carsten dot dominik at gmail dot com> 6;; Carsten Dominik <carsten dot dominik at gmail dot com>
7;; Keywords: org, wp, remember 7;; Keywords: org, wp, remember
8;; Version: 6.06a 8;; Version: 6.06b
9;; 9;;
10;; This file is part of GNU Emacs. 10;; This file is part of GNU Emacs.
11;; 11;;
diff --git a/lisp/org/org-clock.el b/lisp/org/org-clock.el
index 6caf8393f94..dcaa8a08140 100644
--- a/lisp/org/org-clock.el
+++ b/lisp/org/org-clock.el
@@ -5,7 +5,7 @@
5;; Author: Carsten Dominik <carsten at orgmode dot org> 5;; Author: Carsten Dominik <carsten at orgmode dot org>
6;; Keywords: outlines, hypermedia, calendar, wp 6;; Keywords: outlines, hypermedia, calendar, wp
7;; Homepage: http://orgmode.org 7;; Homepage: http://orgmode.org
8;; Version: 6.06a 8;; Version: 6.06b
9;; 9;;
10;; This file is part of GNU Emacs. 10;; This file is part of GNU Emacs.
11;; 11;;
diff --git a/lisp/org/org-colview.el b/lisp/org/org-colview.el
index ef7bb690862..5c6d46becbf 100644
--- a/lisp/org/org-colview.el
+++ b/lisp/org/org-colview.el
@@ -5,7 +5,7 @@
5;; Author: Carsten Dominik <carsten at orgmode dot org> 5;; Author: Carsten Dominik <carsten at orgmode dot org>
6;; Keywords: outlines, hypermedia, calendar, wp 6;; Keywords: outlines, hypermedia, calendar, wp
7;; Homepage: http://orgmode.org 7;; Homepage: http://orgmode.org
8;; Version: 6.06a 8;; Version: 6.06b
9;; 9;;
10;; This file is part of GNU Emacs. 10;; This file is part of GNU Emacs.
11;; 11;;
diff --git a/lisp/org/org-compat.el b/lisp/org/org-compat.el
index 0ba1dcc75b3..a80f671aceb 100644
--- a/lisp/org/org-compat.el
+++ b/lisp/org/org-compat.el
@@ -5,7 +5,7 @@
5;; Author: Carsten Dominik <carsten at orgmode dot org> 5;; Author: Carsten Dominik <carsten at orgmode dot org>
6;; Keywords: outlines, hypermedia, calendar, wp 6;; Keywords: outlines, hypermedia, calendar, wp
7;; Homepage: http://orgmode.org 7;; Homepage: http://orgmode.org
8;; Version: 6.06a 8;; Version: 6.06b
9;; 9;;
10;; This file is part of GNU Emacs. 10;; This file is part of GNU Emacs.
11;; 11;;
diff --git a/lisp/org/org-exp.el b/lisp/org/org-exp.el
index cf02d1808da..f24f4a14990 100644
--- a/lisp/org/org-exp.el
+++ b/lisp/org/org-exp.el
@@ -5,7 +5,7 @@
5;; Author: Carsten Dominik <carsten at orgmode dot org> 5;; Author: Carsten Dominik <carsten at orgmode dot org>
6;; Keywords: outlines, hypermedia, calendar, wp 6;; Keywords: outlines, hypermedia, calendar, wp
7;; Homepage: http://orgmode.org 7;; Homepage: http://orgmode.org
8;; Version: 6.06a 8;; Version: 6.06b
9;; 9;;
10;; This file is part of GNU Emacs. 10;; This file is part of GNU Emacs.
11;; 11;;
@@ -883,6 +883,7 @@ modified) list.")
883 ("LaTeX" . :LaTeX-fragments) 883 ("LaTeX" . :LaTeX-fragments)
884 ("skip" . :skip-before-1st-heading) 884 ("skip" . :skip-before-1st-heading)
885 ("author" . :author-info) 885 ("author" . :author-info)
886 ("creator" . :creator-info)
886 ("timestamp" . :time-stamp-file))) 887 ("timestamp" . :time-stamp-file)))
887 o) 888 o)
888 (while (setq o (pop op)) 889 (while (setq o (pop op))
@@ -3072,7 +3073,7 @@ lang=\"%s\" xml:lang=\"%s\">
3072 ((member type '("ftp" "mailto" "news")) 3073 ((member type '("ftp" "mailto" "news"))
3073 ;; standard URL 3074 ;; standard URL
3074 (setq link (concat type ":" path)) 3075 (setq link (concat type ":" path))
3075 (setq rpl (concat "<a href=\"" link "\">" desc "</a>"))) 3076 (setq rpl (concat "<a href=\"" link "\"" attr ">" desc "</a>")))
3076 3077
3077 ((functionp (setq fnc (nth 2 (assoc type org-link-protocols)))) 3078 ((functionp (setq fnc (nth 2 (assoc type org-link-protocols))))
3078 ;; The link protocol has a function for format the link 3079 ;; The link protocol has a function for format the link
diff --git a/lisp/org/org-export-latex.el b/lisp/org/org-export-latex.el
index b17bc02d0c6..a0a9e5f988d 100644
--- a/lisp/org/org-export-latex.el
+++ b/lisp/org/org-export-latex.el
@@ -4,7 +4,7 @@
4;; 4;;
5;; Emacs Lisp Archive Entry 5;; Emacs Lisp Archive Entry
6;; Filename: org-export-latex.el 6;; Filename: org-export-latex.el
7;; Version: 6.06a 7;; Version: 6.06b
8;; Author: Bastien Guerry <bzg AT altern DOT org> 8;; Author: Bastien Guerry <bzg AT altern DOT org>
9;; Maintainer: Bastien Guerry <bzg AT altern DOT org> 9;; Maintainer: Bastien Guerry <bzg AT altern DOT org>
10;; Keywords: org, wp, tex 10;; Keywords: org, wp, tex
diff --git a/lisp/org/org-faces.el b/lisp/org/org-faces.el
index 2e6f9c24c98..c3e4ac60950 100644
--- a/lisp/org/org-faces.el
+++ b/lisp/org/org-faces.el
@@ -5,7 +5,7 @@
5;; Author: Carsten Dominik <carsten at orgmode dot org> 5;; Author: Carsten Dominik <carsten at orgmode dot org>
6;; Keywords: outlines, hypermedia, calendar, wp 6;; Keywords: outlines, hypermedia, calendar, wp
7;; Homepage: http://orgmode.org 7;; Homepage: http://orgmode.org
8;; Version: 6.06a 8;; Version: 6.06b
9;; 9;;
10;; This file is part of GNU Emacs. 10;; This file is part of GNU Emacs.
11;; 11;;
diff --git a/lisp/org/org-gnus.el b/lisp/org/org-gnus.el
index 9702f41a614..e1d82321388 100644
--- a/lisp/org/org-gnus.el
+++ b/lisp/org/org-gnus.el
@@ -5,7 +5,7 @@
5;; Author: Carsten Dominik <carsten at orgmode dot org> 5;; Author: Carsten Dominik <carsten at orgmode dot org>
6;; Keywords: outlines, hypermedia, calendar, wp 6;; Keywords: outlines, hypermedia, calendar, wp
7;; Homepage: http://orgmode.org 7;; Homepage: http://orgmode.org
8;; Version: 6.06a 8;; Version: 6.06b
9;; 9;;
10;; This file is part of GNU Emacs. 10;; This file is part of GNU Emacs.
11;; 11;;
diff --git a/lisp/org/org-id.el b/lisp/org/org-id.el
index fef64915cf4..c43de2e98b9 100644
--- a/lisp/org/org-id.el
+++ b/lisp/org/org-id.el
@@ -4,7 +4,7 @@
4;; Author: Carsten Dominik <carsten at orgmode dot org> 4;; Author: Carsten Dominik <carsten at orgmode dot org>
5;; Keywords: outlines, hypermedia, calendar, wp 5;; Keywords: outlines, hypermedia, calendar, wp
6;; Homepage: http://orgmode.org 6;; Homepage: http://orgmode.org
7;; Version: 6.06a 7;; Version: 6.06b
8;; 8;;
9;; This file is part of GNU Emacs. 9;; This file is part of GNU Emacs.
10;; 10;;
diff --git a/lisp/org/org-info.el b/lisp/org/org-info.el
index e574605efea..779dbb48772 100644
--- a/lisp/org/org-info.el
+++ b/lisp/org/org-info.el
@@ -5,7 +5,7 @@
5;; Author: Carsten Dominik <carsten at orgmode dot org> 5;; Author: Carsten Dominik <carsten at orgmode dot org>
6;; Keywords: outlines, hypermedia, calendar, wp 6;; Keywords: outlines, hypermedia, calendar, wp
7;; Homepage: http://orgmode.org 7;; Homepage: http://orgmode.org
8;; Version: 6.06a 8;; Version: 6.06b
9;; 9;;
10;; This file is part of GNU Emacs. 10;; This file is part of GNU Emacs.
11;; 11;;
diff --git a/lisp/org/org-irc.el b/lisp/org/org-irc.el
index 13844f08a2b..30f6479545e 100644
--- a/lisp/org/org-irc.el
+++ b/lisp/org/org-irc.el
@@ -4,7 +4,7 @@
4;; 4;;
5;; Author: Philip Jackson <emacs@shellarchive.co.uk> 5;; Author: Philip Jackson <emacs@shellarchive.co.uk>
6;; Keywords: erc, irc, link, org 6;; Keywords: erc, irc, link, org
7;; Version: 6.06a 7;; Version: 6.06b
8;; 8;;
9;; This file is part of GNU Emacs. 9;; This file is part of GNU Emacs.
10;; 10;;
diff --git a/lisp/org/org-jsinfo.el b/lisp/org/org-jsinfo.el
index 6766a9d0144..cb6bbd071c8 100644
--- a/lisp/org/org-jsinfo.el
+++ b/lisp/org/org-jsinfo.el
@@ -5,7 +5,7 @@
5;; Author: Carsten Dominik <carsten at orgmode dot org> 5;; Author: Carsten Dominik <carsten at orgmode dot org>
6;; Keywords: outlines, hypermedia, calendar, wp 6;; Keywords: outlines, hypermedia, calendar, wp
7;; Homepage: http://orgmode.org 7;; Homepage: http://orgmode.org
8;; Version: 6.06a 8;; Version: 6.06b
9;; 9;;
10;; This file is part of GNU Emacs. 10;; This file is part of GNU Emacs.
11;; 11;;
@@ -180,8 +180,8 @@ Option settings will replace the %MANAGER-OPTIONS cookie."
180 (setq s (replace-match s t t template)) 180 (setq s (replace-match s t t template))
181 (setq exp-plist 181 (setq exp-plist
182 (plist-put 182 (plist-put
183 exp-plist :style 183 exp-plist :style-extra
184 (concat (or (plist-get exp-plist :style) "") "\n" s))))) 184 (concat (or (plist-get exp-plist :style-extra) "") "\n" s)))))
185 ;; This script absolutely needs the table of contents, to we change that 185 ;; This script absolutely needs the table of contents, to we change that
186 ;; setting 186 ;; setting
187 (if (not (plist-get exp-plist :table-of-contents)) 187 (if (not (plist-get exp-plist :table-of-contents))
diff --git a/lisp/org/org-mac-message.el b/lisp/org/org-mac-message.el
index aef009d12cd..61d5fa7165e 100644
--- a/lisp/org/org-mac-message.el
+++ b/lisp/org/org-mac-message.el
@@ -3,7 +3,7 @@
3;; Copyright (C) 2008 Free Software Foundation, Inc. 3;; Copyright (C) 2008 Free Software Foundation, Inc.
4 4
5;; Author: John Wiegley <johnw@gnu.org> 5;; Author: John Wiegley <johnw@gnu.org>
6;; Version: 6.06a 6;; Version: 6.06b
7;; Keywords: outlines, hypermedia, calendar, wp 7;; Keywords: outlines, hypermedia, calendar, wp
8 8
9;; This file is part of GNU Emacs. 9;; This file is part of GNU Emacs.
diff --git a/lisp/org/org-macs.el b/lisp/org/org-macs.el
index b3cdc060201..e957d3feb2b 100644
--- a/lisp/org/org-macs.el
+++ b/lisp/org/org-macs.el
@@ -5,7 +5,7 @@
5;; Author: Carsten Dominik <carsten at orgmode dot org> 5;; Author: Carsten Dominik <carsten at orgmode dot org>
6;; Keywords: outlines, hypermedia, calendar, wp 6;; Keywords: outlines, hypermedia, calendar, wp
7;; Homepage: http://orgmode.org 7;; Homepage: http://orgmode.org
8;; Version: 6.06a 8;; Version: 6.06b
9;; 9;;
10;; This file is part of GNU Emacs. 10;; This file is part of GNU Emacs.
11;; 11;;
diff --git a/lisp/org/org-mew.el b/lisp/org/org-mew.el
index fe9f7413c59..65d1cc3a4a8 100644
--- a/lisp/org/org-mew.el
+++ b/lisp/org/org-mew.el
@@ -5,7 +5,7 @@
5;; Author: Tokuya Kameshima <kames at fa2 dot so-net dot ne dot jp> 5;; Author: Tokuya Kameshima <kames at fa2 dot so-net dot ne dot jp>
6;; Keywords: outlines, hypermedia, calendar, wp 6;; Keywords: outlines, hypermedia, calendar, wp
7;; Homepage: http://orgmode.org 7;; Homepage: http://orgmode.org
8;; Version: 6.06a 8;; Version: 6.06b
9 9
10;; This file is part of GNU Emacs. 10;; This file is part of GNU Emacs.
11 11
diff --git a/lisp/org/org-mhe.el b/lisp/org/org-mhe.el
index 0f84d02d14a..abec4b9449e 100644
--- a/lisp/org/org-mhe.el
+++ b/lisp/org/org-mhe.el
@@ -5,7 +5,7 @@
5;; Author: Thomas Baumann <thomas dot baumann at ch dot tum dot de> 5;; Author: Thomas Baumann <thomas dot baumann at ch dot tum dot de>
6;; Keywords: outlines, hypermedia, calendar, wp 6;; Keywords: outlines, hypermedia, calendar, wp
7;; Homepage: http://orgmode.org 7;; Homepage: http://orgmode.org
8;; Version: 6.06a 8;; Version: 6.06b
9;; 9;;
10;; This file is part of GNU Emacs. 10;; This file is part of GNU Emacs.
11;; 11;;
diff --git a/lisp/org/org-mouse.el b/lisp/org/org-mouse.el
index a098fc4cefc..7f6827a077d 100644
--- a/lisp/org/org-mouse.el
+++ b/lisp/org/org-mouse.el
@@ -4,7 +4,7 @@
4;; 4;;
5;; Author: Piotr Zielinski <piotr dot zielinski at gmail dot com> 5;; Author: Piotr Zielinski <piotr dot zielinski at gmail dot com>
6;; Maintainer: Carsten Dominik <carsten at orgmode dot org> 6;; Maintainer: Carsten Dominik <carsten at orgmode dot org>
7;; Version: 6.06a 7;; Version: 6.06b
8;; 8;;
9;; This file is part of GNU Emacs. 9;; This file is part of GNU Emacs.
10;; 10;;
diff --git a/lisp/org/org-publish.el b/lisp/org/org-publish.el
index f239aa2ca08..c34d97f8598 100644
--- a/lisp/org/org-publish.el
+++ b/lisp/org/org-publish.el
@@ -4,7 +4,7 @@
4;; Author: David O'Toole <dto@gnu.org> 4;; Author: David O'Toole <dto@gnu.org>
5;; Maintainer: Bastien Guerry <bzg AT altern DOT org> 5;; Maintainer: Bastien Guerry <bzg AT altern DOT org>
6;; Keywords: hypermedia, outlines, wp 6;; Keywords: hypermedia, outlines, wp
7;; Version: 6.06a 7;; Version: 6.06b
8 8
9;; This file is part of GNU Emacs. 9;; This file is part of GNU Emacs.
10;; 10;;
@@ -554,6 +554,7 @@ See `org-publish-org-to' to the list of arguments."
554 (abbreviate-file-name filename)))) 554 (abbreviate-file-name filename))))
555 (error "Can't publish file outside of a project"))))) 555 (error "Can't publish file outside of a project")))))
556 (project-plist (cdr project)) 556 (project-plist (cdr project))
557 (ftname (file-truename filename))
557 (publishing-function 558 (publishing-function
558 (or (plist-get project-plist :publishing-function) 559 (or (plist-get project-plist :publishing-function)
559 'org-publish-org-to-html)) 560 'org-publish-org-to-html))
@@ -565,8 +566,8 @@ See `org-publish-org-to' to the list of arguments."
565 (setq tmp-pub-dir 566 (setq tmp-pub-dir
566 (file-name-directory 567 (file-name-directory
567 (concat pub-dir 568 (concat pub-dir
568 (and (string-match (regexp-quote base-dir) filename) 569 (and (string-match (regexp-quote base-dir) ftname)
569 (substring filename (match-end 0)))))) 570 (substring ftname (match-end 0))))))
570 (if (listp publishing-function) 571 (if (listp publishing-function)
571 ;; allow chain of publishing functions 572 ;; allow chain of publishing functions
572 (mapc (lambda (f) 573 (mapc (lambda (f)
diff --git a/lisp/org/org-remember.el b/lisp/org/org-remember.el
index 2bbb20ef0e6..ebeb1120cac 100644
--- a/lisp/org/org-remember.el
+++ b/lisp/org/org-remember.el
@@ -5,7 +5,7 @@
5;; Author: Carsten Dominik <carsten at orgmode dot org> 5;; Author: Carsten Dominik <carsten at orgmode dot org>
6;; Keywords: outlines, hypermedia, calendar, wp 6;; Keywords: outlines, hypermedia, calendar, wp
7;; Homepage: http://orgmode.org 7;; Homepage: http://orgmode.org
8;; Version: 6.06a 8;; Version: 6.06b
9;; 9;;
10;; This file is part of GNU Emacs. 10;; This file is part of GNU Emacs.
11;; 11;;
diff --git a/lisp/org/org-rmail.el b/lisp/org/org-rmail.el
index d54dfdddd30..4d30664d84a 100644
--- a/lisp/org/org-rmail.el
+++ b/lisp/org/org-rmail.el
@@ -5,7 +5,7 @@
5;; Author: Carsten Dominik <carsten at orgmode dot org> 5;; Author: Carsten Dominik <carsten at orgmode dot org>
6;; Keywords: outlines, hypermedia, calendar, wp 6;; Keywords: outlines, hypermedia, calendar, wp
7;; Homepage: http://orgmode.org 7;; Homepage: http://orgmode.org
8;; Version: 6.06a 8;; Version: 6.06b
9;; 9;;
10;; This file is part of GNU Emacs. 10;; This file is part of GNU Emacs.
11;; 11;;
diff --git a/lisp/org/org-table.el b/lisp/org/org-table.el
index 68963032ff2..2b771a6f671 100644
--- a/lisp/org/org-table.el
+++ b/lisp/org/org-table.el
@@ -5,7 +5,7 @@
5;; Author: Carsten Dominik <carsten at orgmode dot org> 5;; Author: Carsten Dominik <carsten at orgmode dot org>
6;; Keywords: outlines, hypermedia, calendar, wp 6;; Keywords: outlines, hypermedia, calendar, wp
7;; Homepage: http://orgmode.org 7;; Homepage: http://orgmode.org
8;; Version: 6.06a 8;; Version: 6.06b
9;; 9;;
10;; This file is part of GNU Emacs. 10;; This file is part of GNU Emacs.
11;; 11;;
diff --git a/lisp/org/org-vm.el b/lisp/org/org-vm.el
index 6f5e3aaded1..759b0de3815 100644
--- a/lisp/org/org-vm.el
+++ b/lisp/org/org-vm.el
@@ -5,7 +5,7 @@
5;; Author: Carsten Dominik <carsten at orgmode dot org> 5;; Author: Carsten Dominik <carsten at orgmode dot org>
6;; Keywords: outlines, hypermedia, calendar, wp 6;; Keywords: outlines, hypermedia, calendar, wp
7;; Homepage: http://orgmode.org 7;; Homepage: http://orgmode.org
8;; Version: 6.06a 8;; Version: 6.06b
9;; 9;;
10;; This file is part of GNU Emacs. 10;; This file is part of GNU Emacs.
11;; 11;;
diff --git a/lisp/org/org-wl.el b/lisp/org/org-wl.el
index 433343ca29d..e3700b1749c 100644
--- a/lisp/org/org-wl.el
+++ b/lisp/org/org-wl.el
@@ -5,7 +5,7 @@
5;; Author: Tokuya Kameshima <kames at fa2 dot so-net dot ne dot jp> 5;; Author: Tokuya Kameshima <kames at fa2 dot so-net dot ne dot jp>
6;; Keywords: outlines, hypermedia, calendar, wp 6;; Keywords: outlines, hypermedia, calendar, wp
7;; Homepage: http://orgmode.org 7;; Homepage: http://orgmode.org
8;; Version: 6.06a 8;; Version: 6.06b
9;; 9;;
10;; This file is part of GNU Emacs. 10;; This file is part of GNU Emacs.
11;; 11;;
diff --git a/lisp/org/org.el b/lisp/org/org.el
index 40515683075..f5598144d6f 100644
--- a/lisp/org/org.el
+++ b/lisp/org/org.el
@@ -5,7 +5,7 @@
5;; Author: Carsten Dominik <carsten at orgmode dot org> 5;; Author: Carsten Dominik <carsten at orgmode dot org>
6;; Keywords: outlines, hypermedia, calendar, wp 6;; Keywords: outlines, hypermedia, calendar, wp
7;; Homepage: http://orgmode.org 7;; Homepage: http://orgmode.org
8;; Version: 6.06a 8;; Version: 6.06b
9;; 9;;
10;; This file is part of GNU Emacs. 10;; This file is part of GNU Emacs.
11;; 11;;
@@ -91,7 +91,7 @@
91 91
92;;; Version 92;;; Version
93 93
94(defconst org-version "6.06a" 94(defconst org-version "6.06b"
95 "The version number of the file org.el.") 95 "The version number of the file org.el.")
96 96
97(defun org-version (&optional here) 97(defun org-version (&optional here)
@@ -2650,7 +2650,7 @@ collapsed state."
2650(org-autoload (if (featurep 'xemacs) "org-colview-xemacs" "org-colview") 2650(org-autoload (if (featurep 'xemacs) "org-colview-xemacs" "org-colview")
2651 '(org-columns-number-to-string org-columns-get-format-and-top-level 2651 '(org-columns-number-to-string org-columns-get-format-and-top-level
2652 org-columns-compute org-agenda-columns org-columns-remove-overlays 2652 org-columns-compute org-agenda-columns org-columns-remove-overlays
2653 org-columns org-insert-columns-dblock)) 2653 org-columns org-insert-columns-dblock org-dblock-write:columnview))
2654 2654
2655;; Autoload ID code 2655;; Autoload ID code
2656 2656
@@ -5513,7 +5513,8 @@ the language, a switch telling of the content should be in a single line."
5513 (when font-lock-mode 5513 (when font-lock-mode
5514 (font-lock-unfontify-region (point-min) (point-max))) 5514 (font-lock-unfontify-region (point-min) (point-max)))
5515 (put-text-property (point-min) (point-max) 'font-lock-fontified t)) 5515 (put-text-property (point-min) (point-max) 'font-lock-fontified t))
5516 (kill-buffer (current-buffer))) 5516 (kill-buffer (current-buffer))
5517 (and (org-mode-p) (org-restart-font-lock)))
5517 5518
5518;;;; Plain list items, including checkboxes 5519;;;; Plain list items, including checkboxes
5519 5520