ChangeLog fixes
[emacs.git] / lisp / org / ChangeLog
blobbbdf4eaaa2bfbdb24bbe02028973ca3d5c758193
1 2014-10-02  Achim Gratz  <Stromeko@Stromeko.DE>
3         * ob-sh.el (org-babel-sh-initiate-session): After initiating a
4         session, initialize the marker `comint-last-output-start' since it
5         is going to be used by the ANSI color filter without further
6         checks in Emacs 23 and throws an error.
8         * ob-lilypond.el: Change prefix from `ly-' to
9         `org-babel-lilypond-' throughout.
11         * org-footnote.el: Forward declare `org-element-context',
12         `org-element-property' and `org-element-type'.
14         * org.el: Add forward declarations for a number of functions that
15         the compiler otherwise warns about as potentially undefined at
16         runtime.
18         * ob-core.el: Add comment to forward declaration of
19         'org-src-preserve-indentations'.
21         * ob-exp.el: Require org-src to import
22         'org-src-preserve-indentations'.
24         * ob-haskell.el, ob-python.el: Remove superfluous forward
25         declaration of 'org-src-preserve-indentations', since it gets
26         imported by other requires.
28         * ob-core.el (org-every): Forward declare 'org-every'.
30         * ob-C.el: Require cl during compilation so that lexical-let is
31         known.
33         * org-entities.el: Remove superfluous require of org-macs.
34         Forward declare 'org-toggle-pretty-entities' and
35         'org-pretty-entities'.
37         * ox.el (org-export-get-parent): Move definition of
38         'org-export-get-parent' before first use.  Leave comment at original
39         place of definition.
41         * org.el (org-uniquify): Move definition of 'org-uniquify' before
42         first use.  Leave comment at original place of definition.
44         * ob-tangle.el (org-babel-tangle): When `file-name-directory'
45         returns nil, do not run make-directory.  Remove superfluous when
46         clauses by using short-circuiting `and' instead.
48 2014-10-02  Alex Kosorukoff  <alex@3form.com>  (tiny change)
50         * org-capture.el (org-capture-fill-template): Set `mark-active' to
51         nil.
53 2014-10-02  Bastien Guerry  <bzg@gnu.org>
55         * org-agenda.el (org-agenda-prepare): Reset preset filters when
56         using sticky agendas.
58         * org-agenda.el (org-agenda-get-sexps): Don't add tags as text
59         properties.
61         * org-capture.el (org-capture-fill-template): Take
62         `org-extend-today-until' into account when setting the format time
63         string.
65         * org.el (org-paste-subtree): Fix match subexpression.
67         * org.el (org-fix-ellipsis-at-bol): Delete.
68         (org-mode, org-show-context, org-isearch-end): Don't use
69         `org-fix-ellipsis-at-bol'.
71         * org-agenda.el (org-agenda-filter-apply): Fix setting of
72         `org-agenda-filtered-by-category'.
74         * org.el (org-fontify-meta-lines-and-blocks-1): Fix handling
75         of `org-hidden-keywords'.
77         * org-agenda.el (org-cmp-ts): Fix agenda entry type checking.
79         * org-agenda.el (org-entries-lessp): Fix inactive timestamp
80         comparison.
82         * org-agenda.el (org-agenda-mode): Let `org-agenda-redo' DTRT
83         when agenda are sticky.
84         (org-agenda-tag-filter-while-redo): Delete.
85         (org-agenda-list, org-agenda-redo, org-agenda-filter-by-tag):
86         Remove unused code.
87         (org-agenda-clockreport-mode, org-agenda-set-mode-name): Don't
88         consider tag filters.
90         * org.el (org-fix-ellipsis-at-bol)
91         (org-first-headline-recenter): Use `set-window-start' instead
92         of `recenter'.
94         * org-agenda.el (org-recenter-heading): Delete.
96         * org.el (org-insert-heading): With one universal prefix argument
97         or `org-insert-heading-respect-content' set to `t', always respect
98         the content, i.e. don't insert a list item and don't convert
99         normal lines into headings.  Update docstring.
100         (org-insert-heading-respect-content): Remove unused arg.
101         (org-insert-todo-heading-respect-content): Don't use
102         `org-insert-todo-heading-respect-content', use the second argument
103         of `org-insert-todo-heading' instead.
105         * org-mobile.el (org-mobile-edit): Use only one arg.
107         * org.el (org-overview): Don't call `recenter'.
109         * org-agenda.el (org-agenda-custom-commands-local-options): Fix
110         misquoted values.
112         * org.el (org-property-re): Also match null properties by default.
113         (org-entry-delete): Also delete null properties.
114         (org-read-property-value): Allow the empty string as a new value.
115         (org-delete-property): Throw a message when there is not property
116         to delete.
118         * org-agenda.el (org-agenda-insert-diary-make-new-entry): Fix
119         docstring.
121         * org.el (org-re-property): New parameter `allow-null' to match
122         property with a null value.
123         (org-entry-put): Correctly update a property with a null
124         value.
126         * ox-md.el (org-md-headline): When exporting with a HTML table of
127         contents, add HTML anchors to Markdown headlines.
129         * org.el (org-insert-heading): Don't insert an item when called
130         with two universal prefix arguments.
132         * org-agenda.el (org-agenda-finalize): Remove duplicate check for
133         'org-hd-marker.
135         * org-agenda.el (org-agenda-prepare-window): New parameter
136         `filter-alist' to set the filters correctly when
137         `org-agenda-persistent-filter' is on.
138         (org-agenda-prepare): Use the new parameter for
139         `org-agenda-prepare-window'.
141         * org-compat.el (org-in-invisibility-spec-p): Tiny code cleanup.
142         (org-move-to-column): Only remove '(org-filtered) from
143         `buffer-invisibility-spec'.
145         * org-agenda.el (org-agenda-mode): Add buffer invisibility specs.
146         (org-agenda-filter-hide-line, org-agenda-remove-filter): Set
147         the 'invisible text property to 'org-filtered.
148         (org-agenda-show-new-time): Add the default face to avoid the
149         foreground of the last character on the line to leak into the
150         timestamp notification.
152         * org-agenda.el (org-get-time-of-day): Don't return time string
153         from within links.
155         * org-timer.el (org-timer-value-string): Always return a positive
156         value.  Add docstring.
158         * org-capture.el (org-capture-steal-local-variables): Don't steal
159         `mark-active', which should be nil in the target buffer.
161         * org-agenda.el (org-agenda-remove-filter): Use `save-excursion'.
163         * org.el (org-move-subtree-down): Use `org-end-of-subtree' instead
164         of `outline-end-of-subtree'.
165         (outline-end-of-subtree): Remove advice.
167         * org-mouse.el (org-mouse-move-tree, org-mouse-do-remotely): Use
168         `org-end-of-subtree' instead of `outline-end-of-subtree'.
170         * org-agenda.el (org-cmp-ts): Argument `type' is not optional.
171         Don't quote it.
173         * org-habit.el (org-habit-insert-consistency-graphs): Don't remove
174         filter overlays as we don't use overlays for filters anymore.
176         * org-agenda.el (org-agenda-local-vars): Add
177         `org-agenda-top-headline-filter'.
178         (org-agenda-filter-by-category): Fix syntax.
179         (org-agenda-filter-show-all-top-filter): New function.
180         (org-agenda-filter-by-top-headline)
181         (org-agenda-filter-remove-all): Use the new function.
182         (org-agenda-filter-top-headline-apply): Use a dedicated symbol
183         `top-headline'.
185         * org.el (org-entry-properties): Ensure the special property is
186         not commented out when matched.
188         * org-agenda.el (org-agenda-write): Code cleanup.
189         (org-agenda-mark-filtered-text)
190         (org-agenda-unmark-filtered-text)
191         (org-agenda-fix-tags-filter-overlays-at): Delete.
192         (org-agenda-remove-marked-text): Use the `property' argument
193         instead of hard-coding 'org-filtered.
194         (org-agenda-filter-remove-all): Use `org-agenda-finalize'.
195         (org-agenda-filter-hide-line): Rewrite using text properties
196         instead of overlays.
197         (org-agenda-remove-filter): New function.
198         (org-agenda-filter-show-all-tag)
199         (org-agenda-filter-show-all-cat)
200         (org-agenda-filter-show-all-re): Rewrite using
201         `org-agenda-remove-filter'.
203         * org-attach.el (org-attach-dir): When the property is "inherited"
204         from a variable outside of the file, do not use
205         `org-entry-property-inherited-from' to find the attachment
206         position, assume we need to go back to the current headline.
208         * ob-R.el (org-babel-R-assign-elisp): Fix parsing of a
209         one-dimensional value.
211         * org.el (org-insert-heading): Fix bug when trying to insert a
212         heading when point is before the first headline and not at the
213         beginning of a line.
215         * org-table.el (org-table-eval-formula): Fix conversion of
216         inactive timestamps to active ones.
218         * org.el (org-set-regexps-and-options): Allow
219         `org-complex-heading-regexp-format' to match [/] and [%] cookies
220         when they are both before and after the heading.
222         * org-agenda.el (org-agenda-max-todos, org-agenda-max-tags)
223         (org-agenda-max-effort): Fix type strings.
225         * org-capture.el (org-capture-fill-template): Deactivate region
226         while trying to align tags on the current headline.
228         * org-agenda.el (org-agenda-finalize): Filter by top headline if
229         `org-agenda-top-headline-filter' is set.
231 2014-10-02  Bernt Hansen  <bernt@norang.ca>
233         * org-macs.el: Remove restriction when locating markers.
235 2014-10-02  Dmitry Gorbik  <dgorbik@me.com>  (tiny change)
237         * org.el (org-fast-tag-selection): Fix window splitting.
239 2014-10-02  Eric Schulte  <schulte.eric@gmail.com>
241         * ob-screen.el (org-babel-screen-test): Use unpredictable name for
242         temporary file.
244         * ob-screen.el (org-babel-screen-session-write-temp-file): Use
245         unpredictable temp file name, fixes bug#17416.
247 2014-10-02  Ian Kelling  <ian@iankelling.org>
249         * ob-core.el (org-babel-insert-result): Test all list elements
250         against listp and (eq element 'hline) instead of checking just the
251         first.
253 2014-10-02  Konstantin Kliakhandler  <kosta@slumpy.org>  (tiny change)
255         * org-agenda.el (org-agenda-redo): Reapply the filters correctly.
257 2014-10-02  Kyle Meyer  <kyle@kyleam.com>  (tiny change)
259         * ox.el (org-export-show-temporary-export-buffer): Fix typo.
261 2014-10-02  Matt Lundin  <mdl@imapmail.org>
263         * ox-publish.el (org-publish-find-title, org-publish-find-date):
264         Make sure to call org-export-get-environment in copy of buffer if
265         emacs is already visiting. Otherwise, #+bind variables meant for
266         export can be set in live buffers.
268         * org.el (org-agenda-inhibit-startup): fix docstring to reflect
269         default value
271         * ox-publish.el (org-publish-find-title, org-publish-find-date):
272         Fix unnecessary invocations of org-mode with org-inhibit-startup.
274 2014-10-02  Nick Dokos  <ndokos@gmail.com>
276         * org-table.el (org-table-clean-before-export): The regexes match
277         spaces in addition to the special characters that might be used in
278         the first column as special marking characters.  Remove the space
279         from the character class.
281         * ox-ascii.el (org-ascii-superscript): Change _ to ^ in the
282         output.
284 2014-10-02  Nick Dokos  <ndokos@redhat.com>
286         * org-table.el (org-table-show-reference): Call `set-window-start'
287         with the calculated values `min' and `max', not with
288         (point-min) and (point-max).
290 2014-10-02  Nicolas Goaziou  <n.goaziou@gmail.com>
292         * ox-latex.el (org-latex-link): Improve test for unnumbered
293         headlines.
295         * ox-ascii.el (org-ascii--fill-string): Allow filling even when
296         `org-export-preserve-breaks' is non-nil.
298         * org.el (org-N-empty-lines-before-current): Make sure to delete
299         only empty lines, not trailing whitespaces.
301         * ox-html.el (org-html-headline): Make sure even listified
302         headlines have proper anchors so internal links can refer to them.
303         Small refactoring.
305         * org-src.el (org-edit-src-code): Fix regexp.
306         (org-edit-src-exit): Do not remove auto-save timer.  This is
307         handled by the timer itself.
309         * org.el (org-re-property): Fix regexp.  Improve docstring.
311         * org-element.el (org-element-property-drawer-parser)
312         (org-element-node-property-parser): Ignore lines that are not node
313         properties.
314         (org-element-node-property-interpreter): Allow nil properties.
316         * org.el (org-re-property): Fix regexp to match properties with
317         empty values.
319         * org-element.el (org-element-headline-interpreter): Take into
320         consideration `org-odd-levels-only' value.  Small refactoring.
322         * ox-texinfo.el (org-texinfo--get-node): Return a node or anchor
323         name.
324         (org-texinfo--sanitize-content): Fix regexp.
325         (org-texinfo-link): Fix various bugs in link export.
327         * ox-beamer.el (org-beamer-link):
328         * ox-html.el (org-html-link):
329         * ox-latex.el (org-latex-link):
330         * ox-odt.el (org-odt-link): When radio link has no valid
331         target (e.g., this is a subtree export and the radio target is not
332         in the exported subtree), simply return contents.
334         * org.el (org-called-with-limited-levels): Initialize variable.
336         * org-agenda.el (org-agenda-write): Write headings in proper
337         order.
339         * org-element.el (org-element-table-interpreter): Enhance
340         docstring.
342         * ox-md.el (org-md-link): Allow custom link type export function.
344         * ox-texinfo.el (org-texinfo-template): Fix language and encoding
345         case.
347         * ox-md.el (org-md-separate-elements): Outside of lists, preserve
348         blank lines between paragraphs and plain lists.
350         * org-element.el (org-element-normalize-contents): Fix indentation
351         removal when there is an empty line within a verse block.
353         * ox-texinfo.el (org-texinfo--normalize-headlines): Properly add a
354         section to the contents.
356         * ox-texinfo.el (org-texinfo--normalize-headlines): Do not set pre
357         blanks since the value is now hard-coded.
358         (org-texinfo-headline): Force one blank line before contents, when non
359         empty.  Refactoring.
360         (org-texinfo-src-block): Refactor code.  Comply to predicate naming.
362         * ox-texinfo.el (org-texinfo--sanitize-node): Handle
363         " (not)allowed" case.
365         * ox-texinfo.el (org-texinfo-headline): Remove wrong code
366         comments.
368         * ox-texinfo.el (org-texinfo-headline): Remove `not-in-toc'
369         special case for tags.
371         * ox-texinfo.el (org-texinfo-headline): Remove LaTeXism (optional
372         arguments within square brackets).
374         * ox-texinfo.el (org-texinfo-info-process): Fix docstring.
375         (org-texinfo-compile): Do not check for impossible cases (e.g., if the
376         previous variable contains a function).
378         * ox-texinfo.el (org-texinfo-max-toc-depth): Fix docstring.
380         * ox-texinfo.el (org-texinfo--make-option-string,
381         org-texinfo--sanitize-headline,
382         org-texinfo--sanitize-headline-contents): Remove.
384         * ox-texinfo.el (org-texinfo--sanitize-node): "@", "{" and "}"
385         characters are allowed in a node name.  So are "(" and ")" unless
386         "(" starts the name and there is ")" somewhere in the name.  Also
387         trim and collapse whitespace characters.  Renamed from
388         `org-texinfo--sanitize-menu'.
389         (org-texinfo--get-node): Do not sanitize node names over zealously.
390         Ensure returned node names are unique.
391         (org-texinfo-headline): Only add @node command where it makes sense.
393         * ox-texinfo.el (org-texinfo--sanitize-menu)
394         (org-texinfo--sanitize-content): Fix docstrings.
396         * ox-texinfo.el (org-texinfo--normalize-headlines): Make sure a
397         blank line always follows nodes.
399         * ox-texinfo.el (org-texinfo-make-menu): Change signature.  Remove
400         some intermediate functions.  Generate the full master menu when
401         asked.
402         (org-texinfo--build-menu): Use a simpler algorithm.
403         (org-texinfo--format-entries): Fix entries when both node and title
404         are different.
405         (org-texinfo--menu-entries): Renamed from `org-texinfo--generate-menu-list'.
406         (org-texinfo-headline): Move menu handling to next function.
407         (org-texinfo-section): Handle menu for current parent.
408         (org-texinfo--menu-headlines, org-texinfo--generate-detailed): Remove
409         functions.
410         (org-texinfo--normalize-headlines): New function.
412         * ox-texinfo.el (org-texinfo-headline): Fix @appendix command.
414         * ox-texinfo.el (org-texinfo-headline): Do not sanitize heading
415         text for sectioning command.
417         * ox-texinfo.el (org-texinfo--generate-menu-list): ":COPYING: nil"
418         is expected to be equivalent to no COPYING property at all.
420         * ox-texinfo.el (org-texinfo-item): Fix blank lines between items.
422         * ox-texinfo.el (org-texinfo-plain-list): Fix format string.
423         Small refactoring.
425         * ox-texinfo.el (texinfo): Provide new export property.
426         (org-texinfo-template): Use dedicated title for hard copy, when
427         available.
429         * ox-texinfo.el (org-texinfo-headline): Always obey to a non-nil
430         :APPENDIX: property.  Small refactoring.
432         * ox-texinfo.el (org-texinfo-verse-block): Generate somewhat
433         meaningful Texinfo code instead of LaTeX.
435         * ox-texinfo.el (org-texinfo-table): Remove reference to
436         "verbatim" attribute.  Handle table.el tables.  Tiny refactoring.
437         (org-texinfo-table--org-table, org-texinfo-table--table.el-table):
438         Remove functions.
439         (org-texinfo-table-column-widths): Indent code correctly.  Ignore
440         special column, if any.  Add a comment about the limitation on the
441         width computation.
442         (org-texinfo-table-row): Small refactoring.
444         * ox-texinfo.el (texinfo): Do not provide a default value for
445         @setfilename value.
446         (org-texinfo-filename): Remove variable.
447         (org-texinfo-template): Correctly find value for @setfilename command.
448         If none is possible, do not provide the command at all.
450         * ox.el (org-export-to-file): Provide output file name in
451         communication channel, through :output-file property.
453         * ox-texinfo.el (org-texinfo-template): Do not hardcode "Manual"
454         in top node.
456         * ox-texinfo.el (org-texinfo-classes): Change default value.
457         Update docstring.
458         (org-texinfo-template): Insert header string from current class after
459         "@settitle" command.  Always provide "\input texinfo" at the beginning
460         of the output.
462         * ox-texinfo.el (org-texinfo-template): Remove spurious blank
463         lines in output.  Refactor code.
465         * ox-texinfo.el (org-texinfo-template): Fix multi-line subtitles.
467         * ox-texinfo.el (org-texinfo-template): Make sure table of
468         contents are allowed before inserting them.
470         * ox-texinfo.el (org-texinfo-template): Check if copying data is
471         not nil before using it.
473         * ox-texinfo.el (org-texinfo-template): Fix multi-line subauthors.
474         Correctly add email, when provided.  Check if author info is
475         wanted first.
477         * ox-texinfo.el (org-texinfo-node-description-column)
478         (org-texinfo-format-drawer-function): Fix docstrings.
480         * ox-texinfo.el (texinfo): Make sure comments are ignored.
481         (org-texinfo-comment, org-texinfo-comment-block): Remove functions.
483         * ox-texinfo.el (org-texinfo-template): Properly pad @direntry
484         description.
486         * org-element.el (org-element-headline-parser): Add missing
487         `:post-blank' property in docstring.
489         * ox-latex.el (org-latex-table-scientific-notation): Set
490         appropriate value.
491         (org-latex-listings-options): Fix docstring.
493         * ox.el (org-export-raw-special-block-p): New function.
495         * org-element.el (org-element-link-parser): Properly handle
496         multi-line links according to RFC 3986 when enclosed within square
497         brackets.
499         * org-element.el (org-element-parse-secondary-string): Clone all
500         local variables from current buffer before parsing a secondary
501         string.  Small refactoring.
502         (org-element-object-variables): Remove variable.
504         * ox-odt.el (org-odt--format-paragraph): Change signature to
505         include info.
506         (org-odt-footnote-reference, org-odt-paragraph): Apply signature
507         change.
509         * org-clock.el (org-clocktable-indent-string): Use "\emsp" instead
510         of "\__", which is not supported anymore since Org 8.0.
512         * ox-odt.el (org-odt--paragraph-style): New function.
513         (org-odt--format-paragraph): Use new function to get proper style
514         to apply.
516         * org-element.el (org-element--current-element): Fix regexp.
518         * org-element.el (org-element--current-element): Fix regexp
519         matching latex environments.  Discrepancy with regexp used in
520         `org-element-latex-environment-parser' introduced matching errors.
522         * ox-ascii.el (org-ascii--table-cell-width): Correctly export
523         tables with width cookies.
525         * org.el (org-insert-heading): Fix error when inserting a headline
526         before first headline, with point not at bol.  Remove source block
527         check for consistency with behavior after first headline.  Tiny
528         fix to docstring.
530         * org.el (org-scan-tags): Fix typo in docstring.
532         * ox.el (org-export--get-inbuffer-options): Return the empty
533         string instead of nil when TITLE keywords has no value.
534         (org-export--get-buffer-attributes): Do not set :title property
535         early.
536         (org-export--get-global-options): Do not ignore anymore nil values.
537         Small refactoring.
538         (org-export-as): Correctly set :title here.
540         * org-list.el (org-list-repair): Fix typo in docstring.
542         * ox-ascii.el (org-ascii--current-text-width): Tiny fix.
544         * ox-org.el (org-org-section): Tiny refactoring.  Use appropriate
545         property.
547         * ox-org.el (org-org-headline): Ignore footnote sections.
548         (org-org-section): New function.
550         * ox-beamer.el (org-beamer-select-environment): Ignore persistent
551         tags when displaying environments.
553         * ox-ascii.el (org-ascii-indented-line-width): Update docstring.
554         (org-ascii-paragraph): Do not apply indentation to the very first line
555         of a section.
557         * ox-latex.el (org-latex-inlinetask): Skip body if contents are
558         empty.
560         * ox-html.el (org-html-standalone-image-p): Ensure paragraph
561         contains at least a link before return a non-nil value.  Clarify
562         docstring.
564         * ox.el (org-export-data): Always return a string, as specified
565         by the docstring.
567         * ox-ascii.el (org-ascii--indent-string): Fix regexp to avoid
568         stack overflow in regexp matcher on very long lines.
570         * org-element.el (org-element-timestamp-parser): Fix docstring.
572         * ox-icalendar.el (org-icalendar-include-sexps,
573         org-icalendar-blocked-headline-p): Fix docstrings.
574         (org-icalendar-clear-blank-lines): Fix docstring and regexp.
576         * ox-icalendar.el (org-icalendar-entry): Use
577         `org-icalendar-with-timestamps'.
579 2014-10-02  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
581         * org.el (org-cycle-internal-local): Don't show a trailing
582         character when cycling a subtree that ends with a non-newline
583         character at the end of the buffer or the narrowed region.
585 2014-10-02  Sebastien Vauban  <sva-news-D0wtAvR13HarG/iDocfnWg@public.gmane.org>
587         * ox-ascii.el (org-ascii--box-string): Choose more universal
588         Unicode characters for boxquote corners.
590 2014-10-02  marcowahlsoft@gmail.com  <marcowahlsoft@gmail.com>  (tiny change)
592         * org-agenda.el (org-agenda-bulk-mark)
593         (org-agenda-bulk-mark-regexp, org-agenda-bulk-toggle-all): Fix
594         org-agenda-bulk-mark-all when time-grid is shown.
596 2014-05-12  Eric Schulte  <eric.schulte@gmx.com>
598         * ob-screen.el (org-babel-screen-session-write-temp-file)
599         (org-babel-screen-test):
600         Use unpredictable names for temporary files.  (Bug#17416)
602 2014-04-22  Aaron Ecay  <aaronecay@gmail.com>
604         * org-src.el (org-edit-src-exit): Place an undo boundary before
605         writing changes back to parent buffer.
607 2014-04-22  Achim Gratz  <Stromeko@Stromeko.DE>
609         * ob-gnuplot.el (org-babel-gnuplot-process-vars):
610         `org-babel-gnuplot-table-to-data´ expects a table, so we need to
611         construct one when Babel hands us a vector.
613         * ob-ref.el (org-babel-ref-parse): If
614         `org-babel-current-src-block-location' is a marker, it can be from
615         another buffer, use marker-position instead in this case.
617 2014-04-22  Arun Persaud  <apersaud@lbl.gov>  (tiny change)
619         * org-src.el (org-edit-src-exit): Don't add indentation on empty
620         lines.
622 2014-04-22  Bastien Guerry  <bzg@gnu.org>
624         * org.el (org-insert-heading): Fix behavior when point is at the
625         beginning of a heading or a list item.  Enhance docstring.
627         * ox-html.el (org-html-infojs-install-script): Don't install
628         infojs scripts when #+INFOJS_OPT: is empty.
630         * org.el (org-mode): Fix the use of `org-*-element' functions for
631         C-M-a and C-M-e but fix C-M-e.
633         * org-agenda.el (org-agenda-search-view): Fix tag.
635         * org.el (org-check-before-invisible-edit): Don't just cycle, show
636         the subtree, as cycling may leave the current heading folded.
637         (org-contextualize-validate-key): Fix wrong test.
639         * org-bibtex.el (org-bibtex-headline): Don't throw an error when
640         trying to add a keyword field to a BibTeX entry that is not known
641         by BibTeX or defined by the user.
642         (org-bibtex, org-bibtex-no-export-tags): Fix docstrings.
644         * ox-latex.el (org-latex-src-block): Fix wrong propagation of
645         labels and captions when using the listings environment.
647         * org.el (org-sort-entries): Fix the number of blank lines to
648         keep for the last entry to sort.
650         * org-clock.el (org-clock-put-overlay): Fix display when
651         `org-indent-mode' is on.
653         * org.el (org-sort-entries): Allow to sort by clocking time.
655         * org-agenda.el (org-agenda-finalize): Apply all filters
656         correctly.
658         * org.el (org-update-dblock): Use `save-excursion' instead of
659         `save-window-excursion' so that blocks can edit other windows and
660         change the window layout.
662         * org-agenda.el (org-agenda-mode): Disable `indent-tabs-mode'.
663         (org-agenda-dim-blocked-tasks): Make overlays intangible.
664         (org-agenda-show-new-time): Fix bug when deleting a timestamp
665         right after changing it.
666         (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item)
667         (org-agenda-get-sexps, org-agenda-filter-by-regexp)
668         (org-agenda-filter-top-headline-apply): Fix indentation.
670         * org.el (org-cycle): Try `org-try-cdlatex-tab' before trying
671         to edit/move as in a table.
673         * org-agenda.el (org-agenda-show-new-time): Don't use
674         `move-beginning-of-line' as it is slower and not needed.
676         * org-compat.el (org-move-to-column): Temporarily set
677         `buffer-invisibility-spec' more accurately.
679         * ox-latex.el (org-latex-text-markup-alist): Use \ul{...} for
680         underlining instead of \uline{...} as requiring the hyperref
681         package makes \uline{...} unusable on headline.
683         * org.el (org-latex-default-packages-alist): Add the "soul"
684         package.
686         * org.el (org-refresh-properties): Don't add the property to
687         the whole subtree, only to the part between the beginning of
688         the headline and the end of the "content", before any other
689         headline.  This fix a bug about properties displayed as
690         inherited in the agenda, where Org properties are checked
691         against text properties.
693         * ox-latex.el (org-latex--text-markup): Replace newlines by
694         whitespaces in \verb constructs.
696         * org-agenda.el (org-agenda-filter-hide-line): Hide from the
697         beginning of the line to the beginning of the next line.
698         (org-agenda-show-new-time): Use `move-beginning-of-line' and
699         `move-end-of-line'.
700         (org-agenda-drag-line-forward): Adapt to the new definition of
701         hidden filtered lines.
703         * org-compat.el (org-move-to-column): Always ignore invisible
704         text in agenda buffer, and when there is both a bracket link
705         and '(org-link) as a member of `buffer-invisibility-spec'.
706         Add a docstring.
708         * org.el (org-align-tags-here): Add docstring and remove useless
709         arguments when calling `org-move-to-column'.
711         * org-table.el (org-table-copy-down)
712         (org-table-find-dataline, org-table-move-row)
713         (org-table-insert-hline, org-table-kill-row):
714         * org-agenda.el (org-agenda-next-item)
715         (org-agenda-previous-item, org-agenda-todo)
716         (org-agenda-priority, org-agenda-show-new-time)
717         (org-agenda-clock-in, org-agenda-clock-out): Remove useless
718         arguments when calling `org-move-to-column'.
720         * org.el (org-refile): Fix calling with a numeric prefix argument
721         of 3 to refile and keep.
723         * org-clock.el (org-clock-get-table-data): When :link is `t' in
724         the clocktable parameters, bracket links in the clocktable should
725         only contain their description, other C-c C-o will try to open the
726         bracket link at point instead of the headline.
728         * org-agenda.el (org-agenda-todo): Always restore the window state
729         after `org-agenda-change-all-lines' has been called.
730         (org-agenda-open-link): Don't throw an error when trying to open a
731         link when the point is on a place that is not associated with a
732         buffer.
734         * ox-latex.el (org-latex-link): Escape `%' characters.
736         * org.el (org-entry-get-with-inheritance): Remove wrong quote.
737         (org-entry-get): Only try to combine file properties with local
738         properties when the property drawer contains such local property,
739         not when the property drawer exists.
741         * ox-latex.el (org-latex-link):
742         * ox-html.el (org-html-link):
743         * ox-beamer.el (org-beamer-link): Fix links to radio targets.
745         * ox-ascii.el (org-ascii-link): For links to a radio target, use
746         the link, not the target.
748         * org.el (org-do-emphasis-faces): Explicitly prevent nested
749         emphasis.
750         (org-insert-heading): Don't remove whitespaces following an empty
751         headline.
753         * org-timer.el (org-timer-stop): Set `org-timer-current-timer' to
754         nil.
756         * org.el (org-store-link): Ensure desc is not nil before matching
757         a regexp against it.  Fall back on an empty string when no
758         description is available.
760         * org-agenda.el (org-agenda-list-stuck-projects): Bugfix: set
761         `org-agenda-buffer-name'.
763         * org-capture.el (org-capture-finalize): Ensure to widen the
764         buffer when the target buffer is not initially narrowed.
766         * org-compat.el (org-move-to-column): Fix bug about ignoring
767         bracket links visibility status in tables with S-RET.
769         * org-src.el (org-edit-src-find-region-and-lang): Check if we are
770         in a table.el table last.
772         * org.el (org-delete-property): Don't suggest to delete the
773         CATEGORY property when the category is not explicitely set in the
774         property drawer.  Also enforce matching when completing.
775         (org-insert-heading): Fix regression: with two universal prefixes,
776         insert heading at the end of the subtree.
777         (org-insert-todo-heading): Bugfix: only enforce the first TODO
778         state when arg is '(4).
780         * org-agenda.el (org-agenda-skip-subtree-if): Fix docstring.
782         * org.el (org-contextualize-validate-key): Fix bug: perform the
783         check even when (buffer-file-name) returns `nil'.
785         * org-colview.el (org-columns-display-here): Let-bind `fm'.
787         * org.el (org-emphasis-alist): Use `org-verbatim' for =text=
788         and `org-code' for ~text~.
789         (org-open-link-marker): Fix typo in docstring.
791         * org-colview.el (org-columns-display-here): Fix the column
792         view for numbers with a format specifier (e.g. {+; %5.1f}).
794         * org-src.el (org-edit-src-code): Throw a warning instead of
795         an error when loading the mode fails, otherwise the user is
796         left with unusable buffers.
798         * org-table.el (org-table-copy-down)
799         (org-table-find-dataline, org-table-move-row)
800         (org-table-insert-hline, org-table-kill-row): Use
801         `org-move-to-column' with the IGNORE-INVISIBLE arg set to `t', so
802         that abbreviated rows don't interfer with setting the cursor back
803         at the correct position.
805         * org.el (org-agenda-prepare-buffers): Use `save-excursion'
806         instead of `save-window-excursion'.
807         (org-file-contents): Return an empty string instead of the
808         message.
809         (org-open-at-point): Fix bug when opening a plain link followed by
810         a bracket link.
811         (org-ctrl-c-ctrl-c): Fix behavior when hitting C-c C-c on LaTeX
812         formulas in tables.
813         (org-refile--get-location): New internal function using a wider
814         set of possible refile locations.
815         (org-refile-get-location): Use it.
816         (org-refile): Fix bug when refiling the last subtree of the
817         buffer: don't leave out the last character.
818         (org-sort-entries): Restore the point location when there is
819         nothing to sort.
821         * org-table.el (org-table-field-info): Throw a user error when not
822         at a table.
824         * org-agenda.el (org-agenda-drag-line-forward): Call
825         `org-agenda-mark-clocking-task' when done.
826         (org-agenda-mark-clocking-task): Small refactoring.
828         * org-compat.el (org-set-transient-map): Alias pointing at
829         `set-transient-map' if defined, at `set-temporary-overlay-map'
830         otherwise.
832         * org-agenda.el (org-agenda-next-item)
833         (org-agenda-previous-item, org-agenda-toggle-archive-tag)
834         (org-agenda-todo, org-agenda-priority, org-agenda-clock-in)
835         (org-agenda-clock-out): Put the cursor back on the correct
836         column, when possible.
837         (org-agenda-todo): When `org-clock-out-when-done' is `t', also
838         remove the current clock overlay.
840         * org.el (org-format-latex-options): Fix docstring.
842         * ox.el (org-export--get-subtree-options): When using the headline
843         as a title for a subtree export, only take the true heading, no
844         TODO keyword, no priority cookie, no tag.
846         * org.el (customize-package-emacs-version-alist): Fix Org version
847         for Emacs 24.4.
849         * org.el (org-demote): Ignore invisible text when aligning tags.
850         (org-set-tags): When JUST-ALIGN is 'ignore-column, ignore
851         invisible text when restoring the cursor to the correct column.
853         * ob-python.el (org-babel-python-var-to-python): Bugfix: Strip
854         properties before formatting the results.
856         * org-agenda.el (org-agenda-regexp-filter-preset): Fix typo in
857         docstring.
858         (org-agenda-reapply-filters): New function.
859         (org-agenda-drag-line-forward): Rewrite to fix a bug when used
860         in filtered agendas.
861         (org-agenda-drag-line-backward): Rewrite using
862         `org-agenda-drag-line-forward'.
864         * ob-table.el (org-sbe): Rename from `sbe'.
866         * org.el (org-store-link): When a link has been stored, always
867         returns it.
869         * ob-python.el (org-babel-python-var-to-python): Fix code typo.
871         * org-entities.el (org-entities-help): Prevent the display of
872         pretty entities, as this help buffer is meant to list literal
873         strings, not utf-8 representations.
875 2014-04-22  Benjamin Drieu  <bdrieu@april.org>
877         * org.el (org-store-link): Fix selection of the function to store
878         the link.
880 2014-04-22  Ilya Shlyakhter  <ilya_shl@alum.mit.edu>
882         * org.el (org-entry-get-with-inheritance): Temporarily let-bind
883         `org-file-properties', `org-global-properties' and
884         `org-global-properties-fixed' to nil before calling
885         `org-entry-get' on entries up the hierarchy from the queried
886         entry.
888 2014-04-22  Justin Gordon  <justin.gordon@gmail.com>
890         * ox-md.el (org-md-separate-elements): Fix blank line insertion
891         between elements.
893         * ox-md.el (org-md-inner-template): New function.
895 2014-04-22  Leonard Randall  <leonard.a.randall@gmail.com>  (tiny change)
897         * org-bibtex.el (org-bibtex-headline): Fix insertion of keywords
898         of unknown BibTeX entries.
900 2014-04-22  Markus Hauck  <markus1189@gmail.com>  (tiny change)
902         * org-agenda.el (org-agenda-get-scheduled): If
903         `org-agenda-skip-scheduled-if-deadline-is-shown' is set to
904         'repeated-after-deadline, still show tasks without any deadline
906 2014-04-22  Michael Brand  <michael.ch.brand@gmail.com>
908         * org-table.el (org-table-fix-formulas): Handle multiple #+TBLFM
909         lines with `forward-line'.
911 2014-04-22  Michael Weylandt  <michael.weylandt@gmail.com>  (tiny change)
913         * ox-latex.el (org-latex-export-to-latex): Downcase the language
914         name when using minted highlighting for src block exports.
916 2014-04-22  Nick Dokos  <ndokos@gmail.com>
918         * org-mobile.el (org-mobile-create-index-file): delete :grouptags
919         entries from tags list when creating the org-mobile index file.
921 2014-04-22  Nicolas Goaziou  <n.goaziou@gmail.com>
923         * ox.el (org-export-copy-to-kill-ring): Comply to docstrings
924         standards.
926         * org.el (org-sparse-tree): Fix code typo.  Small refactoring.
928         * ox-latex.el (org-latex-link):
929         * ox-html.el (org-html-link):  Do not expand absolute file names
930         and do not try to fix hierarchy part, as it is already taken care of
931         at the parser level.
933         * ox-md.el (org-md-link): Ditto.  Also fix absolute file names.
935         * ox-odt.el (org-odt-link):
936         * ox-man.el (org-man-link):
937         * ox-texinfo.el (org-texinfo-link):
938         * org-element.el (org-element-link-parser): Fix ill-defined "file"
939         type links.  Expand absolute file names in the process.
941         * org.el (org-make-link-regexps): Use `regexp-opt' instead of
942         `mapconcat' and `regexp-quote'.
944         * ox-html.el (org-html-link):
945         * ox-latex.el (org-latex-link):
946         * ox-man.el (org-man-link):
947         * ox-odt.el (org-odt-link):
948         * ox-html.el (org-html-link):
949         * ox-latex.el (org-latex-link):
950         * ox-man.el (org-man-link):
951         * ox-odt.el (org-odt-link):
952         * ox-texinfo.el (org-texinfo-link): Append "//" after some link
953         types.
955         * ox-md.el (org-md-link):
956         * org.el (org-make-link-regexps): Allow optional double slashes
957         after type.  Small refactoring.
959         * org-element.el (org-element-headline-parser): Tiny refactoring.
961         * org-element.el (org-element-headline-parser): Correctly parse
962         blank lines after a headline.
964         * org-element.el (org-element-table-cell-parser)
965         (org-element-table-cell-successor): Recognize cell even when last
966         vertical bar is missing.
968         * ox-md.el (org-md-example-block): handle switches and references
969         in source blocks.
971         * org.el (org-latex-packages-alist)
972         (org-latex-default-packages-alist): Update docstrings.
974         * ox-ascii.el (org-ascii--unique-links): Ignore white spaces when
975         uniquifying links in section.
977         * ox-odt.el (org-odt-template): Ignore blank titles.
979         * ox-publish.el (org-publish-find-title): Fix (invalid-read-syntax
980         "#").
982         * ox-ascii.el (org-ascii-link):
983         * ox-beamer.el (org-beamer-link):
984         * ox-html.el (org-html-link):
985         * ox-latex.el (org-latex-link):
986         * ox-md.el (org-md-link):
987         * ox-odt.el (org-odt-link): Update radio target export according
988         to recent changes.
990         * org-element.el (org-element-all-successors)
991         (org-element-object-restrictions): Prioritize `link' over other
992         successors in order to find radio links starting with another
993         syntax object (e.g., an entity).  Also allow text markup within
994         radio targets.
995         (org-element-link-parser): Add contents to radio targets.
997         * org.el (org-make-target-link-regexp): Fix regexp so it can match
998         targets starting with an Org object (e.g., an entity).
999         (org-ctrl-c-ctrl-c): Fix function when applied on an object contained
1000         within a radio target.
1002         * org.el (org-mode): Change "\" and "~" characters syntax from
1003         `punctuation' to `symbol' so they are on par with other characters
1004         used in Org syntax (e.g., "/", "*"...).
1006         * ox-beamer.el (org-beamer-publish-to-pdf):
1007         * ox-latex.el (org-latex-publish-to-pdf): Ensure ".tex" file is
1008         generated in the same directory as the ".org" file.
1010         * ox-latex.el (org-latex-headline): Hard-code "\underline" in
1011         sections because "\uline" ("ulem" package) returns an error and
1012         "\ul" ("soul" package) doesn't support chinese characters.
1014         * ox-ascii.el (org-ascii-link): Correctly handle case mismatch
1015         between radio targets and radio links.
1017         * org-element.el (org-element-link-parser): "radio" links have
1018         their path downcased to avoid introducing case mismatch with their
1019         relative radio target.  With this change it is also necessary to
1020         add contents to them, since `:path' property no longer matches
1021         real value of the link.
1022         (org-element-radio-target-parser): Downcase value as explained
1023         above.  Store the initial value in a new `:raw-value' property.
1025         * org-element.el (org-element-context): Fix parsing of bold
1026         objects at the beginning of a headline.
1028         * org-element.el (org-element-context): Fix timestamps parsing.
1030         * ox-beamer.el (org-beamer-item): Insert the export snippet right
1031         after the first \item, not all of them.
1033         * org-element.el (org-element--list-struct): Fix regexp.
1035         * org-element.el (org-element-inlinetask-parser): Fix parsing when
1036         regular and degenerate inlinetasks are mixed in the section.
1038         * ox-md.el (org-md-link): Generate md links to other Org files
1039         instead of html links.  Do not confuse caption and alt-text.
1040         Provide "img" as default alt-text.
1042         * org-element.el (org-element-normalize-contents): Do not ignore
1043         empty lines when an object follows.
1044         (org-element-interpret-data): Do not remove properties by
1045         side-effect when interpreting a string, as it also removes them
1046         from the parse tree, making the string unusable without its
1047         :parent property.
1049         * ob-exp.el (org-babel-exp-process-buffer): Also check
1050         `org-src-preserve-indentation' to know when to preserve indentation.
1051         (org-babel-exp-code-template): Include switches in template.
1052         (org-babel-exp-code): Provide %switches placeholder.
1054         * ox-latex.el (org-latex-plain-list): Do not automatically
1055         enclose value for :options attribute within square brackets.
1056         Instead, append them verbatim next to the block name, as special
1057         blocks do.
1059         * ob-exp.el (org-babel-exp-code): Fix export of src blocks with
1060         flags.
1061         (org-babel-exp-process-buffer): Make processing more robust when
1062         results are inserted before source block or when source block is
1063         followed by multiple blank lines.
1065         * ox.el (org-export-insert-default-template): Only insert
1066         keywords and options relatives to the selected back-end.  Ignore
1067         those relatives to its parent in the case of a derived back-end.
1069         * ox-beamer.el: Remove unnecessary package definitions in default
1070         class.
1072         * ox-latex.el (org-latex-headline, org-latex-item): Fix items
1073         starting with a square bracket.
1075         * org.el (org-mode-restart): Fix turning off `org-indent-mode'
1076         when necessary.
1077         (org-get-previous-line-level): Do not call `org-current-level'
1078         twice unless necessary.  Also, avoid using `line-number-at-pos'
1079         when the information needed is to know if point is in the first
1080         line of the visible part of the buffer.
1082         * ob-core.el (org-babel-get-inline-src-block-matches): Do not
1083         compute line number if all is needed is to know if we're on the
1084         first one.
1086         * ox-md.el (org-md-item): Do not return an error when exporting
1087         an empty item.
1089         * ox-beamer.el (org-beamer-select-environment): Function doesn't
1090         work if fast tag selection is disabled, so make sure it is always
1091         on, independently on user's configuration.
1093 2014-04-22  Nikolai Weibull  <now@disu.se>  (tiny change)
1095         * org.el (org-mode): Add guard around set-face-foreground.
1097 2014-04-22  Rasmus  <w530@pank.eu>
1099         * ox-html.el (org-html-html5-elements): Drop reference to hgroup.
1101 2014-04-22  Rick Frankel  <rick@rickster.com>
1103         * ox-html.el (org-html-link): Unescape org-escaped links an
1104         re-escape for html (browser).
1106 2014-04-22  Sacha Chua  <sacha@sachachua.com>
1108         * org.el (org-refresh-properties): Don't throw an error when
1109         reaching the end of the buffer.
1111 2014-04-22  Stefan-W. Hahn  <stefan.hahn@s-hahn.de>  (tiny change)
1113         * org-bibtex.el (org-bibtex-read): Check string length before
1114         using aref.
1116 2014-04-22  Yasushi SHOJI  <yashi@atmark-techno.com>
1118         * ox-ascii.el (org-ascii--current-text-width): Convert `length'
1119         to `string-width'.
1120         (org-ascii--build-title, org-ascii--build-toc)
1121         (org-ascii--list-listings, org-ascii--list-tables)
1122         (org-ascii-template--document-title)
1123         (org-ascii-inner-template, org-ascii-format-inlinetask-default)
1124         (org-ascii-format-inlinetask-default, org-ascii-item
1125         (org-ascii--table-cell-width, org-ascii-table-cell)
1126         (org-ascii--current-text-width): Likewise.
1128 2014-02-25  Glenn Morris  <rgm@gnu.org>
1130         * org-version.el (org-odt-data-dir):
1131         Remove incorrect, duplicate definition.  (Bug#16734)
1133 2014-01-08  Paul Eggert  <eggert@cs.ucla.edu>
1135         Spelling fixes.
1136         * org-irc.el (org-irc-ellipsify-description): Rename from
1137         org-irc-elipsify-description.  All uses changed.
1139 2013-01-07  Bastien Guerry  <bzg@gnu.org>
1141         * org-clock.el (org-clock-cancel-hook)
1142         (org-clock-leftover-time): Fix typo in docstring.
1144         * ox-odt.el (org-odt--frame): Add a draw:name property to the
1145         draw:frame tag.
1146         (org-odt-format-label): Don't use short-caption at all.
1148         * org-rmail.el (org-rmail-follow-link): Don't raise an error when
1149         no article is matched.
1151         * org.el (org-set-tags): Ignore invisible text when restoring
1152         cursor position.
1153         (org-refile-get-location): Check for a refile position when the
1154         position is not nil, otherwise allow to create the parent node if
1155         the user requests it.
1156         (org-refile-allow-creating-parent-nodes): Fix typo in
1157         docstring.
1158         (org-entry-get): Minor docstring enhancement.
1159         (org-set-startup-visibility): Bugfix.
1160         (org-shiftcontrolup, org-shiftcontroldown): When
1161         `org-support-shift-select' is not `nil', let-bind it to nil if
1162         point is on a clock log.  Otherwise throw an error.
1164         * ob-lob.el (org-babel-lob-files): Fix custom type.
1165         (org-babel-lob-ingest): Small docstring fix.
1167         * org-agenda.el (org-cmp-ts): Fix bug: interpret `late' as
1168         `later than any date' instead of `later than today'.
1170         * org.el (org-do-emphasis-faces): Handle false positives by
1171         restarting the re-search one char after the beginning of the
1172         match, not one char before its ending.
1173         (org-entry-put): Check that the value provided is a string.  If it
1174         is nil, convert it to the empty string.
1176         * ob-latex.el (org-babel-latex-htlatex-packages): Use repeat
1177         instead of list as the defcustom type.
1179         * ox.el (org-export-with-creator):
1180         * org.el (org-loop-over-headlines-in-active-region)
1181         (org-mouse-1-follows-link, org-provide-todo-statistics):
1182         * org-agenda.el (org-agenda-custom-commands-local-options)
1183         (org-agenda-start-with-log-mode)
1184         (org-agenda-show-inherited-tags): Don't quote const values.
1186         * ox-texinfo.el (org-texinfo-def-table-markup):
1187         * org-inlinetask.el (org-inlinetask-show-first-star):
1188         * ob-maxima.el (org-babel-maxima-command): Add type.
1190         * org-table.el (org-table-fix-formulas): Handle multiple
1191         #+tblfm: lines.
1193         * ox.el (org-export-to-file): Fix typo in docstring.
1195         * org.el (org-self-insert-command)
1196         (orgtbl-self-insert-command): Change the value of the
1197         `delete-selection' property to allow other commands like
1198         `electric-pair-will-use-region' to be run before deletion.
1200         * org-attach.el (vc-git): Require.
1201         (org-attach-commit): Check whether git is installed.
1203 2013-01-07  Nicolas Goaziou  <n.goaziou@gmail.com>
1205         * ox-icalendar.el (org-icalendar--combine-files): Make sure
1206         anniversaries do not end up in *Message* buffer instead of the ICS
1207         file.
1209         * ox-html.el: Clean up "FIXME" comments.
1211         * ox-publish.el (org-publish-resolve-external-fuzzy-link): Fix
1212         docstring.
1214         * ox.el (org-export-smart-quotes-regexps): Fix smart quote
1215         detection when it is followed by an open parenthesis syntax class.
1217         * org-element.el (org-element-inline-babel-call-successor): Use
1218         original regexp to stay up-to-date with Babel changes.
1219         (org-element--affiliated-re): Fix affiliated keyword regexp.
1221         * ox-org.el (org-org-identity): Since back-end specific keywords
1222         are stripped from output, also remove attr_backend keywords.
1223         (org-babel-exp-process-buffer): Fix duplicate evaluation with
1224         :wrap src.
1225         (org-babel-exp-non-block-elements): Removed function.
1227 2013-01-07  Ted Wiles  <thewiles@wharton.upenn.edu>  (tiny change)
1229         * org-habit.el (org-habit-parse-todo): Match all TODO keywords,
1230         not just "TODO".
1232 2013-01-07  U-usuario  <rbenit68@yahoo.es>  (tiny change)
1234         * ob-gnuplot.el (org-babel-gnuplot-quote-tsv-field): Fix code
1235         typo.
1237 2013-01-07  Vladimir Lomov  <lomov.vl@gmail.com>  (tiny change)
1239         * ox-html.el (org-html-style-default): New classes caption.t-above
1240         and caption.t-bottom.
1241         (org-html-table): Use new classes.
1243 2013-12-23  Chong Yidong  <cyd@gnu.org>
1245         * org.el (orgstruct-make-binding): Call set-transient-map instead
1246         of old name set-temporary-overlay-map.
1248 2013-12-06  Achim Gratz  <Stromeko@Stromeko.DE>
1250         * org-crypt.el: Declare `epg-context´.
1251         (org-encrypt-string): Correct indentation.
1253         * org.el (org-version): Replace `_version´ by `version1´.
1255 2013-12-06  Alexander Vorobiev  <alexander.vorobiev@gmail.com>  (tiny change)
1257         * org-compat.el (org-get-x-clipboard): Use w32-get-clipboard-data
1258         to get the clipboard data under Windows.
1260 2013-12-06  Bastien Guerry  <bzg@gnu.org>
1262         * ox.el (org-export-with-sub-superscripts):
1263         * org.el (org-use-sub-superscripts): Fix version and enhance
1264         docstring again.
1266         * ox.el (org-export-with-sub-superscripts):
1267         * org.el (org-use-sub-superscripts): Enhance docstrings.
1269         * org-macs.el (org-autoload): Delete.
1271         * org-docview.el ("docview"): Fix declarations and require
1272         doc-view directly.
1274         * org-id.el (org-id-copy)
1275         (org-id-get-with-outline-path-completion)
1276         (org-id-get-with-outline-drilling, org-id-new):
1278         * org-colview.el:
1279         (org-colview-initial-truncate-line-value)
1280         (org-columns-open-link, org-string-to-number):
1281         * org-clock.el:
1282         (org-clock-put-overlay, org-count-quarter, org-clock-loaded):
1283         * org-archive.el (org-get-local-archive-location):
1284         * org-agenda.el (org-agenda-todo-custom-ignore-p):
1285         Autoload.
1287         * org.el (org-return-follows-link):
1288         * ob-python.el (org-babel-python-command): Don't use :set.
1290         * ox-odt.el (org-odt-content-template-file): Fix version.
1292         * ox-texinfo.el (org-texinfo-filename): Fix default value.
1293         (org-texinfo-format-headline-function): Use 'ignore as the
1294         default value.
1295         (org-texinfo-format-drawer-function): Use a function as the
1296         default value.  Update docstring.
1297         (org-texinfo-drawer): Always use
1298         `org-texinfo-format-drawer-function' as it is now a function
1299         by default.
1300         (org-texinfo-headline): Compare
1301         `org-texinfo-format-headline-function' against 'ignore.
1302         (org-texinfo-inlinetask): Compare
1303         `org-texinfo-format-inlinetask-function' against 'ignore.
1305         * ox-odt.el (org-odt-format-drawer-function): Use a function as
1306         the default value.  Update docstring.
1307         (org-odt-format-headline-function)
1308         (org-odt-format-inlinetask-function): Fix default value.
1309         (org-odt-drawer): Always use `org-odt-format-drawer-function'
1310         as it is now a function by default.
1311         (org-odt-format-headline--wrap): Compare
1312         `org-odt-format-headline-function' against 'ignore.
1314         * ox-latex.el (org-latex-format-drawer-function): Use a function
1315         as the default value.  Update docstring.
1316         (org-latex-format-inlinetask-function): Fix default value.
1317         (org-latex-drawer): Always use
1318         `org-latex-format-drawer-function' as it is now a function by
1319         default.
1320         (org-latex-inlinetask): Compare
1321         `org-latex-format-inlinetask-function' against 'ignore.
1323         * ox-html.el (org-html-format-drawer-function): Use a function as
1324         the default value.  Update docstring.
1325         (org-html-format-headline-function)
1326         (org-html-format-inlinetask-function): Fix default value.
1327         (org-html--format-toc-headline)
1328         (org-html-format-headline--wrap): Compare
1329         `org-html-format-headline-function' against 'ignore.
1330         (org-html-inlinetask): Compare
1331         `org-html-format-inlinetask-function' against 'ignore.
1333         * ox-ascii.el (org-ascii-format-drawer-function): Use a
1334         function as the default value.  Update docstring.
1335         (org-ascii-drawer): Always use
1336         `org-ascii-format-drawer-function' as it is now a function by
1337         default.
1338         (org-ascii-format-inlinetask-default): New function.
1339         (org-ascii-format-inlinetask-function): Use
1340         `org-ascii-format-inlinetask-default' as the default.
1342         * org.el (org-mouse-1-follows-link): Use :set to set the default
1343         value.  Update custom type.
1344         (org-log-note-headings): Fix order or list items in the custom
1345         type.
1346         (orgstruct-heading-prefix-regexp): Use an empty string as the
1347         default value.  Use 'regexp as the custom type.
1348         (orgstruct-make-binding): Tiny docstring enhancement.  Assume
1349         `orgstruct-heading-prefix-regexp' is a string.
1351         * org-agenda.el (org-agenda-search-view-max-outline-level): Set
1352         default value to 0.  Update docstring.
1353         (org-agenda-deadline-leaders): Fix custom type.
1354         (org-search-view): Assume
1355         `org-agenda-search-view-max-outline-level' is a number.
1357         * ob-ruby.el (org-babel-ruby-nil-to): Fix custom type.
1359         * ob-python.el (org-babel-python-mode): Use :set to set the
1360         default value.
1361         (org-babel-python-None-to): Fix custom type.
1363         * ob-plantuml.el (org-plantuml-jar-path): Fix default value.
1364         (org-babel-execute:plantuml): Assume `org-plantuml-jar-path' is a
1365         string.
1367         * ob-latex.el (org-babel-latex-htlatex): Fix default value.
1368         (org-babel-latex-htlatex-packages): Fix custom type.
1369         (org-babel-execute:latex): Assume `org-babel-latex-htlatex' is a
1370         string.
1372         * ox-odt.el (org-odt-display-outline-level): Fix version.
1374         * ox-odt.el (org-odt-inline-formula-rules)
1375         (org-odt-inline-image-rules, org-odt-use-date-fields): Add version
1376         and package-version.
1378         * ox-html.el (org-html-format-drawer-function)
1379         (org-html-format-headline-function)
1380         (org-html-format-inlinetask-function)
1381         (org-html-creator-string): Add version and package-version.
1383         * ox-html.el (org-html-text-markup-alist): Fix version.
1385         * org-agenda.el (org-agenda-set-restriction-lock): Autoload.
1387         * ob-calc.el (org--var-syms): Rename from `var-syms'.
1389         * ob-lilypond.el (ly-compile-lilyfile): Remove redundant
1390         let-binding.
1392         * ob-table.el (sbe): Move debug declaration.
1394         * org-clock.el (org--msg-extra): Rename from `msg-extra'.
1396 2013-12-06  Nicolas Goaziou  <n.goaziou@gmail.com>
1398         * org.el (org-ctrl-c-ctrl-c): When point is on an unsupported
1399         object, look for something to do at a higher level instead of
1400         bailing out.
1402         * ox-html.el (org-html-format-latex): Add an argument.  Ensure
1403         latex header is the same as specified in the original buffer when
1404         exporting a LaTeX fragment or environment.
1405         (org-html-latex-environment, org-html-latex-fragment): Apply
1406         signature change.
1408         * ox-publish.el (org-publish-cache-ctime-of-src): Return an error
1409         when publishing a non-existent file.
1411         * org-element.el (org-element-paragraph-separate): More accurate
1412         regexp.
1414         * org.el (org-entry-get): Widen buffer in order to retrieve
1415         properties, as `org-entry-properties' and
1416         `org-entry-get-with-inheritance' already do.
1418         * ox-html.el (org-html--format-toc-headline): Add missing headline
1419         number in TOC entries.
1421         * org.el (org-entry-properties): Ignore narrowing when retrieving
1422         current headline properties.
1424 2013-12-06  Thierry Volpiatto  <thierry.volpiatto@gmail.com>  (tiny change)
1426         * org-crypt.el (org-encrypt-string, org-encrypt-entry)
1427         (org-decrypt-entry): Fix warning.
1429 2013-11-17  Paul Eggert  <eggert@cs.ucla.edu>
1431         Spelling fixes.
1432         * ob-python.el (org-babel-python-with-earmuffs):
1433         Rename from org-babel-python-with-earmufs.  All uses changed.
1434         (org-babel-python-without-earmuffs):
1435         Rename from org-babel-python-without-earmufs.  All uses changed.
1437 2013-11-12  Bastien Guerry  <bzg@gnu.org>
1439         * org-agenda.el (org-agenda-set-restriction-lock): Autoload.
1441 2013-11-12  Stefan Monnier  <monnier@iro.umontreal.ca>
1443         Address some byte-compiler warnings.
1444         * ob-calc.el (org--var-syms): Rename from `var-syms'.
1445         * ob-lilypond.el (ly-compile-lilyfile): Remove redundant let-binding.
1446         * ob-table.el (sbe): Move debug declaration.
1447         * org-clock.el (org--msg-extra): Rename from `msg-extra'.
1448         * org.el (org-version): Avoid var name starting with _.
1449         (org-inhibit-startup, org-called-with-limited-levels)
1450         (org-link-search-inhibit-query, org-time-was-given)
1451         (org-end-time-was-given, org-def, org-defdecode, org-with-time):
1452         * org-colview.el (org-agenda-overriding-columns-format):
1453         * org-agenda.el (org-agenda-multi, org-depend-tag-blocked)
1454         (org-agenda-show-log-scoped):
1455         * ob-python.el (py-which-bufname, python-shell-buffer-name):
1456         * ob-haskell.el (org-export-copy-to-kill-ring):
1457         * ob-exp.el (org-link-search-inhibit-query):
1458         * ob-R.el (ess-eval-visibly-p):
1459         * ob-core.el (org-src-window-setup): Declare before use.
1460         (org-babel-expand-noweb-references): Remove unused `blocks-in-buffer'.
1461         * ox-odt.el (org-odt-hfy-face-to-css):
1462         * org-src.el (org-src-associate-babel-session, org-src-get-lang-mode):
1463         * org-bibtex.el (org-bibtex-get, org-bibtex-ask, org-bibtex)
1464         (org-bibtex-check):
1465         * ob-tangle.el (org-babel-tangle, org-babel-spec-to-string)
1466         (org-babel-tangle-single-block, org-babel-tangle-comment-links):
1467         * ob-table.el (sbe):
1468         * ob-sqlite.el (org-babel-sqlite-expand-vars):
1469         * ob-sql.el (org-babel-sql-expand-vars):
1470         * ob-shen.el (org-babel-execute:shen):
1471         * ob-sh.el (org-babel-execute:sh, org-babel-sh-evaluate):
1472         * ob-scala.el (org-babel-scala-evaluate):
1473         * ob-ruby.el (org-babel-ruby-table-or-string)
1474         (org-babel-ruby-evaluate):
1475         * ob-python.el (org-babel-python-table-or-string)
1476         (org-babel-python-evaluate-external-process)
1477         (org-babel-python-evaluate-session):
1478         * ob-picolisp.el (org-babel-execute:picolisp):
1479         * ob-perl.el (org-babel-perl-evaluate):
1480         * ob-maxima.el (org-babel-execute:maxima):
1481         * ob-lisp.el (org-babel-execute:lisp):
1482         * ob-java.el (org-babel-execute:java):
1483         * ob-io.el (org-babel-io-evaluate):
1484         * ob-haskell.el (org-babel-execute:haskell):
1485         * ob-fortran.el (org-babel-execute:fortran):
1486         * ob-exp.el (org-babel-exp-code):
1487         * ob-emacs-lisp.el (org-babel-execute:emacs-lisp):
1488         * ob-ditaa.el (org-babel-execute:ditaa):
1489         * ob-core.el (org-babel-execute-src-block, org-babel-sha1-hash)
1490         (org-babel-parse-header-arguments, org-babel-reassemble-table)
1491         (org-babel-goto-src-block-head, org-babel-mark-block)
1492         (org-babel-expand-noweb-references, org-babel-script-escape)
1493         (org-babel-process-file-name):
1494         * ob-clojure.el (org-babel-execute:clojure):
1495         * ob-calc.el (org-babel-execute:calc):
1496         * ob-awk.el (org-babel-execute:awk):
1497         * ob-R.el (org-babel-expand-body:R):
1498         * ob-C.el (org-babel-C-execute): Avoid deprecated ((lambda) ...).
1500 2013-11-12  Glenn Morris  <rgm@gnu.org>
1502         * ox-html.el (org-html-scripts): Add 2013 to copyright years.
1503         (org-html-infojs-template): Copyright holder to FSF.
1505 2013-11-12  Aaron Ecay  <aaronecay@gmail.com>
1507         * ox-latex.el (org-latex-inline-image-rules): Add "svg" to
1508         supported filetypes.
1509         (org-latex--inline-image): Implement SVG files inclusion.
1510         (org-latex-headline): Don’t insert alternate title if identical to
1511         regular one.
1513         * ob-python.el: Update the arglist passed to `declare-function'
1514         for `run-python'.
1516         * ob-tangle.el (org-babel-tangle): Use `light' argument to
1517         `org-babel-get-src-block-info'.
1519         * ob-core.el (org-babel-execute-src-block): Return nil in case of
1520         `:results none'.  Also run `org-babel-after-execute-hook' in this
1521         circumstance.
1523         * org-id.el (org-id-locations-save): Bind print-(level,length) to
1524         nil in this function.
1526         * ob-R.el (org-babel-R-graphics-devices): New defvar.
1527         (org-babel-R-construct-graphics-device-call): Use it instead of a
1528         hard-coded list of graphics devices.
1530         * ob-core.el (org-babel-when-in-src-block): New macro.
1531         (org-babel-execute-src-block-maybe)
1532         (org-babel-expand-src-block-maybe)
1533         (org-babel-load-in-session-maybe, org-babel-pop-to-session-maybe):
1534         Use it.
1535         (org-babel-execute-src-block): Use `copy-tree' to prevent setf
1536         from modifying users variables withing let-bound `info' variable.
1538         * ob-exp.el (org-export-babel-evaluate): Add a 'inline-only
1539         option.
1540         (org-babel-exp-results): Implement 'inline-only for
1541         `org-export-babel-evaluate'.
1543         * org.el (org-edit-special): Use prefix arg.
1545         * ob-awk.el (org-babel-expand-body:awk, ob-picolisp.el)
1546         (org-babel-expand-body:picolisp): Remove optional arg.
1548         * ob-R.el (org-babel-R-initiate-session): Handle case where the
1549         session buffer exists, but does not have a live process.
1550         (org-babel-R-construct-graphics-device-call): Change file
1551         extension of tikz graphics files to .tikz.
1553         * org-src.el (org-edit-src-exit): Don't modify the undo list when
1554         inserting the code.
1556         * ox-latex.el (org-latex-plain-text): Properly escape "~" for
1557         LaTeX export.
1558         (org-latex-image-default-option): Change default value to "".
1559         (org-latex-image-default-width, org-latex-image-default-height):
1560         New variables.
1561         (org-latex-inline-image-rules): Make .tikz files as exportable
1562         with LaTeX.
1563         (org-latex--inline-image): Support tikz images.  Also support
1564         separate :width and :height parameters for images.
1566         * org-bibtex.el (org-bibtex-ask): Use `visual-line-mode' instead
1567         of longlines-mode.
1569 2013-11-12  Abdó Roig-Maranges  <abdo.roig@gmail.com>
1571         * org.el (org-format-latex): Do not re-generate a LaTeX preview if
1572         the image already exists.
1574         * org-agenda.el (org-agenda-search-view-max-outline-level): New
1575         option to define the max level for the entries shown by the search
1576         view.  A value of 1 means to show the top parent of the entries.
1578         * org.el (org-create-formula-image-with-dvipng): Fix bug that made
1579         this function fail with no :foreground and :background attributes
1580         set, due to bad handling of "Transparent" color.  Fix bug when
1581         colors are not `default'.
1582         (org-format-latex-options): Add `auto' to docstring.
1583         (org-format-latex): Get face colors at point and put them inside
1584         opt.
1585         (org-create-formula-image-with-imagemagick): Fix bug when handling
1586         "Transparent" bg color.
1587         (org-dvipng-color-format): Same as `org-latex-color-format' for
1588         dvipng-style color specification.
1590 2013-11-12  Achim Gratz  <Stromeko@Stromeko.DE>
1592         * ob-core.el (org-babel-check-confirm-evaluate): Return result of
1593         evaluating the function pointed to by `org-confirm-babel-evaluate'
1594         when it is a functionp and its value as a variable otherwise.
1595         (org-babel-get-rownames, org-table.el)
1596         (org-table-transpose-table-at-point): Replace the inadvertent use
1597         of mapcar* (from cl) by plain mapcar and direct cons manipulation.
1598         (org-babel-params-from-properties): Use
1599         `org-babel-current-src-block-location' for evaluating new-style
1600         header-argument properties.  Remove superfluous save-match-data
1601         clauses.  Comment which properties get evaluated where.
1602         (org-babel-insert-header-arg, org-babel-parse-src-block-match):
1603         Replace `if' with empty else part by `when' for readability.
1604         (org-babel-params-from-properties): Inquire for language specific
1605         and default header properties.  Language specific header
1606         properties take precedence over default header properties and
1607         old-style header property specifications.
1609         * org.el (org-re-property): Re-implement using full regex for
1610         `org-re-property'.  Add optional argument LITERAL to flag when
1611         PROPERTY should to be regex-quoted.  Move before definition of
1612         `org-re-property'.
1613         (org-re-property-keyword): Remove, functionality is subsumed by
1614         `org-re-property'.
1615         (org-property-re): Define using `org-re-property'.  Improve
1616         definition so that this regex can be
1617         (org-entry-get, org-property-values): Adjust match number for
1618         PROPVAL.  (org-entry-put): Use `org-re-property' instead of
1619         `org-re-property-keyword'.
1620         used in all situations.  Extend docstring with explanation of
1621         matching groups.
1622         (org-at-property-p): Implement using `org-element-at-point'.
1623         (org-entry-properties, org-buffer-property-keys, org-indent-line):
1624         Use `org-property-re' and adjust match group numbers accordingly.
1626         * org-compat.el (define-obsolete-variable-alias)
1627         (define-obsolete-function-alias): Actually remove the third (and
1628         any following) argument from the argument list before calling the
1629         advised function.  Extend eval-and-compile clause and add advices
1630         for functions that have different parameter lists in XEmacs.  Add
1631         variable definitions that XEmacs lacks .
1633         * ob-fortran.el (org-every): Declare.
1635         * org-element.el (org-element-node-property-parser): Use
1636         `org-property-re' and adjust match group numbers accordingly.
1637         Move `looking-at' out of the let clause to not rely on the
1638         unspecified evaluation order inside the let.
1640         * ob-eval.el, ob.el, org-macro.el, org-mhe.el: Require org-macs
1641         and org-compat as necessary.
1643         * ob-tangle.el (org-edit-special, org-store-link)
1644         (org-open-link-from-string): Declare functions.
1646         * org-macs.el (declare-function): Define macro to use autoload
1647         instead for XEmacs.
1649         * ox-html.el, ox-odt.el: XEmacs does not have table.el, so use
1650         'noerror on the require form.
1652         * ox-texinfo.el (org-texinfo-table-column-widths): Fix spliced
1653         argument list that XEmacs complains about by adding parenthesis.
1655         * ob-octave.el (org-babel-octave-initiate-session): If octave-inf
1656         can't be loaded, try octave instead before giving up.  Emacs
1657         24.3.50 and upwards replaces octave-inf with just plain octave.
1659         * org-id.el (org-id-update-id-locations): Autoload interactive
1660         function.
1662         * ob-core.el (org-babel-parse-inline-src-block-match):
1663         * ob-exp.el (org-babel-exp-src-block): Give header arguments from
1664         properties priority over default header arguments.
1666         * ob-sh.el (org-babel-sh-var-to-sh): When detecting a table, the
1667         first line could be the symbol `hline' rather than a list of table
1668         cells, so check for that as well.
1670         * org.el (org-table-clean-did-remove-column):
1671         * org-table.el (org-table-clean-did-remove-column): Move defvar,
1672         this dynamic variable is only used in org-table.
1674         * org-table.el (org-table-colgroup-info): Remove unused defvar for
1675         `org-table-colgroup-info'.
1676         (org-table-clean-before-export): Let-bind regular expression
1677         strings and remove unused matching group.  Use
1678         `org-table-clean-did-remove-column' in cond statement rather than
1679         branching via if to avoid code duplication.  Remove the code
1680         associated with the removed `org-table-colgroup-info'.
1681         (orgtbl-export): Remove unused internal function.
1683         * org-macro.el (org-macro-expand): Do not try to interpret the
1684         macro replacement text as a regex so that escaped backslashes and
1685         commas in macro arguments will be interpreted correctly.
1687         * ob-perl.el (org-babel-perl-wrapper-method): Select output handle
1688         only after evaluation so that output is not mixed into results
1689         eavaluation.
1690         (org-babel-perl-evaluate): Fix the handling of results for
1691         ":results output" to also parse tables.  Use the same lambda
1692         construction as in ob-sh.el to avoid code duplication.
1694         * ob-exp.el (org-babel-exp-results, org-babel-lob-execute):
1695         Suppress user confirmation of the emacs-lisp wrapper execution
1696         around a lob call.
1698         * ob-perl.el (org-babel-perl-wrapper-method): Use TAB as separator
1699         for table results as expected by
1700         `org-babel-import-elisp-from-file´.
1702         * ob-core.el (org-babel-number-p): String match for any number
1703         moved first so that the match data for the length check does not
1704         become corrupted.
1705         (org-babel-confirm-evaluate-answer-no): Dynamically scoped
1706         variable, if bound non-nil the confirmation dialog will not be
1707         initiated and denial of evaluation is assumed.
1708         (org-babel-check-confirm-evaluate): New macro to establish
1709         bindings based on INFO.
1710         (org-babel-check-evaluate): New defsubst that checks if the
1711         evaluation of a code block is disabled.  Refactors the first part
1712         of the original function `org-babel-confirm-evaluate´.
1713         (org-babel-confirm-evaluate): New defsubst that checks if the user
1714         should be queried and returns the answer.  Keeps the second part
1715         of the original function `org-babel-confirm-evaluate´.
1716         Re-implement using bindings for common subexpressions.
1717         (org-babel-execute-src-block): Do not ask for confirmation if the
1718         cached result is current.
1719         (org-babel-call-process-region-original): Change declaration into
1720         definition with nil initial value at the beginning of the file and
1721         drop the later definition.  Add comment that the dynamic scoping
1722         of this variable is done for tramp.
1724         * org-table.el (org-table-eval-formula): The condition-case to
1725         check for must be "error", not "user-error".
1727         * ob-perl.el (org-babel-execute:perl): Pass `result-params´
1728         through to `org-babel-perl-evaluate´.
1729         (org-babel-variable-assignments:perl): Add "my" to variable
1730         declaration so that it becomes compatible with "use strict;".  Use
1731         new internal formatting function `org-babel-perl--var-to-perl´.
1732         (org-babel-perl--var-to-perl): New internal function, uses Perl
1733         non-interpolating quoting on the string that defines the variable
1734         to suppress spurious interpretation of it as Perl syntax.
1735         (org-babel-perl-wrapper-method): Use a block and declare all
1736         variables as "my", also use Perl quoting throughout.  Redirect
1737         STDOUT to the temporary file so that simply "print" will put the
1738         results there.  Check the return value and output in table form if
1739         it is an ARRAY ref, otherwise print it without a final newline.
1740         (org-babel-perl-preface): Content of this variable is prepended to
1741         body before invocation of perl.  Rename input parameter body to
1742         ibody and let-bind body to concatentation of
1743         `org-babel-perl-preface' and ibody.  Implement results
1744         interpretation so that tables are easier to produce.
1746         * ob-eval.el (org-babel-eval): Use simplified version of
1747         `org-babel--shell-command-on-region´, we are the only caller of
1748         this function.
1749         (org-babel--shell-command-on-region): Replace
1750         `org-babel-shell-command-on-region´ with a much more simplified
1751         internal version, remove superfluous DOCSTRING and interactive
1752         clause, strip out all conditionals which were never used.  Prevent
1753         deletion of temporary input file to aid debugging when the symbol
1754         `org-babel--debug-input´ is bound and has non-nil value.
1756         * ob-tangle.el (org-babel-tangle): Do not change signature, a nil
1757         arg is even documented in the manual.
1759         * org-src.el: Change declaration of `org-babel-tangle´ to "arg"
1760         for first argument.
1762         * ob-core.el (org-babel-execute-src-block): Add binding for
1763         merged-params to avoid multiple evaluation of
1764         `org-babel-merge-params´.  Rename cache? to cache-p, add binding
1765         for cache-current-p and use it.  Do not run
1766         `org-babel-confirm-evaluate´ if source block has a cache and the
1767         cache value is current (there is no evaluation involved in this
1768         case).
1770         * org.el (org-current-time): Replace call to obsolete function
1771         `time-to-seconds´ with a call to compatibility function
1772         `org-float-time´.
1774         * org-compat.el (user-emacs-directory): If not bound, define as an
1775         alias to `user-init-directory´ so that XEmacs continues to be
1776         happy with Org.
1778         * org-macs.el: New macro to allow the 5-argument form of load to
1779         be used where possible without breaking compatibility with XEmacs.
1781         * org.el (org-version, org-reload): Use
1782         `org-load-noerror-mustsuffix´ instead of adding a fifth argument
1783         to load directly.  Guard against undefined variable load-suffixes,
1784         which doesn't exist in XEmacs.
1786         * org.el: Use
1787         `org-define-obsolete-{function,variable}-alias´instead of
1788         `define-obsolate{function,variable}-alias´.
1790         * org-compat.el (user-error): Defalias to `error´ for Emacsen that
1791         don't have it.
1793         * ob-python.el (org-babel-python-hline-to)
1794         (org-babel-python-None-to): Specify customize group as 'org-babel
1795         and widget type as 'string.
1797         * ob.el (org-babel-result-cond): Macro expansion needs to unquote
1798         formal parameter `result-params´.
1800         * org.el (org-reload): Major rewrite.
1802         * org.el (org-clock-get-last-clock-out-time): Declare function.
1804 2013-11-12  Alan Schmitt  <alan.schmitt@polytechnique.org>
1806         * ob-ocaml.el (org-babel-prep-session:ocaml): Use
1807         `save-window-excursion' around the code starting the tuareg
1808         process.
1809         (org-babel-ocaml-command): New option to specify the name of the
1810         toplevel to run.
1811         (org-babel-prep-session:ocaml): Directly call
1812         `tuareg-run-process-if-needed' with `org-babel-ocaml-command' as
1813         argument.
1814         (org-babel-execute:ocaml): Always append ";;" at the end of the
1815         expression before sending it to the toplevel.  Do not remove the
1816         type information if "verbatim" is a results parameter of the code
1817         block.
1818         (org-babel-ocaml-parse-output): Make sure the complete type is
1819         taken into account when matching against known types.
1821         * org-faces.el (org-footnote): Fix docstring.
1823 2013-11-12  Andreas Leha  <andreas@lehas.net>
1825         * ob-latex.el (org-babel-execute:latex): Add a tizk option that
1826         copies the body of the block into a tikz file.
1828 2013-11-12  Arun Persaud  <apersaud@lbl.gov>
1830         * org-agenda.el (org-agenda-prefix-format): Add documentation for
1831         the new %b option.
1832         (org-prefix-has-breadcrumbs): Add flag, `t' when %b is set.
1833         (org-agenda-format-item): Add breadcrumbs if requested.
1834         (org-compile-prefix-format): Add compiled information for
1835         breadcrumbs, add %b option.
1837 2013-11-12  Aurélien Aptel  <aurelien.aptel@gmail.com>  (tiny change)
1839         * ox-html.el (org-html-code, org-html-verbatim): Remove fancy
1840         string replacements for code and verbatim text when exporting to
1841         HTML.
1843 2013-11-12  Bastien Guerry  <bzg@gnu.org>
1845         * org.el (org-align-tags-here): Fix bug: move to the correct
1846         position.
1847         (org-agenda-prepare-buffers): Restore the point position.
1848         (org-insert-link): Don't remove brackets when they belong to a
1849         timestamp in a headline.
1851         * org-capture.el (org-capture-refile): Don't finalize prematurely.
1852         (org-capture): Store :return-to-wconf earlier.
1853         (org-capture-place-template): Don't store :return-to-wconf when
1854         called from a capture template using `function', rely on the early
1855         :return-to-wconf value store from `org-capture'.
1857         * org-compat.el (org-move-to-column): New argument
1858         `ignore-invisible' to turn on `buffer-invisibility-spec'.
1860         * org-agenda.el (org-agenda-show-new-time): Ignore invisible text
1861         when inserting the new time as a text property.
1862         (org-agenda-filter-make-matcher): When filtering tags and hitting
1863         space, filter out entries with tags, only keep those without tags.
1864         (org-agenda-drag-line-forward, org-agenda-drag-line-backward): Fix
1865         bugs: don't drag lines without text and don't drag lines
1866         before/after hidden lines.
1868         * ox-odt.el (org-odt-table-style-format): Use %s for inserting the
1869         rel-width property as a string.
1870         (org-odt-template): Fall back on a string for :rel-width.
1872         * org.el (org-directory, org-default-notes-file)
1873         (org-reverse-note-order): Don't use the `org-remember'
1874         customization group.
1875         (org-require-autoloaded-modules): Don't require
1876         `org-remember'.
1878         * org-capture.el: Update commentary section to reflect the fact
1879         that org-remember.el is not used anymore.
1881         * org.el (org-babel-load-file): Set `exported-file' correctly, in
1882         case the file as been tangled using a buffer-local value.
1884         * ob-tangle.el (org-babel-tangle-file): Return the list of tangled
1885         files.
1887         * ox-org.el (org-org-publish-to-org): When htmlizing an .org file,
1888         ensure to show all headings and all blocks before fontifying.
1890         * ob-shen.el (org-babel-ruby-var-to-ruby): Declare.
1892         * ox.el: Fix comment: remove reference to the obsolete variable
1893         `org-export-language-setup'.
1895         * org.el (org-set-regexps-and-options-for-tags): Fix concatenation
1896         of the tags list.
1898         * ox-odt.el (org-odt-pixels-per-inch): Use 96.0 as the default.
1900         * org.el (org-refile): With a numeric prefix argument of `3',
1901         emulate (setq org-refile-keep t) and copy the subtree to the
1902         target location, don't delete it.
1903         (org-set-regexps-and-options-for-tags): Fix the setting of tag
1904         groups when relying on `org-tag-alist', not on tags directly set
1905         in the buffer with the #+TAGS option.
1907         * org-agenda.el (org-agenda-archive-with): Save window excursion.
1909         * org.el (org-forward-element, org-backward-element): Throw a
1910         message instead of an error when trying to move from a position
1911         where there is no element.
1912         (org-clock-is-active): Fix docstring.
1914         * org-list.el (org-sort-list): Use `x' instead of `c' for sorting
1915         plain list by checked status.
1917         * org.el (org-structure-template-alist): Fix custom type and
1918         default value.
1919         (org-set-regexps-and-options-for-tags): Enhance docstring.
1920         (org-set-regexps-and-options): Make sure not to add
1921         `org-tag-alist' twice when setting this variable through et
1922         #+setupfile: directive.
1923         (org-tags-expand): Use `with-syntax-table'.
1925         * org-list.el (org-sort-list): Implement sorting by "checked"
1926         status for check lists.
1928         * org-table.el (org-table-sum): Fix rounding error when summing
1929         times.
1931         * ob-scheme.el (org-babel-scheme-execute-with-geiser): Fix code
1932         typo.  Add declarations.
1934         * ox-html.el (org-html-link-use-abs-url): New option.
1935         (org-html-link): Use it to prepend relative links with the value
1936         of HTML_LINK_HOME, when defined.
1938         * org.el (org-refile): Fix refiling the active region within an
1939         list.  Don't store the last refiled subtree in the kill ring.
1941         * org.el (org-mode-map): Remap `forward-paragraph' and
1942         `backward-paragraph' to `org-forward-element' and
1943         `org-backward-element'.
1945         * ox-html.el (org-html-begin-plain-list): New parameter
1946         `ordered-num' to tell whether the list is ordered numerically.
1947         (org-html-plain-list): Handle alphabetical ordered list.
1949         * org-agenda.el (org-batch-agenda): Let-bind `org-agenda-sticky'
1950         to nil during batch export.
1952         * org.el (org-copy-subtree): Fix typo in docstring.
1953         (org-scan-tags): Don't disable `case-fold-search' too early.
1955         * org-agenda.el (org-agenda-skip-eval): Fix typo in docstring.
1957         * org-capture.el (org-capture-set-target-location): Don't throw an
1958         error when `org-time-was-given' is not bound.
1960         * org-clock.el (org-clock-modify-effort-estimate): Clarify
1961         docstring.
1963         * org.el (org-set-regexps-and-options-for-tags): Return a list
1964         with tag-related variables.
1965         (org-set-regexps-and-options): Append tags from a setup file to
1966         the local tags of the file.
1967         (org-agenda-prepare-buffers): Set tags from a setup file by
1968         calling `org-set-regexps-and-options' when necessary.
1969         (org-set-regexps-and-options): Fix `org-deadline-time-hour-regexp'
1970         and `org-scheduled-time-hour-regexp'.
1972         * org-table.el (org-table-TBLFM-begin-regexp): Rename from
1973         `org-TBLFM-begin-regexp'.
1974         (org-table-calc-current-TBLFM): Rename from
1975         `org-calc-current-TBLFM'.
1977         * org.el (org-ctrl-c-ctrl-c): Require org-table if needed.
1978         (org-refresh-properties): Put the text property on the whole
1979         subtree, not just on the headline.
1980         (org-get-outline-path): Remove statistical and checkboxes cookies.
1982         * org-agenda.el (org-agenda, org-search-view, org-tags-view)
1983         (org-agenda-get-day-entries, org-agenda-set-restriction-lock): Use
1984         (current-buffer) as the value of `org-agenda-restrict'.  Fix a bug
1985         about narrowing to wrong region boundaries when
1986         `org-agenda-restrict' is non-nil.
1988         * org.el (org-agenda-text-search-extra-files): Fix typos in
1989         docstring.
1990         (org-insert-heading): Fix case when there the first heading starts
1991         at the beginning of the buffer.
1993         * ob-core.el (org-babel-expand-src-block): Use
1994         `org-called-interactively-p'.
1996         * org.el (org-agenda-prepare-buffers): Avoid duplicates in
1997         `org-tag-alist-for-agenda' correctly.
1998         (org-read-date-minibuffer-local-map): Check if we are at the
1999         beginning of the prompt, not if we are after a whitespace.  Bind
2000         C-. to `calendar-goto-today'.
2002         * org-clock.el (org-clock-in): Don't forward by one character when
2003         setting the marker in the clock history.
2005         * org.el (org-read-date-minibuffer-local-map): Call
2006         `calendar-goto-today' only if there is a space before point in the
2007         minibuffer prompt.
2008         (org-insert-heading): Reveal context when called interactively.
2009         Fix bug about wrong conversion of lines with :END: or #+end_ into
2010         headlines.
2011         (org-in-drawer-p): New function.
2012         (org-meta-return): Use `org-catch-invisible-edits' and the
2013         `org-in-drawer-p' to check whether we are within a drawer.
2015         * org-list.el (org-sort-list): Fix infloop.
2017         * org.el (org-clone-subtree-with-time-shift): Unconditionally ask
2018         for a time shift if there is a time-stamp.  Don't ask for a time
2019         shift when called with a universal prefix argument.
2021         * ob-core.el (org-babel-insert-result): Fix bug when inserting
2022         results as a list: ensure we split a string containing "\n".
2024         * ox-html.el: Fix copyright header.
2026         * org.el (org-store-link): Don't add a search string when storing
2027         a link from a radio target.
2028         (org-open-at-point): Jump to the radio link (<<<radio>>>), not to
2029         the simple target (<<target>>).
2031         * org-table.el (org-table-get-remote-range): Fix typo.
2033         * org-datetree.el (org-datetree-find-month-create)
2034         (org-datetree-find-day-create): Add a docstring.
2035         (org-datetree-find-year-create): Only match headlines with a
2036         year or a year and one or more tags.
2038         * org-crypt.el (org-crypt-check-auto-save)
2039         (org-crypt-use-before-save-magic): Use `org-add-hook' when the
2040         hooks are local hooks.
2042         * org-agenda.el (org-agenda-mode): Use `org-add-hook' and merge
2043         upstream change from Emacs 2013-04-18T00:12:33Z!monnier@iro.umontreal.ca.
2045         * ob-core.el (org-babel-pop-to-session-maybe): Fix docstring.
2046         (org-babel-pop-to-session-maybe): Use true function's name,
2047         not its alias.
2049         * org-agenda.el (org-agenda-drag-line-forward)
2050         (org-agenda-drag-line-backward): New commands.
2051         (org-agenda-mode-map): Bind the new commands to M-<down> and
2052         M-<up> respectively.
2054         * org.el (org-insert-heading): Fix insertion of items.
2056         * org-capture.el (org-capture-use-agenda-date): Fix docstring.
2058         * org-agenda.el (org-agenda-bulk-toggle): Fix docstring.
2059         (org-agenda-bulk-toggle-all): New command.
2060         (org-agenda-mode-map): Bind `org-agenda-bulk-toggle' to `M-m'
2061         and `org-agenda-bulk-toggle-all' to `M-*'.
2062         (org-agenda-menu): Add `org-agenda-bulk-toggle' and
2063         `org-agenda-bulk-toggle-all'.
2064         (org-agenda-bulk-mark, org-agenda-bulk-unmark): Jump to the
2065         next headline, not the next line.
2067         * org-capture.el (org-mks): Fix bug: let-bind `case-fold-search'
2068         to nil while matching the first letter of a multi-letters
2069         template.
2071         * org.el (org-store-link): When a bracket link is found in a
2072         headline, use the link description or the link path.
2073         (org-flag-drawer, org-hide-block-toggle)
2074         (org-goto-left, org-goto-right, org-promote)
2075         (org-paste-subtree, org-narrow-to-block, org-sort-entries)
2076         (org-insert-link, org-offer-links-in-entry, org-open-file)
2077         (org-refile, org-refile-get-location)
2078         (org-refile-check-position, org-prepare-dblock, org-todo)
2079         (org-auto-repeat-maybe, org-show-todo-tree, org-sparse-tree)
2080         (org-occur, org-priority, org-scan-tags)
2081         (org-get-tags-string, org-property-action, org-set-effort)
2082         (org-entry-put, org-insert-drawer)
2083         (org-compute-property-at-point)
2084         (org-property-next-allowed-value, org-evaluate-time-range)
2085         (org-closest-date, org-timestamp-change)
2086         (org-revert-all-org-buffers, org-cycle-agenda-files)
2087         (org-agenda-file-to-front, org-remove-file)
2088         (org-preview-latex-fragment, org-format-latex)
2089         (org-create-math-formula, org-create-formula-image)
2090         (org-speed-command-help, org-check-before-invisible-edit)
2091         (org-modifier-cursor-error, org-hidden-tree-error)
2092         (org-mark-subtree, org-kill-line, org-first-sibling-p)
2093         (org-up-element, org-down-element)
2094         (org-drag-element-backward, org-drag-element-forward)
2095         (org-unindent-buffer, org-speedbar-set-agenda-restriction): Use
2096         `user-error' instead of `error'.
2098         * ox-latex.el (latex): Don't force exporting with smart quotes.
2100         * ox.el (org-export-with-smart-quotes): Mention the need to use
2101         the relevant Babel package when setting this option to non-nil.
2103         * org-src.el (org-edit-src-turn-on-auto-save): New option.
2104         (org-edit-src-code): Use it.
2105         (org-edit-src-auto-save-idle-delay): Enhance docstring.
2107         * org-capture.el (org-mks): Make cursor invisible.
2109         * org.el (org-link-expand-abbrev): Save match data before before
2110         calling the replacement function.
2112         * org-list.el (org-sort-list): Don't move point when matching time
2113         values.
2115         * org.el (org-shifttab): Show the correct number of empty
2116         headlines when called with a numeric prefix argument.  Enhance
2117         docstring.
2118         (org-uniquify): Use `copy-sequence'.
2119         (org-adaptive-fill-function, org-fill-paragraph): Throw a useful
2120         error message when parse an element fails in the current buffer.
2122         * ox.el (org-export-with-planning): Enhance docstring.
2124         * org.el (org-closed-keep-when-no-todo): New option.
2125         (org-todo): Use the new option.
2126         (org-open-line): Rename from `org-ctrl-o'.
2127         (org-mode-map): Use `remap'.
2128         (org-cycle-emulate-tab, org-file-apps)
2129         (org-set-font-lock-defaults)
2130         (org-translate-link-from-planner, org-link-search)
2131         (org-refile-get-targets, org-read-date-get-relative): Minor
2132         code clean-up: fix dangling parentheses.
2134         * org-agenda.el (org-agenda-entry-text-mode): Also check against
2135         regexp filters.
2136         (org-timeline): Handle `org-agenda-show-log'.
2138         * org-clock.el (org-clock-select-task): Remove successive
2139         duplicates in the clock history to consider.
2141         * org.el (org-uniquify-alist): Improve docstring.
2142         (org-make-tags-matcher, org-change-tag-in-region): Add buffer's
2143         tags to the tags completion table.
2144         (org-tags-expand): Prevent circular replacement of group tags.
2145         Tiny docstring formatting.
2146         (org-uniquify): Make a defsubst.  Use `delete-dups' instead of
2147         `add-to-list'.
2148         (org-todo): Also remove the CLOSED planning information when
2149         removing the TODO keyword.
2150         (org-forward-heading-same-level): Fix bug when forwarding
2151         to a hidden subtree of the same level.
2152         (org-tags-expand): Use word delimiters when building the tag
2153         search regexp.
2155         * org-clock.el (org-clock-insert-selection-line): Don't display
2156         the clockout time.
2158         * org.el (org-emphasis-regexp-components): Make a defvar.
2159         (org-emphasis-alist): New default value: don't set HTML tags.
2160         (org-emphasize, org-set-emph-re): Use the new value of
2161         `org-emphasis-alist'.
2163         * org-mobile.el (org-mobile-edit): Insert new headings at the end
2164         of the parent subtree.  Use `org-at-heading-p' instead of the
2165         obsolete `org-on-heading-p'.
2167         * org.el (org-insert-heading): When called from a list item and
2168         `org-insert-heading-respect-content' is non-nil, insert a heading,
2169         not an item.
2170         (org-insert-heading-respect-content): Fix docstring.
2171         (org-insert-heading): When in a non-empty non-headline line,
2172         convert the current line into a headline.
2174         * org-table.el (org-table-copy-down): Don't move cursor when
2175         getting the field.
2177         * ox-icalendar.el (org-icalendar-export-current-agenda): Do not
2178         evaluate babel code blocks.
2180         * ox-html.el (html): Add more options.
2182         * ox-publish.el (org-publish-project-alist): Add :with-planning in
2183         docstring.
2185         * ob-exp.el (org-babel-exp-src-block): Tiny docstring fix.
2187         * ox-icalendar.el (org-icalendar--combine-files): Fix typo.
2189         * org-mouse.el (org-mouse-agenda-context-menu): Fix a function's
2190         name.
2192         * ox.el (org-export-options-alist, org-export--skip-p): Use
2193         `:with-planning' instead of `:with-plannings', to keep in sync
2194         with the corresponding option's name.
2196         * ob-core.el (org-babel-confirm-evaluate): Fix typo in docstring.
2198         * org-agenda.el (org-agenda-undo, org-agenda)
2199         (org-agenda-append-agenda)
2200         (org-agenda-get-restriction-and-command, org-agenda-write)
2201         (org-agenda-clock-cancel)
2202         (org-agenda-diary-entry-in-org-file, org-agenda-diary-entry)
2203         (org-agenda-execute-calendar-command)
2204         (org-agenda-goto-calendar, org-agenda-convert-date)
2205         (org-agenda-bulk-mark, org-agenda-bulk-action)
2206         (org-agenda-show-the-flagging-note): Use `user-error' instead of
2207         `error'.
2209         * org-macs.el (org-with-remote-undo): Normalize argument names.
2211         * org.el (org-store-log-note): Fix `buffer-undo-list' when called
2212         after `org-agenda-todo'.
2213         (org-add-log-note): Minor formatting fix.
2215         * org-agenda.el (org-agenda-append-agenda): Set buffer read only.
2217         * org-clock.el (org-clock-select-task): Throw a user error when
2218         the clock history is empty.
2220         * org-table.el (org-table-get-remote-range): Fix docstring: use
2221         #+NAME instead of #+TBLNAME.
2223         * ob-ref.el: Use #+NAME instead of #+TBLNAME in comment.
2225         * ox-html.el (org-html-table-row-tags): Better example.
2227         * org-clock.el (org-clock-select-task): Fix window to buffer.
2228         Hide the cursor.
2229         (org-clock-insert-selection-line): Add the clock-out time.
2231         * ox-html.el (org-html-table-row-tags): Allow new dynamically
2232         bound value `row-number'.
2233         (org-html-table-row): Bind `row-number' to the number of the
2234         row (first row is 0).
2236         * org.el (org-minutes-to-clocksum-string): Round fractions of
2237         minutes.
2239         * ox-html.el (org-html-table-row-tags): Fix example in docstring.
2241         * org-agenda.el (org-agenda-span-to-ndays): Enhance docstring.
2242         (org-agenda-goto-date): Fix bug when going to a date in month
2243         view.
2244         (org-agenda-goto-date): Put the cursor on the agenda line with the
2245         selected date.
2246         (scheduled/deadline items with hour spec) then redo an agenda*.
2248         * org-clock.el (org-clock-resolve): Enhance the content of the
2249         help window.
2251         * org-footnote.el (org-footnote-auto-label): Minor docstring fix.
2253         * ox-odt.el (org-odt-link): Fix bug: convert & to &amp; in
2254         links.
2256         * ox-html.el (org-html-table-row): Dynamically bind
2257         `rowgroup-number', `start-rowgroup-p', `end-rowgroup-p',
2258         `top-row-p', `bottom-row-p'.
2259         (org-html-table-row-tags): Update docstring: tell what variables
2260         are dynamically bound.
2262         * org-src.el (org-edit-src-code): Don't set
2263         `buffer-auto-save-file-name' unless `auto-save-default' is
2264         non-nil.
2266         * ox.el (org-export-table-row-group): Fix typo in docstring.
2268         * org-table.el (orgtbl-apply-fmt): Enhance docstring.
2270         * org.el (org-file-contents): Make the message more prominent.
2272         * ox.el (org-export-replace-region-by): New function.
2274         * ox-texinfo.el (org-texinfo-convert-region-to-texinfo),
2275         * ox-md.el (org-md-convert-region-to-md),
2276         * ox-latex.el (org-latex-convert-region-to-latex),
2277         * ox-html.el (org-html-convert-region-to-html): New functions to
2278         replace the active region by its export into various backends.
2280         * org-faces.el (org-agenda-restriction-lock): Use less flashy
2281         colors.
2283         * org-agenda.el
2284         (org-agenda-restriction-lock-highlight-subtree): New option.
2285         (org-agenda-top-headline-filter): Rename from
2286         `org-agenda-top-headline-filter'.
2287         (org-find-top-headline): Rename from `org-find-top-category'.
2288         Add a docstring.
2289         (org-agenda-filtered-by-top-headline): Rename from
2290         `org-agenda-filtered-by-top-category'.
2291         (org-agenda-filter-by-top-headline): Rename from
2292         `org-agenda-filter-by-top-category'.  Fix docstring.
2293         (org-agenda-filter-top-headline-apply): Rename from
2294         `org-agenda-filter-top-category-apply'.  Fix docstring.
2295         (org-agenda-mode-map): Update binding.
2296         (org-agenda-get-todos): Set `todo-state' earlier so that we can
2297         skip false-positives in time.
2299         * org.el (org-get-todo-state): Add a docstring.
2300         (org-ctrl-o): New command to insert a new row in tables
2301         (like `M-S-<down>' does) and open a line elsewhere.
2302         (org-mode-map): Bind the new command to `C-o'.
2303         (org-set-regexps-and-options): Process tags from an external setup
2304         file.
2306         * org-agenda.el (org-agenda-dim-blocked-tasks): Enhance docstring.
2307         (org-agenda-finalize-entries): Conditionally apply limits so
2308         that we don't manipulate big lists uselessly.
2309         (org-agenda-limit-entries): Limit exclusively.  E.g., when
2310         limiting to a maximum of "2 tags", don't limit among tagged
2311         entries only, but limit among all entries.
2312         (org-agenda-limit-interactively): New command.
2313         (org-agenda-mode-map): Bind the new command to "~".
2314         (org-agenda-redo): Small fix: don't use `eval'.
2316         * org.el (org-ctrl-c-ctrl-c): Fix bug wrt updating checkboxes: the
2317         list beginning should be stored using a marker so that updating
2318         [%0] to [%50] will not throw an error.
2319         (org-babel-load-file): Move `org-babel-load-file' from
2320         ob-tangle.el to here so that it is correctly autoloaded by Emacs
2321         before Org is required.
2323         * org-mac-message.el: Delete.
2325         * org.el (org-modules): org-mac-message.el is not a core package
2326         anymore.
2328         * org-table.el (orgtbl-to-generic): Fix bug when exporting the
2329         cells of radio tables with 'hline.
2331         * org.el (org-speed-commands-default): Use ?s for
2332         `org-narrow-to-subtree'.
2334         * org-agenda.el (org-agenda-start-on-weekday): Fix typo.
2335         (org-agenda-start-day): Enhance docstring.
2337         * org-src.el (org-src-native-tab-command-maybe): Check that we are
2338         in a source code block.
2340         * org-mobile.el: Remove useless defvar.
2342         * org.el (org-indent-line): A line just below a line with a list
2343         item is now indented depending on the indentation of this list
2344         item.
2346         * org.el (org-options-keywords): Add #+TARGET.
2348         * org-clock.el (org-resolve-clocks-if-idle): Only try to resolve
2349         last clock if the clock buffer still exists.
2350         (org-clock-out, org-clock-cancel): Set markers to nil.
2352         * ox-org.el (org-org-publish-to-org):
2353         * ox-html.el (org-html-publish-to-html): Use the custom extension.
2355         * org.el (org-cycle-internal-local): Fix invalid search bound when
2356         `org-cycle-include-plain-lists' is set to 'integrate.
2358         * org.el (org-sparse-tree-default-date-type): Add an option for
2359         closed time-stamps.
2360         (org-sparse-tree): Allow to check against closed time-stamps.
2361         (org-re-timestamp): Handle closed time-stamps.
2362         (org-closed-in-range): Delete.
2364         * org-capture.el (org-capture-import-remember-templates): Take
2365         care of adding :jump-to-captured option if needed.
2367         * org.el (org-toggle-pretty-entities): Enhance messages.
2368         (org-raise-scripts): Handle scripts like "a_b^c".
2370         * org-capture.el (org-capture-templates): Document new option
2371         :jump-to-captured in the docstring.  Offer the complete list of
2372         options when customizing.
2373         (org-capture-finalize): Handle :jump-to-captured.
2375         * org.el (org-agenda-prepare-buffers): Fix bugs: don't let-bind
2376         `org-tag-alist' to nil and don't append duplicate tags to
2377         `org-tag-alist-for-agenda'.
2378         (org-store-link): Storing multiple links in the active region now
2379         requires a triple prefix argument.
2380         (org-store-link, org-link-search): Fix handling of links to #+NAME
2381         and #+TARGET keywords.
2383         * org-compat.el (org-ignore-region): Tiny docstring fix.
2385         * org-capture.el (org-capture): Don't store multiple links over
2386         lines in the active region.
2388         * ox-odt.el (org-odt-special-block): Don't wrap annotations into
2389         <text:p>...</text:p> at all.
2390         (org-odt--fix-annotations): New function.
2391         (org-odt--export-wrap): Use the new function to fix annotations
2392         insertion in content.xml.
2394         * org.el (org-mode-flyspell-verify): Require 'org-element so that
2395         `org-element-affiliated-keywords' is defined.
2397         * ox-odt.el (org-odt-special-block): Don't insert annotations
2398         using style "Text_20_body".
2400         * org.el (org-toggle-tags-groups): Correctly highlight group tags.
2401         (org-tags-expand): Expand tags as words, with characters ?@
2402         and ?_ being considered words constituents.
2403         (org-set-regexps-and-options): Don't read setup files from
2404         read-only buffers.
2405         (org-file-contents): When no-error is non-nil, throw a less
2406         intrusive message.
2408         * org-agenda.el (org-agenda-scheduled-leaders)
2409         (org-agenda-deadline-leaders): Re-align leaders to the left,
2410         back to a 11 characters width.
2412         * org.el (org-refile-cache-check-set): More informative message.
2414         * org-agenda.el (org-tags-view): Set the matcher after preparing
2415         the agenda, as `org-tag-groups-alist-for-agenda' might be needed.
2416         (org-agenda-filter-make-matcher): New parameter `filter' and
2417         `type'.  Handle group tags.
2418         (org-agenda-filter-expand-tags): New function.
2419         (org-agenda-filter-apply): Handle group tags.
2421         * org.el (org-blank-before-new-entry): Tiny docstring fix.
2422         (org-tag-alist-for-agenda): Add docstring.
2423         (org-tag-groups-alist-for-agenda): New global variable.
2424         (org-tag-groups-alist): New buffer-local variable.
2425         (org-tag-alist, org-tag-persistent-alist): Handle :grouptags.
2426         (org-group-tags): New option.
2427         (org-toggle-group-tags): New command.
2428         (org-mode-map): Bind `org-toggle-group-tags' to `C-c C-x q'.
2429         (org-set-regexps-and-options-for-tags): New function, factored
2430         out from `org-set-regexps-and-options'.
2431         (org-set-regexps-and-options): Don't handle tags, they are now
2432         handled separately by `org-set-regexps-and-options-for-tags'.
2433         (org-assign-fast-keys): Handle :grouptags.
2434         (org-mode): Use `org-set-regexps-and-options-for-tags' on top
2435         of `org-set-regexps-and-options'.
2436         (org-fontify-meta-lines-and-blocks-1): Fontify group tags.
2437         (org-make-tags-matcher): Expand group tags in the matcher.
2438         (org-tags-expand): New function.
2439         (org-tags-completion-function): Tiny code clean up.
2440         (org-set-current-tags-overlay): Add a docstring.
2441         (org-fast-tag-selection): Highlight group tags.
2442         (org-agenda-prepare-buffers): Set `org-tag-alist-for-agenda'
2443         and `org-tag-groups-alist-for-agenda'.  Don't uniquify
2444         `org-tag-alist-for-agenda' as we may need the grouping
2445         information for filtering in the agenda buffer.
2446         (org-uniquify-alist): New function.
2448         * org-pcomplete.el (pcomplete/org-mode/file-option/tags): Handle
2449         :grouptags.
2451         * org-faces.el (mode-line): New face for group tags.
2453         * ob-core.el (org-babel-hash-show-time): Tiny docstring
2454         enhancement.
2456         * org-element.el (org-element-paragraph-separate): Use new name
2457         `org-list-allow-alphabetical'.
2459         * org-list.el (org-list-allow-alphabetical): Rename from
2460         `org-alphabetical-lists'.
2461         (org-list-empty-line-terminates-plain-lists): Rename from
2462         `org-empty-line-terminates-plain-lists'.
2463         (org-checkbox-hierarchical-statistics): Rename from
2464         `org-hierarchical-checkbox-statistics'.
2466         * org.el (org-image-actual-width): Update docstring.
2467         (org-display-inline-images): Use the #+attr_html: :width syntax.
2468         (org-modules): Remove deleted libraries, add new ones.
2470         * ox-html.el (org-html-indent): Default to nil, as non-nil can
2471         break indentation of source code blocks.
2472         (org-html-link): Don't insert nil if there is no attributes.
2473         (org-html-link--inline-image): Use the correct syntax for image
2474         attributes.  Allow :width :height and :alt as predefined
2475         attributes for inline images.
2476         (org-html-link, org-html-table): Use the standard syntax---
2477         e.g. "#+attr_html: :options ..."--- to get attributes.
2479         * ox.el (org-export-table-cell-alignment): Treat an empty cell as
2480         a number if it follows a number.
2482         * ox.el (org-export-as): Allow user functions in
2483         `org-export-before-parsing-hook' to modify the point.
2485         * org.el (org-entry-add-to-multivalued-property): Add the new
2486         value by appending it at the end of the line.
2488         * org-table.el (orgtbl-to-generic): New parameter `backend' to
2489         export cells content using a specific backend.
2490         (orgtbl-to-latex, orgtbl-to-texinfo): Export cells to LaTeX
2491         and Texinfo before sending the table.
2493         * ox.el (org-export-define-backend)
2494         (org-export-define-derived-backend): Make defuns and update
2495         docstrings.
2497         * ox-texinfo.el (texinfo):
2498         * ox-org.el (org):
2499         * ox-odt.el (odt):
2500         * ox-md.el (md):
2501         * ox-man.el (man):
2502         * ox-latex.el (latex):
2503         * ox-icalendar.el (icalendar):
2504         * ox-html.el (html):
2505         * ox-beamer.el (beamer):
2506         * ox-ascii.el (ascii): Use `org-export-define-backend' and
2507         `org-export-define-derived-backend' as defuns, not macros.
2509         * org.el (org-set-regexps-and-options): Use
2510         `org-table-set-constants'.
2512         * org-table.el (org-table-set-constants): New function.
2513         (orgtbl-ctrl-c-ctrl-c): Use it.
2515         * org-pcomplete.el
2516         (pcomplete/org-mode/block-option/clocktable): Add parameters.
2518         * org.el (org-options-keywords): Remove "INFOJS_OPT": it is added
2519         through ox-html.el now.
2521         * org-agenda.el (org-agenda-redo): Set filters after agenda has
2522         been redone.
2524         * org.el (org-store-link): When there is an active region, store
2525         each line as a separate link.
2526         (org-insert-all-links): Use a default description when links
2527         do not have one already.
2529         * org-agenda.el (org-agenda-redo): Fix code typo.
2531         * org.el (org-link-display-format): Fix docstring.
2533         * ox-publish.el (org-publish-org-to)
2534         (org-publish-org-sitemap, org-publish-find-title)
2535         (org-publish-find-date)
2536         (org-publish-cache-file-needs-publishing): Set
2537         `org-inhibit-startup' to t when visiting files for
2538         publication.
2540         * ox-org.el (org-org-publish-to-org): Kill buffers not visited at
2541         publication time.
2543         * org.el (org-set-font-lock-defaults): Set font-lock keywords
2544         correctly for plain links.
2546         * ox-texinfo.el (org-texinfo-logfiles-extensions)
2547         (org-texinfo-remove-logfiles): New options.
2548         (org-texinfo-compile): Use the new options to remove files
2549         after compiling a Texinfo file.
2551         * ox-texinfo.el (org-texinfo-coding-system): New option.
2552         (org-texinfo-template): Add @documentlanguage and
2553         @documentencoding.
2554         (org-texinfo-headline): Add a space before tags.
2555         (org-texinfo-export-to-texinfo, org-texinfo-export-to-info):
2556         Use `org-texinfo-coding-system' as the coding system for
2557         exported buffers.
2558         (org-texinfo-publish-to-texinfo): New function.
2560         * ox-texinfo.el (org-texinfo-filename)
2561         (org-texinfo-info-process, org-texinfo-max-toc-depth)
2562         (org-texinfo--sanitize-menu): Docstrings tiny fixes.
2564         * org-agenda.el (org-agenda-dim-blocked-tasks): Only throw a
2565         message when called interactively.  Fix docstring position in the
2566         defun.
2568         * ox-html.el (org-html--build-meta-info): Fix setting of
2569         http-equiv="Content-Type".
2571         * org-agenda.el (org-agenda-mode-map): Use ?= for filtering by
2572         regexp and ?| for removing all filters.
2573         (org-agenda-filter-remove-all): New command.
2574         (org-agenda-filter-show-all-re): Rename from
2575         `org-agenda-filter-show-all-regexp'.
2576         (org-agenda-filter-by-regexp): Call
2577         `org-agenda-filter-show-all-re'.
2579         * org-list.el (org-insert-item): Don't ask for a definition term
2580         when insert an item in a description list.
2582         * org-agenda.el (org-agenda-Quit): Set `org-agenda-buffer' to nil.
2583         This prevents bugs when calling e.g., `org-diary' after quitting
2584         an agenda window.
2585         (org-agenda-entry-types): Move earlier in the file.
2586         (org-agenda-custom-commands-local-options, org-diary)
2587         (org-agenda-get-day-entries): Don't hardcode the default agenda
2588         entry types, use `org-agenda-entry-types'.
2589         (org-agenda-custom-commands): Fix default setting so that the
2590         customize interface does not complain about a mismatch.
2592         * org.el (org-export-backends): Add new backends.
2594         * ox-html.el (org-html-indent): New option.
2595         (org-html-use-unicode-chars): New option.
2596         (org-html-pretty-output): Delete.
2597         (org-html-final-function): Use the new options.
2599         * ox-html.el (org-html-link): Fix handling of abbreviated links
2600         which include a file: protocol.
2601         (org-html--build-postamble): Default to today's date.
2602         (org-html--build-meta-info): When #+DATE contains a time stamp,
2603         parse it as a RFC 822 time string, otherwise simply insert the
2604         date as a string.
2606         * ox.el (org-export--copy-to-kill-ring-p): New function.
2607         (org-export-copy-to-kill-ring): Use 'if-interactive as the
2608         default.
2609         (org-export-to-buffer, org-export-to-file): Use
2610         `org-export--copy-to-kill-ring-p' and fix docstrings.
2612         * ox-odt.el (org-odt-export-as-odf): Use
2613         `org-export--copy-to-kill-ring-p'.
2615         * org.el (org-set-font-lock-defaults): Fontify macros.
2617         * org-faces.el (org-macro): New face.
2619         * org.el (org-clone-subtree-with-time-shift): Only prompt for a
2620         time shift when the entry at point has a time stamp and when the
2621         command is called with a universal prefix argument.
2622         (org-execute-file-search-functions): Docstring fix.
2624         * org-compat.el (org-defvaralias): Fix declare form.
2626         * org-clock.el (org-clocktable-defaults): Add :mstart parameter.
2627         (org-clock-special-range): New argument mstart.
2628         (org-dblock-write:clocktable, org-dblock-write:clocktable)
2629         (org-clocktable-write-default, org-clocktable-steps)
2630         (org-clock-get-table-data): Handle the :mstart parameter.
2632         * org.el (org-map-entries): Use `save-window-excursion'.
2634         * org-compat.el (org-defvaralias): New compatibility function.
2636         * org-list.el (org-cycle-include-plain-lists): Also add to the
2637         'org-cycle customization group.
2638         (org-list-allow-alphabetical)
2639         (org-checkbox-hierarchical-statistics)
2640         (org-list-empty-line-terminates-plain-lists)
2641         (org-list-description-max-indent): Rename and add aliases to old
2642         names.
2644         * org-element.el (org-element-context): Prevent an error when
2645         getting the context of a table rule.
2647         * org.el (org-deadline-time-hour-regexp)
2648         (org-scheduled-time-hour-regexp): New buffer local variables.
2649         (org-set-regexps-and-options): Set the new variables.
2651         * org-agenda.el (org-agenda-custom-commands-local-options): Add
2652         :deadline* and :scheduled* to the list of possible agenda entry
2653         types.
2654         (org-agenda): Implement a new agenda type agenda* with :scheduled*
2655         and :deadline* replacing :scheduled and :deadline respectively in
2656         agenda entry types.  In such agenda, only scheduled and deadline
2657         items with a time specification [h]h:mm will be considered.
2658         (org-agenda-entry-types): Document the new agenda entry types
2659         :scheduled* and :deadline*.
2660         (org-agenda-list): New parameter `with-hour'.  Use :scheduled* and
2661         :deadline*.
2662         (org-agenda-get-day-entries): Handle :scheduled* and :deadline*.
2663         (org-agenda-get-deadlines, org-agenda-get-scheduled): New
2664         parameter `with-hour'.  Use `org-deadline-time-hour-regexp' or
2665         `org-scheduled-time-hour-regexp' as the search string if needed.
2666         (org-agenda-to-appt): Use :scheduled* and :deadline* by default,
2667         as other scheduled and deadline items don't have a time spec and
2668         cannot be turned into appointments.  Trim bracket links and use
2669         only the description as the appointment text.
2670         (org-agenda-get-restriction-and-command): Add
2671         default description for the agenda* view.
2672         (org-agenda-run-series): Handle agenda* views.
2674         * org-faces.el (org-agenda-filter-tags)
2675         (org-agenda-diary, org-agenda-calendar-event)
2676         (org-agenda-calendar-sexp): Minor code clean up.
2677         (org-agenda-filter-category): Docstring fix.
2678         (org-agenda-filter-category): New face.
2680         * org-agenda.el (org-agenda-local-vars): Add
2681         `org-agenda-re-filter-overlays' and `org-agenda-regexp-filter'.
2682         (org-agenda-mode-map): Use "|" for
2683         `org-agenda-filtered-by-regexp'.
2684         (org-agenda-re-filter-overlays): New variable.
2685         (org-agenda-mark-filtered-text): Use
2686         `org-agenda-re-filter-overlays'.
2687         (org-agenda-finalize, org-agenda-redo): Allow regexp filtering.
2688         (org-agenda-filter-by-category): Set `org-agenda-category-filter'
2689         here instead of within `org-agenda-apply-filter'.
2690         (org-agenda-regexp-filter): New variable.
2691         (org-agenda-filter-by-regexp): New function to filter agenda
2692         buffers by regexp.
2693         (org-agenda-filter-make-matcher): Make matcher for regexp filters.
2694         (org-agenda-filter-apply): Don't set `org-agenda-tag-filter' and
2695         `org-agenda-category-filter'.  Maybe apply regexp filter.
2696         (org-agenda-filter-hide-line): Add docstring.  Hide
2697         regexp-filtered lines.
2698         (org-agenda-filter-show-all-tag, org-agenda-filter-show-all-cat):
2699         Add docstring.
2700         (org-agenda-filter-show-all-regexp): New function.
2701         (org-agenda-set-mode-name): Add regexp-filter information.
2702         (org-agenda-custom-commands-local-options): Add regexp filter.
2703         (org-agenda-regexp-filter-preset): New variable.
2704         (org-agenda-prepare): Use the new variable.
2706         * ox-odt.el (org-odt-code, org-odt-verbatim): Use
2707         `org-odt--encode-plain-text'.
2709         * ox-html.el (org-html-link): Minor code clean-up.
2711         * org.el (org-insert-heading): DTRT when in a narrowed region.
2713         * org-compat.el (org-buffer-narrowed-p): New compatibility
2714         function.
2716         * ox-html.el (org-html-format-inline-image): Fix missing string in
2717         formatting string.
2719         * org-agenda.el (org-agenda-skip-scheduled-if-deadline-is-shown):
2720         New allowed value `repeated-after-deadline' which will prevent the
2721         display of scheduled items when repeated after the current
2722         deadline.
2723         (org-agenda-get-scheduled): Handle the new value.
2725         * org.el (org-time-string-to-absolute): Tiny docstring fix.
2727         * ox-html.el (org-html-style-default): New classes `footpara' and
2728         `footdef' for the footnotes paragraphs and definitions.
2729         (org-html-format-footnote-definition): Wrap the footnote
2730         defintions into their own div.
2731         (org-html-paragraph): Don't add extra <br/> after a paragraph in a
2732         footnote.
2733         (org-html-container-element, org-html-divs): Mention that
2734         org-info.js will not work when changing the defaults.
2736         * ox-md.el (md): Export underlined text as verbatim.
2738         * ox-html.el (org-html-style-default): New CSS .underline and
2739         #org-div-home-and-up.
2740         (org-html-text-markup-alist): Don't hardcode the style, use the
2741         new class .underline.
2742         (org-html-home/up-format): Don't hardcode the style, use
2743         #org-div-home-and-up.
2744         (org-html-center-block): Use the .center class.
2746         * ox-md.el (org-md-underline): New function.
2748         * org-agenda.el (org-sorting-choice): Fix default value.
2750         * ox-html.el (org-html-format-footnote-definition)
2751         (org-html-footnote-section): Don't wrap footnote definitions into
2752         tables.
2753         (org-html-paragraph): Add HTML style and class parameter when the
2754         paragraph is in a footnote definition.  Also allow to add an extra
2755         string after the paragraph.  Further parameters can be added for
2756         paragraphs in other environments.
2757         (org-html-template): Always include the title as <h1
2758         class="title"></h1>, even when there is no title, as org-info.js
2759         needs it.
2761         * org-element.el (org-element-map): Fix tiny typo in docstring.
2763         * org-agenda.el (org-agenda-day-view): Fix parameter's name.
2765         * ox-html.el (org-html-format-inline-image): Don't add superfluous
2766         <p></p> when there is an empty caption.
2768         * org-agenda.el (org-agenda-refile): Enhance docstring.  Allow to
2769         clear the refile cache with C-0 or C-u C-u C-u.
2771         * ox-md.el (org-md-export-as-markdown): Tiny docstring fix.  Fix a
2772         library keyword in the comment section.
2774         * org.el (org-toggle-item): Convert all normal lines as items when
2775         there is a region, and only convert the first line when called
2776         with a universal prefix argument.  This is consistent with the
2777         behavior of `org-toggle-heading'.
2778         (org-toggle-heading): When the region contains only normal lines,
2779         a universal prefix arg will only convert the first line.  This is
2780         more consistent with `org-toggle-item'.
2781         (orgstruct-setup): Add `org-ctrl-c-minus' and `org-ctrl-c-star'.
2782         (customize-package-emacs-version-alist): Update
2783         `customize-package-emacs-version-alist'.
2785         * ox-texinfo.el (org-export-texinfo)
2786         (org-texinfo-filename, org-texinfo-classes)
2787         (org-texinfo-format-headline-function)
2788         (org-texinfo-node-description-column)
2789         (org-texinfo-active-timestamp-format)
2790         (org-texinfo-link-with-unknown-path-format)
2791         (org-texinfo-tables-verbatim)
2792         (org-texinfo-table-scientific-notation)
2793         (org-texinfo-text-markup-alist)
2794         (org-texinfo-format-drawer-function)
2795         (org-texinfo-format-inlinetask-function)
2796         (org-texinfo-info-process):
2797         * ox-odt.el (org-odt-format-drawer-function)
2798         (org-odt-format-headline-function)
2799         (org-odt-format-inlinetask-function):
2800         * ox-md.el (org-export-md, org-md-headline-style): Fix :version
2801         and :package-version keywords.
2803         * org.el (org-time-clocksum-use-effort-durations): Don't set to t
2804         by default as it will change many clocktables out there.  Let the
2805         user decides whether she wants to turn this on.
2807         * org.el (org-agenda-inhibit-startup): Revert to nil as the default.
2809         * org-agenda.el (org-agenda-dim-blocked-tasks): Revert to t as the
2810         default.
2812         * ox-html.el (org-html-style-default): More cosmetic tweaks.
2813         (org-html-head-include-default-style): Minor docstring update.
2815         * ox.el (org-export-snippet-translation-alist)
2816         (org-export-coding-system, org-export-in-background)
2817         (org-export-async-init-file, org-export-invisible-backends)
2818         (org-export-dispatch-use-expert-ui):
2819         * ox-texinfo.el (org-texinfo-filename, org-texinfo-classes)
2820         (org-texinfo-format-headline-function)
2821         (org-texinfo-node-description-column)
2822         (org-texinfo-active-timestamp-format)
2823         (org-texinfo-link-with-unknown-path-format)
2824         (org-texinfo-tables-verbatim)
2825         (org-texinfo-table-scientific-notation)
2826         (org-texinfo-text-markup-alist)
2827         (org-texinfo-format-drawer-function)
2828         (org-texinfo-format-inlinetask-function)
2829         (org-texinfo-info-process):
2830         * ox-man.el (org-man-tables-centered)
2831         (org-man-table-scientific-notation)
2832         (org-man-source-highlight, org-man-source-highlight-langs)
2833         (org-man-pdf-process, org-man-logfiles-extensions):
2834         * ox-html.el (org-html-allow-name-attribute-in-anchors)
2835         (org-html-coding-system, org-html-divs):
2836         * ox-ascii.el (org-ascii-text-width)
2837         (org-ascii-headline-spacing, org-ascii-indented-line-width)
2838         (org-ascii-paragraph-spacing, org-ascii-charset)
2839         (org-ascii-underline, org-ascii-bullets)
2840         (org-ascii-links-to-notes)
2841         (org-ascii-table-keep-all-vertical-lines)
2842         (org-ascii-table-widen-columns)
2843         (org-ascii-table-use-ascii-art)
2844         (org-ascii-format-drawer-function)
2845         (org-ascii-format-inlinetask-function):
2846         * org.el (org-modules, org-export-backends)
2847         (org-highlight-latex-and-related, orgstruct-setup-hook):
2848         * org-attach.el (org-attach-git-annex-cutoff):
2849         * org-archive.el (org-archive-file-header-format):
2850         * org-agenda.el (org-agenda-todo-ignore-time-comparison-use-seconds):
2851         * ob-python.el (org-babel-python-hline-to)
2852         (org-babel-python-None-to):
2853         * ob-ditaa.el (org-ditaa-eps-jar-path):
2854         * ob-core.el (org-babel-results-keyword): Add :version and
2855         :package-version.
2857         * ox-ascii.el: Use utf-8-emacs as the file coding system.
2859         * org-capture.el (org-capture-templates, org-capture-string)
2860         (org-capture-steal-local-variables)
2861         (org-capture-empty-lines-before)
2862         (org-capture-empty-lines-after)
2863         (org-capture-insert-template-here)
2864         (org-capture-import-remember-templates): Fix or add docstring.
2866         * ox-html.el (org-html-style-default): Cosmetic changes.
2867         (org-html-postamble, org-html-preamble)
2868         (org-html-preamble-format): Update docstring.
2870         * org-agenda.el (org-agenda-format-date-aligned)
2871         (org-agenda-time-of-day-to-ampm-maybe)
2872         (org-scheduled-past-days)
2873         (org-agenda-normalize-custom-commands)
2874         (org-agenda-run-series, org-store-agenda-views): Fix or add
2875         docstring.
2877         * ox-latex.el:
2878         (org-latex-table-scientific-notation, org-latex-verse-block): Fix
2879         typos in docstrings.
2881         * ox-html.el (org-html-text-markup-alist)
2882         (org-html-pretty-output, org-html-link-org-files-as-html)
2883         (org-html-postamble, org-html-preamble)
2884         (org-html-format-inline-image, org-html-splice-attributes)
2885         (org-export-splice-style, org-html-htmlize-region-for-paste)
2886         (org-html-fix-class-name)
2887         (org-html-format-footnote-reference)
2888         (org-html-format-footnotes-section)
2889         (org-html-footnote-section, org-html--anchor)
2890         (org-html--todo, org-html--tags, org-html-format-headline)
2891         (org-html-toc, org-html-format-section, org-html-checkbox)
2892         (org-html-format-list-item, org-html-format-latex)
2893         (org-html-encode-plain-text)
2894         (org-html-table-first-row-data-cells)
2895         (org-html-table--table.el-table, org-html-final-function): Fix
2896         or add docstring.
2898         * org.el (org-insert-heading): If the current item has a checkbox,
2899         insert the new item with a checkbox.
2901         * org.el (org-insert-heading): Don't delete spaces in empty
2902         headlines.
2904         * ox-odt.el (org-odt-keyword): Fix typo.
2906         * ox-latex.el (org-latex-toc-command): Cosmetic docstring change.
2908         * ox-html.el (org-html-encode-plain-text): Fix typo in docstring.
2910         * org-faces.el (org-column): Update docstring.
2912         * org-colview.el: Update error message.
2914         * org.el (org-modules): Do not include org-mew.el, org-vm.el,
2915         org-w3m.el, org-wl.el as these files are now part of contrib/.
2917         * org-mew.el:
2918         * org-vm.el:
2919         * org-w3m.el:
2920         * org-wl.el: Delete (moved to Org's contrib/ directory.)
2922         * org-capture.el (org-mks): Move from org-mks.el.
2924         * org-mks.el: Delete.
2926         * ox-html.el (html): Update HTML options names.
2928         * org.el (org-show-context): Don't try to fix ellipsis when
2929         showing a subtree in agenda.
2931         * ox-html.el (html): Reintroduce #+HTML_HEAD_EXTRA, previously
2932         known as HTML_STYLE_EXTRA.
2933         (org-html-head): Enhance docstring.
2934         (org-html-head-extra): Reintroduce.  Was `org-html-style-extra'.
2935         (org-html--build-head): Rename from `org-html--build-head'.  Add
2936         information from `org-html-head-extra'.
2937         (org-html-template): Use `org-html--build-head'.
2939         * ox-html.el (org-html-display-buffer-mode): Delete.
2940         (org-html-export-as-html): Use `set-auto-mode' instead of
2941         `org-html-display-buffer-mode'.
2943         * org-agenda.el (org-agenda-write): Overwrite file when called
2944         non-interactively.
2946         * org-mobile.el (org-mobile-edit): Workaround a
2947         `org-insert-heading-respect-content' bug which prevents correct
2948         insertion when point is invisible
2950         * org.el (org-previous-line-empty-p): New parameter to allow
2951         checking next line.  Add a docstring.
2952         (org-insert-heading): Handle two universal prefix arguments as
2953         advertised in the docstring.  Don't insert new lines when
2954         creating a heading after the first heading in the current
2955         subtree.
2956         (org-insert-heading-respect-content): New optional argument
2957         arg, passed to `org-insert-heading'.
2959         * org.el (org-mode): Remove syntax entries.  Use
2960         `org-backward-element' and `org-forward-element' for
2961         `beginning-of-defun-function' and `end-of-defun-function': this
2962         allows using C-M-a and C-M-e before the first headline.
2964         * ox-html.el (html): Remove :html-htmlized-css-url :options-alist.
2966         * ox-org.el (org-org-htmlized-css-url): Rename from
2967         `org-html-htmlized-org-css-url' and moved here from ox-html.el.
2968         (org-org-publish-to-org): Handle :htmlized-source in
2969         publishing projects.
2971         * ox-html.el (org-html-style-default): Update docstring.
2972         (org-html-infojs-install-script, org-html--build-style): Update
2973         property names.
2974         (org-html-head-include-scripts)
2975         (org-html-head-include-default-style, org-html-head):
2976         Respectively rename from `org-html-style-include-scripts',
2977         `org-html-style-include-default' and `org-html-style', now
2978         obsolete.
2979         (org-html-style-extra): Delete.
2981         * org-clock.el (org-clock-out): Fix bug: if a closing note needs
2982         to be stored in the drawer where clocks are stored, let's
2983         temporarily remove `org-clock-remove-empty-clock-drawer' from
2984         `org-clock-out-hook'.
2986         * ob-tangle.el (org-babel-tangle): Remove unused attempt of
2987         prompting the user of the tangle file name since :tangle is always
2988         set.  Don't prompt for a tangle file name when called with two
2989         universal prefix arg outside of a src block.  Use
2990         `org-babel-tangle-single-block'.
2991         (org-babel-tangle-single-block): New function.
2992         (org-babel-tangle-collect-blocks): Use the new function.
2994         * org-table.el (org-table-convert-region, org-table-export)
2995         (org-table-align, org-table-beginning-of-field)
2996         (org-table-copy-down, org-table-check-inside-data-field)
2997         (org-table-insert-column, org-table-find-dataline)
2998         (org-table-delete-column, org-table-move-column)
2999         (org-table-insert-row, org-table-insert-hline)
3000         (org-table-kill-row, org-table-paste-rectangle)
3001         (org-table-wrap-region, org-table-sum, org-table-get-formula)
3002         (org-table-get-formula, org-table-get-stored-formulas)
3003         (org-table-fix-formulas, org-table-maybe-eval-formula)
3004         (org-table-rotate-recalc-marks, org-table-eval-formula)
3005         (org-table-get-range, org-table-get-descriptor-line)
3006         (org-table-find-row-type, org-table-recalculate)
3007         (org-table-iterate, org-table-iterate-buffer-tables)
3008         (org-table-formula-handle-first/last-rc)
3009         (org-table-edit-formulas, org-table-fedit-shift-reference)
3010         (org-rematch-and-replace, org-table-shift-refpart)
3011         (org-table-fedit-finish, org-table-fedit-lisp-indent)
3012         (org-table-show-reference, org-table-show-reference)
3013         (org-table-show-reference, org-table-show-reference)
3014         (org-table-force-dataline, orgtbl-error, orgtbl-export)
3015         (orgtbl-send-replace-tbl, org-table-to-lisp)
3016         (orgtbl-send-table, orgtbl-send-table, orgtbl-send-table)
3017         (orgtbl-toggle-comment, orgtbl-insert-radio-table)
3018         (orgtbl-to-unicode, org-table-get-remote-range)
3019         (org-table-get-remote-range, org-table-copy-dow)
3020         (org-table-check-inside-data-field, org-table-insert-colum)
3021         (org-table-find-dataline, org-table-delete-colum)
3022         (org-table-move-column, org-table-insert-ro)
3023         (org-table-insert-hline, org-table-kill-ro)
3024         (org-table-paste-rectangle, org-table-wrap-regio)
3025         (org-table-sum, org-table-get-formul)
3026         (org-table-get-stored-formulas, org-table-fix-formula)
3027         (org-table-maybe-eval-formul, org-table-rotate-recalc-marks)
3028         (org-table-eval-formul, org-table-get-range)
3029         (org-table-get-descriptor-lin, org-table-find-row-type)
3030         (org-table-recalculat, org-table-iterate)
3031         (org-table-iterate-buffer-table)
3032         (org-table-formula-handle-first/last-r)
3033         (org-table-edit-formulas, org-table-fedit-shift-referenc)
3034         (org-rematch-and-replace, org-table-shift-refpar)
3035         (org-table-fedit-finish, org-table-fedit-lisp-inden)
3036         (org-table-show-reference, org-table-force-datalin)
3037         (orgtbl-error, orgtbl-export, orgtbl-send-replace-tb)
3038         (org-table-to-lisp, orgtbl-send-tabl, orgtbl-toggle-comment)
3039         (orgtbl-insert-radio-tabl, orgtbl-to-unicode)
3040         (org-table-get-remote-range): Use `user-error' instead of
3041         `error' for user errors.
3043         * ob-core.el (org-babel-load-in-session): Throw a useful error
3044         when there is no code block at point.
3046         * ob-tangle.el (org-babel-tangle): Rename the ONLY-THIS-BLOCK
3047         parameter to ARG.  Allow two universal prefix arguments to tangle
3048         by the target file of the block at point.
3049         (org-babel-tangle-collect-blocks): New parameter TANGLE-FILE
3050         to restrict the collection of blocks to those who will be
3051         tangled in TARGET-FILE.
3053         * org-src.el (org-edit-src-auto-save-idle-delay): Use a delay of 0
3054         by default (i.e., deactivate auto-saving.)
3055         (org-edit-src-code): Set `buffer-auto-save-file-name' for
3056         auto-saving with `auto-save-mode'.
3058         * org.el (org-deadline, org-schedule): When called with two
3059         universal prefix arguments, set the warning time or the delay
3060         relatively to the current timestamp, not to today's date.
3062         * org-agenda.el (org-agenda-filter-apply): Deactive
3063         `org-agenda-entry-text-mode' when filtering.
3064         (org-agenda-entry-text-mode): Don't allow in filtered views.
3065         Don't show the maximum number of lines when turning off.
3067         * ox-html.el (org-html-headline): Add comment.
3069         * org.el (org-mode): Set `paragraph-start'.
3071         * org-agenda.el (org-agenda-entry-text-leaders): New option.
3072         (org-agenda-entry-text-show-here): Use it.
3074         * ox-html.el (org-html-link--inline-image): Always retrieve
3075         attributes for inline images.
3076         (org-html-link): Fix trailing whitespace at the end of the opening
3077         <a ...> HTML tag.
3078         (org-html-headline): For headlines whose first element is a
3079         headline and not a section, pretend there is an empty section (as
3080         "") for the correct HTML div to be inserted.
3082         * org-agenda.el (org-agenda-collect-markers)
3083         (org-create-marker-find-array): Move to ox-icalendar.el.
3084         (org-agenda-marker-table, org-check-agenda-marker-table):
3085         Delete.
3087         * ox-icalendar.el (org-icalendar-create-uid): New parameter
3088         H-MARKERS to only update some headlines, not the whole file.
3089         (org-icalendar--combine-files): When exporting to an .ics file
3090         only add UID to the headlines shown in the agenda buffer.
3091         (org-agenda-collect-markers, org-create-marker-find-array):
3092         Move here.
3094         * org-agenda.el (org-agenda-write): Ask before overwriting an
3095         existing file.
3097         * org-pcomplete.el (pcomplete/org-mode/file-option/infojs_opt):
3098         Use `org-html-infojs-opts-table'.
3100         * ox-html.el (org-html-infojs-opts-table):
3101         (org-html-use-infojs, org-html-infojs-options)
3102         (org-html-infojs-template): Move from ox-jsinfo.el.  Rename using
3103         the org-html- prefix.
3104         (org-html-infojs-install-script): Move from ox-jsinfo.el.
3106         * ox-jsinfo.el: Delete.
3108         * ox-html.el (org-html-section): Fix indentation.
3109         (org-html-inner-template): Add the document title here, within the
3110         "content" class, as the org-info.js needs it.
3111         (org-html-template): Don't include the document's title here.
3112         (org-html-format-inlinetask-function): Remove wrong example.
3114         * ob-tangle.el (org-babel-tangle-collect-blocks): Don't collect
3115         blocks in commented out headings.
3117         * ox-latex.el (org-latex-logfiles-extensions)
3118         (org-latex-remove-logfiles): Improve docstrings.
3120         * org-capture.el (org-capture): Cosmetic fix.
3122         * org-protocol.el (org-protocol-create-for-org)
3123         (org-protocol-create): Small docstrings enhancements.
3125         * org-protocol.el (org-protocol-capture): Small docstring fix.
3127         * org.el (org-speed-command-activate): Only forbid in src code
3128         blocks.
3130         * org-indent.el
3131         (org-indent-add-properties): Bugfix: prevent negative value for
3132         `added-ind-per-lvl'.
3134         * org.el (org-mode): Add `org-fix-ellipsis-at-bol' to
3135         `isearch-mode-end-hook' so that any isearch fixes the problem with
3136         ellipsis on the first line.
3137         (org-fix-ellipsis-at-bol): New defsubst.
3138         (org-show-context, org-isearch-end): Use it.
3140         * org-agenda.el (org-agenda-deadline-leaders): New formatting
3141         string for past deadlines.
3142         (org-agenda-scheduled-leaders): Small change.
3143         (org-agenda-get-deadlines): Use the new formatting string.
3145         * ob-lob.el (org-babel-lob-execute): Rename cache? to cache-p.
3147         * org.el (org-speed-command-activate): Don't activate speed
3148         commands within blocks.
3150         * org.el (org-show-context): Remove useless catch.  Make sure the
3151         top of the window is a visible headline.
3152         (org-activate-plain-links): Remove unused catch.
3154         * org-macs.el (org-get-alist-option): Return nil, not (nil), so
3155         that `org-show-context' DTRT.
3157         * org.el (org-imenu-get-tree): Fix bug when matching against empty
3158         headlines.
3159         (org-overview): Stay on current line.
3160         (org-map-entries): Fix docstring.
3162         * org-macs.el (org-unmodified): Update comment.  Don't define
3163         `with-silent-modifications' for emacsen that don't have it.
3165         * org-compat.el (org-with-silent-modifications): New
3166         compatibility macro.
3168         * org.el (org-refresh-category-properties)
3169         (org-refresh-properties, org-entry-blocked-p)
3170         (org-agenda-prepare-buffers):
3172         * org-indent.el (org-indent-remove-properties)
3173         (org-indent-add-properties):
3175         * org-colview.el (org-columns-display-here)
3176         (org-columns-remove-overlays, org-columns-quit)
3177         (org-columns-edit-value, org-columns-compute-all)
3178         (org-columns-compute, org-agenda-colview-compute):
3180         * org-clock.el (org-clock-sum): Use the compatibility macro
3181         `org-with-silent-modifications' instead of
3182         `with-silent-modifications'.
3184         * org.el (org-sort-remove-invisible): Remove emphasis markers.
3186         * org.el (org-sort-remove-invisible): Use defsust.  Do not only
3187         check against invisible links, truly returns the visible part of
3188         the string.
3189         (org-sort-remove-invisible): Add a docstring.
3190         (org-sort-entries): Remove hidden links when comparing entries.
3192         * org-list.el (org-sort-list): Remove hidden links when comparing
3193         list items.
3195         * ox-html.el (org-html-headline): Fix typo.
3196         (org-html-format-headline--wrap): Cosmetic change.
3198         * org.el (org-at-clock-log-p): Delete.
3200         * org-clock.el (org-at-clock-log-p): Move here.
3202         * ox-html.el (org-html-format-headline-function): Fix docstring.
3204         * ob-sql.el (org-babel-execute:sql): Add header row delimiter for
3205         both mysql and postgresql.
3207         * org.el (org-agenda-prepare-buffers): Don't use
3208         `with-silent-modifications' too early.
3210         * org-macs.el: Add a comment on when to use `org-unmodified' and
3211         when to use `with-silent-modifications'.
3213         * org-colview.el (org-columns-display-here)
3214         (org-columns-remove-overlays, org-columns-quit)
3215         (org-columns-edit-value, org-columns-compute-all)
3216         (org-columns-compute, org-agenda-colview-compute):
3217         * org-clock.el (org-clock-sum):
3218         * org.el (org-refresh-category-properties)
3219         (org-refresh-properties, org-entry-blocked-p)
3220         (org-agenda-prepare-buffers): Use `with-silent-modifications'
3221         instead of `org-unmodified'.
3223         * ox-publish.el (org-publish-sitemap-date-format): Small docstring
3224         enhancement.
3226         * ox-latex.el (org-latex-format-headline-default-function): New
3227         option.
3228         (org-latex-format-headline-function): Use the new option as
3229         the default value.
3230         (org-latex-toc-command): Don't add vertical space after the table
3231         of contents.
3233         * org.el (org-entry-blocked-p): Use `org-unmodified' instead of
3234         `org-with-buffer-modified-unmodified'.
3235         (org-agenda-prepare-buffers): Fix indentation.
3237         * org-macs.el (org-unmodified): Rename from
3238         `org-with-buffer-modified-unmodified'.
3239         (org-with-buffer-modified-unmodified): Delete.
3241         * ob-python.el (org-babel-python-command): Use a defcustom.
3242         (org-babel-python-mode): Use a defcustom and default to
3243         'python-mode when featured.
3245         * org-agenda.el (org-agenda-start-day): Refer to `org-read-date'
3246         in the docstring.
3248         * ox-org.el (org-org-publish-to-org): Autoload.
3250         * org-protocol.el:
3251         * org-bibtex.el: Remove remember support.
3253         * org-clock.el (org-clock-heading-for-remember): Delete.
3254         (org-clock-in): Do not set the heading for remember.
3256         * org.el (org-move-subtree-down, org-forward-element)
3257         (org-backward-element):
3259         * org-table.el (org-table-previous-field)
3260         (org-table-move-column, org-table-move-row):
3262         * org-list.el (org-move-item-down, org-move-item-up)
3263         (org-cycle-item-indentation): Use `user-error' when moving or
3264         modifying the element at point is not possible.
3266         * ox-html.el (org-html-table-header-tags)
3267         (org-html-table-data-tags, org-html-table-row-tags)
3268         (org-html-table-align-individual-fields): Use the
3269         org-export-html group.
3270         (org-html-inline-src-block, org-html-link): Fix error messages.
3271         (org-html-begin-plain-list): Fix formatting, better FIXME
3272         comment.
3274         * org.el (org-fill-paragraph): Fill using
3275         `org-mode-transpose-word-syntax-table'.
3277         * ox-org.el (org-org-publish-to-org): New defun.
3279         * ox-html.el (org-export-htmlize): Delete group.
3280         (org-html-htmlize-output-type)
3281         (org-html-htmlized-org-css-url)
3282         (org-html-htmlize-region-for-paste): Rename from
3283         org-export-htmlize-*.
3284         (org-html-htmlize-generate-css, org-html-fontify-code): Use
3285         the correct names.
3287         * org-compat.el (org-file-equal-p): New compatibility function.
3289         * ox.el (org-export-output-file-name): Use the new function.
3291         * org-clock.el (org-clock-set-current)
3292         (org-clock-delete-current): Delete.
3293         (org-clock-in, org-clock-out): Set and delete
3294         `org-clock-current-task'.  Minor code clean-up.
3296         * org-clock.el (org-clock-in, org-clock-in-last): Tell
3297         `org-current-time' to always return a past time.
3299         * org.el (org-current-time): New argument `past' to force
3300         returning a past time when rounding.
3302         * org-agenda.el (org-agenda-unmark-clocking-task): New function.
3303         (org-agenda-mark-clocking-task): Use it.
3304         (org-agenda-clock-in): Let the cursor where it is.
3305         (org-agenda-clock-out): Ditto.  Also remove the
3306         `org-agenda-clocking' overlay.
3308         * org-agenda.el (org-agenda-set-restriction-lock): Fix restriction
3309         so that it ends at the beginning of the next headline at the same
3310         level.
3312         * org.el (org-set-effort, org-property-next-allowed-value):
3313         When needed, update the current clock effort time.
3314         (org-next-link): New parameter `search-backward'.  Fix bug when at
3315         a link with no 'org-link face, e.g., in a DONE headline.  Throw a
3316         message instead of an error.
3317         (org-previous-link): Use `org-next-link'.
3319         * org-agenda.el (org-agenda-format-item): Only set the breadcrumbs
3320         when `org-prefix-has-breadcrumbs' is non-nil.
3322         * org.el (org-mode): Don't make characters from
3323         `org-emphasis-alist' word constituents.
3324         (org-mode-transpose-word-syntax-table): Rename from
3325         `org-syntax-table'.
3326         (org-transpose-words): Use
3327         `org-mode-transpose-word-syntax-table'.
3329         * ox.el (org-export--dispatch-ui)
3330         (org-export--dispatch-action): Use integers for control chars.
3332         * org-agenda.el (org-agenda-set-restriction-lock): Put the
3333         overlay until the end of the subtree, not the end of the
3334         headline.
3336         * org.el (org-entry-delete, org-delete-property): New optional
3337         arg delete-empty-drawer, a string, to delete any empty drawer
3338         with that name.
3339         (org-toggle-ordered-property): Delete the drawer "PROPERTIES"
3340         if empty.
3342         * org-src.el (org-src-mode-map, org-edit-src-code)
3343         (org-edit-fixed-width-region, org-edit-src-save): Use C-c C-k
3344         for `org-edit-src-abort'.
3346         * org.el (org-mode): Use org-unmodified during startup
3347         initialization for functions that may be inhibited.
3349         * org-table.el (org-table-align): Only set the window start
3350         when table alignment is performed in the selected window.
3352         * org-src.el (org-edit-src-auto-save-idle-delay): New option.
3353         (org-src-ask-before-returning-to-edit-buffer): Make a defcustom.
3354         (org-edit-src-code-timer): New timer variable.
3355         (org-edit-src-code): Run the timer.
3356         (org-edit-fixed-width-region): Enhance message.
3357         (org-edit-src-exit): Cancel the timer.
3358         (org-edit-src-save): Prevent saving when editing fixed-width
3359         buffer, exiting will save already.
3360         (org-edit-src-exit): Inconditionally kill the src/example
3361         editing buffer.
3363         * org-pcomplete.el (pcomplete/org-mode/file-option): Require
3364         'org-element.  This fixes a bug about unbound variable
3365         `org-element-affiliated-keywords' when trying to complete a
3366         keyword before 'org-element was required.
3368         * org-list.el (org-list-bullet-string): Replace match when there
3369         is a match, otherwise just return the bullet.
3371         * org-src.el (org-src-mode-map): New binding C-c k to abort
3372         editing.
3373         (org-edit-src-code): Mention the keybinding to abort editing
3374         and go back to the correct position.
3375         (org-edit-src-abort): New command to abort editing.
3377         * ox-html.el (org-html--build-meta-info): Add a newline before
3378         the title meta information.
3380         * org.el (org-return-follows-link): Mention that this does not
3381         affect the behavior of RET in tables.
3383         * ox-html.el (org-html--build-mathjax-config): Only include
3384         MathJax configuration if the resulting HTML contains LaTeX
3385         fragments.
3387         * org.el (org-syntax-table, org-transpose-words): Delete.
3388         (org-mode): Syntactically Define {} and <> as parentheses.
3389         (org-drag-line-forward, org-drag-line-backward): New
3390         functions.
3391         (org-shiftmetaup, org-shiftmetadown): Fall back on the new
3392         functions instead of throwing an error.
3393         (org-make-org-heading-search-string): Don't use statistic or [x/y]
3394         cookies when creating a link.
3396         * ox-html.el (org-html-table): Append #+attr_html attributes.
3398         * org.el (org-emphasis-alist, org-protecting-blocks):
3399         * org-src.el (org-edit-src-find-region-and-lang):
3400         * org-list.el (org-list-forbidden-blocks):
3401         * org-footnote.el (org-footnote-forbidden-blocks): Remove
3402         references to the deleted DocBook exporter.
3404         * org.el (org-end-of-line): Don't throw an error outside elements.
3406         * ox-html.el (org-html-link): Don't throw an error if the value
3407         of the :ID: property has not been generated by uuidgen.
3409         * org-pcomplete.el (pcomplete/org-mode/file-option/x):
3410         Resurrect.  Use `org-default-options' to initialize completion
3411         fonctions for the most important keywords.
3413         * org-macs.el (org-default-options): Rename and adapt from
3414         `org-get-current-options'.
3416         * org.el (org-options-keywords): Add keywords.
3418         * ox-odt.el (org-odt-convert-read-params): Fix typo in prompt.
3420         * ox-latex.el (org-latex-horizontal-rule): Fix typo in docstring.
3422         * ox-html.el (org-html-display-buffer-mode): New option.
3423         (org-html-export-as-html): Use it.
3425         * ob-core.el (org-babel-insert-result): Fix bug when inserting
3426         an empty string as the result.
3428         * org.el (org-timestamp-change): New optional parameter
3429         `suppress-tmp-delay' to suppress temporary delay like "--2d".
3430         (org-auto-repeat-maybe): Suppress temporary delays.
3432         * org-agenda.el (org-agenda-get-scheduled): When the delay is
3433         of the form "--2d" and there is a repeater, ignore the delay
3434         for further repeated occurrences.
3436         * org-agenda.el (org-agenda-get-deadlines)
3437         (org-agenda-get-scheduled): Minor refactoring.
3439         * org.el (org-time-string-to-absolute): Tiny docstring enhancement.
3440         (org-edit-special): Don't allow to edit when buffer is read only.
3442         * ox-html.el (org-html-format-latex): Don't set `cache-relpath'
3443         and `cache-dir' when `processing-type' is 'mathjax.
3444         (org-html-format-latex): Fix conversion in non-file buffers.
3446         * org.el (org-speed-commands-default): Bind `B' and `F' to
3447         `org-previous-block' and `org-next-block'.
3448         (org-read-date-minibuffer-local-map): Use "!" instead of "?" to
3449         see today's diary as "?" is already bounded by Calendar.
3450         (org-read-date-minibuffer-local-map): Use "." to go to today's
3451         date.
3453         * ob-core.el (org-babel-next-src-block)
3454         (org-babel-previous-src-block): Rewrite using
3455         `org-next-block'.
3457         * org.el (org-next-block, org-previous-block): New navigation
3458         commands.
3459         (org-mode-map): Bind the new commands to C-c C-F and C-c C-B
3460         respectively.
3462         * org-agenda.el (org-agenda-write): Don't copy headlines' subtrees
3463         when writing to an .org file.
3465         * org.el (org-copy-subtree): New parameter `nosubtrees'.
3467         * org-agenda.el (org-agenda-write): Allow writing to an .org file.
3469         * org.el (org-paste-subtree): Fix typo in docstring.
3471         * org-agenda.el (org-agenda-get-todos)
3472         (org-agenda-get-timestamps): Use nil as `ts-date' for diary
3473         sexpressions.
3474         (org-agenda-get-todos): Skip diary sexps when trying to sort by
3475         timestamp.
3476         (org-agenda-max-entries, org-agenda-max-todos)
3477         (org-agenda-max-tags, org-agenda-max-effort): New options.
3478         (org-timeline, org-agenda-list, org-search-view)
3479         (org-todo-list, org-tags-view): Tell `org-agenda-finalize-entries'
3480         what agenda type we are currently finalizing for.
3481         (org-agenda-finalize-entries): Limit the number of entries
3482         depending on the new options.
3483         (org-agenda-limit-entries): New function.
3485         * org.el (org-deadline): Allow a double universal prefix argument
3486         to insert/update a warning cookie.
3487         (org-deadline): Allow a double universal prefix argument to
3488         insert/update a delay cookie.
3490         * org-agenda.el (org-agenda-skip-scheduled-delay-if-deadline):
3491         New option.  The structure of the possible values is copied
3492         from `org-agenda-skip-deadline-prewarning-if-scheduled'.
3493         (org-agenda-get-scheduled): Honor the two new option,
3494         `org-scheduled-delay-days' and
3495         `org-agenda-skip-deadline-prewarning-if-scheduled'.  I.e. if a
3496         scheduled entry has a delay cookie like "-2d" (similar to the
3497         prewarning cookie for deadline), don't show the entry until
3498         needed.
3500         * org.el (org-deadline-warning-days): Small docstring fix.
3501         (org-scheduled-delay-days): New option (see
3502         `org-deadline-warning-days'.)
3503         (org-get-wdays): Use the new option.
3505         * org-agenda.el (org-agenda-sorting-strategy): Document the
3506         new sorting strategies.
3507         (org-agenda-get-todos, org-agenda-get-timestamps)
3508         (org-agenda-get-deadlines, org-agenda-get-scheduled): Add a
3509         `ts-date' text property with scheduled, deadline or timetamp
3510         date.
3511         (org-cmp-ts): New function to compare timestamps.
3512         (org-em): Add a docstring.
3513         (org-entries-lessp): Use `org-cmp-ts' to compare timestamps.
3514         Implement the following sorting strategies: timestamp-up/down,
3515         scheduled-up/down, deadline-up/down, ts-up/down (for active
3516         timestamps) and tsia-up/down (for inactive timestamps.)
3518         * ob-lilypond.el (ly-process-basic): Bugfix, don't use `pcase'.
3520         * org.el (org-contextualize-validate-key): Check against two new
3521         context predicates [not-]in-buffer.
3523         * org-agenda.el (org-agenda-custom-commands-contexts):
3524         Document the new [not-]in-buffer context predicates.
3526         * ob-core.el (org-ts-regexp): Remove duplicate defconst'ing.
3527         (org-babel-result-regexp): Don't use `org-ts-regexp', use a regexp
3528         string directly.
3530         * ob-lilypond.el (ly-process-basic): Don't use `ly-gen-png' and
3531         friends, rely on the extension of the output file.
3533         * org-archive.el (org-archive-file-header-format): New option.
3534         (org-archive-subtree): Use it.
3536         * ob-lilypond.el (ly-process-basic): Rely on ly-gen-png/pdf/eps to
3537         set the output type.
3539         * org.el (org-read-date-minibuffer-local-map): New variable.
3540         (org-read-date): Use it.
3541         (org-read-date-minibuffer-setup-hook): Mark as obsolete.
3542         (org-read-date): Bind `!' to `diary-view-entries' in order to
3543         check diary entries while setting an Org date.
3545         * org-agenda.el (org-diary): Only keep the descriptions of the
3546         links since Org links are not active in the diary buffer.
3548         * org-faces.el (org-priority): New face.
3550         * org.el (org-font-lock-add-priority-faces): Use the new face.
3552         * org-agenda.el (org-agenda-fontify-priorities): Use the
3553         org-priority face and add specific agenda face on top of it.
3555         * org-agenda.el (org-agenda-show-clocking-issues)
3556         (org-agenda-format-item): Let-bind
3557         `org-time-clocksum-use-effort-durations' to nil.
3559         * org.el (org-ctrl-c-ctrl-c): Only throw a message when using two
3560         universal prefix arguments on a list where all items are already
3561         in a transitory state.  Refine the error when the checkbox cannot
3562         be toggled.
3564         * org.el ("org-loaddefs.el"): Load org-loaddefs.el before
3565         requiring any org library.  Also use `load', not
3566         `org-load-noerror-mustsuffix'.
3567         (org-effort-durations): Move up to fix a compiler warning.
3568         (org-edit-special): Fix typo in docstring.
3569         (org-time-clocksum-format): Add a version tag and add to the
3570         'org-clock group.
3571         (org-time-clocksum-use-fractional): Ditto.
3572         (org-time-clocksum-use-effort-durations): New option to allow
3573         using `org-effort-durations' when computing clocksum durations.
3574         (org-minutes-to-clocksum-string): Use the new option.
3576         * org-clock.el (org-clocktable-write-default): Let-bind
3577         `org-time-clocksum-use-effort-durations' to a new clocktable
3578         parameter ":effort-durations".
3580         * org-entities.el (org-entities): "neg" should be used in LaTeX
3581         math mode.  Add the "neg" entity.
3583         * org-mobile.el (org-mobile-allpriorities): New option.
3584         (org-mobile-create-index-file): Use the new option.
3586         * org-latex.el (org-export-latex-inline-images): New option.
3588         * org.el (org-forward-heading-same-level): Before the first
3589         headline, go to the first headline.
3590         (org-backward-heading-same-level): Before the first headline,
3591         go to the beginning of the buffer, like
3592         `outline-previous-visible-heading' does.
3594         * org-exp.el (org-export-plist-vars): Don't use
3595         `org-export-html-inline-images' to set the :inline-images
3596         property, use distinct properties for the various backends.
3598         * org-publish.el (org-publish-project-alist): Ditto.
3600         * org-latex.el (org-export-latex-links): Use :latex-inline-images
3601         instead of :inline-images.
3603         * org-odt.el (org-compat): Require.
3605         * org.el (org-parse-time-string): Allow strings supported by
3606         tags/properties matcher (eg <now>, <yesterday>, <-7d>).
3608         * org-clock.el (org-clock-rounding-minutes): New option to round
3609         the time by N minutes in the past when clocking in or out.
3610         (org-clock-in, org-clock-in-last, org-clock-out): Use the new
3611         option.
3613         * org.el (org-current-time): New optional parameter
3614         `rounding-minutes' to override the use of
3615         `org-time-stamp-rounding-minutes' for rounding.
3617         * org-clock.el (org-clock-special-range): Small docstring fix.
3618         New parameter 'weekstart to define the week start day.
3619         (org-clock-special-range, org-dblock-write:clocktable)
3620         (org-dblock-write:clocktable, org-clocktable-write-default)
3621         (org-clocktable-steps, org-clock-get-table-data): Use the new
3622         parameter.
3623         (org-clocktable-defaults): Set monday as the starting day of the
3624         week by setting :wstart to 1.
3626         * org.el (org-store-link): Fix the naming of internal links to
3627         lines starting with a keyword.
3629         * org-agenda.el (org-agenda-Quit, org-agenda-quit)
3630         (org-agenda-exit, org-agenda-kill-all-agenda-buffers):
3631         Docstring fixes.
3633         * org.el (org-last-set-property-value): New variable.
3634         (org-read-property-name): Fix dangling parentheses.
3635         (org-set-property-and-value): New command to manually set
3636         both the property and the value.  A prefix arg will use the
3637         last property-value pair set without prompting the user.
3638         (org-set-property): Set `org-last-set-property-value'.
3639         (org-mode-map): Bind the new command to `C-c C-x P'.
3640         (org-find-invisible-foreground): Delete.
3641         (org-mode): Use `face-background' instead of
3642         `org-find-invisible-foreground'.
3643         (org-startup-options): New startup keywords.
3644         (org-log-into-drawer): Update docstring to explain how to set this
3645         variable through the startup keyword "logdrawer" and "nologdrawer".
3646         (org-log-states-order-reversed): Document the new startup keywords
3647         "logstatesreversed" and "nologstatesreversed".
3648         (org-mode-map): Use `org-remap' instead of binding `M-t' to
3649         `org-transpose-words' directly.
3650         (org-syntax-table): New variable.
3651         (org-transpose-words): New command, simply wrapping the new
3652         syntax table around `transpose-words'.
3653         (org-mode-map): Bind `org-transpose-words' to `M-t'.
3654         (org-store-link): Use keyword at point as the search string.  Use
3655         `delq nil' instead of `delete nil'.
3656         (org-make-org-heading-search-string): Rewrite using
3657         org-element.el.  Not an interactive function anymore.
3659         * org-pcomplete.el (pcomplete/org-mode/drawer): Ditto.
3661         * org-mobile.el (org-mobile-files-alist): Ditto.
3663         * org.el (org-store-link): When creating a link to a heading with
3664         a bracket link, don't escape this link with curly braces as the
3665         escaped link is not active anyway; use the description instead.
3666         If the headline only consists of a bracket link, add a star to the
3667         description so that the user knows this is an internal link.
3669         * org-w3m.el (org-w3m-store-link): New function.
3671         * org.el (org-store-link): Update the error message when no method
3672         is available for storing a link.  Use `user-error' for this.
3673         Remove handling w3m links from this function.
3674         (org-insert-heading, org-insert-todo-heading): A double prefix arg
3675         force the insertion of the subtree at the end of the parent
3676         subtree.
3677         (org-store-link): A double prefix argument now skips module
3678         store-link functions to only use Org's core functions.  Also, when
3679         several modular store-link functions match, ask for which one to
3680         use.
3681         (org-cycle, org-cycle-internal-global)
3682         (org-cycle-internal-local, org-display-outline-path): Let-bind
3683         `message-log-max' to nil so that messages don't populate the
3684         *Messages* buffer.
3686         * org-table.el (org-table-eval-formula): Handle localized
3687         time-stamps by internally converting them to english during
3688         formulas evaluation.
3690         * org.el (org-clock-timestamps-up): Fix declarations.
3692         * ob-core.el (org-split-string): Declare function.
3694         * org-html.el (org-html-export-list-line): Add CSS classes to
3695         these list HTML tags: <ul> <dl> and <ol>.
3697         * org-clock.el (org-clock-timestamps-up)
3698         (org-clock-timestamps-down, org-clock-timestamps-change): Add
3699         an optional argument N to change timestamps by several units.
3701         * org.el (org-shiftcontrolup, org-shiftcontroldown): Ditto.
3703         * org-exp.el (org-export-copy-to-kill-ring): Add a new choice
3704         'if-interactive and use it as the default.
3705         (org-export-push-to-kill-ring): Use the new choice.
3707         * org.el (org-block-entry-blocking): New variable.
3708         (org-todo): Use it.  Also use `user-error' when a TODO state
3709         change is blocked.
3710         (org-block-todo-from-children-or-siblings-or-parent): Display
3711         `org-block-entry-blocking' in the user-error message.
3713         * org.el (org-get-cursor-date): New optional argument WITH-TIME to
3714         add the time of the day.
3716         * org-capture.el (org-capture): When capturing from the agenda and
3717         with a non-nil value for `org-capture-use-agenda-date', a `C-1'
3718         prefix will set the capture time to the HH:MM of the current line
3719         or the current HH:MM.
3721         * org-agenda.el (org-agenda-capture): New optional argument
3722         WITH-TIME: when set to 1, the capture time will be set to the
3723         HH:MM time of the current line, or the current HH:MM time.
3725         * org.el (org-latex-preview-ltxpng-directory): Fix docstring
3726         formatting.
3727         (org-deadline-close): Use `org-time-stamp-to-now'.
3728         (org-time-stamp-to-now): Use `org-float-time' instead of the
3729         obsolete `time-to-seconds' function.
3730         (org-format-outline-path): Fix bug: add the separator string after
3731         the prefix.
3732         (org-display-inline-images): Search for #+ATTR within the current
3733         paragraph.
3734         (org-days-to-time): Make obsolete.
3735         (org-time-stamp-to-now): Rename from `org-days-to-time'.
3736         Allow to compare time-stamps based on seconds.
3738         * org-agenda.el (org-agenda-todo-ignore-time-comparison-use-seconds):
3739         New option to compare time stamps using seconds, not days.
3740         (org-agenda-todo-custom-ignore-p)
3741         (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item):
3742         Use the new function's name and the new option.
3744         * org-clock.el (org-clock-sound): Enhance docstring.
3745         (org-notify): Use the parameter `play-sound' as argument for
3746         `org-clock-play-sound'.
3747         (org-clock-play-sound): New optional argument `clock-sound' to
3748         override `org-clock-sound'.
3750         * org-agenda.el (org-agenda-format-item): Fix initialization
3751         of the level text property.
3753         * org.el (org-format-outline-path): Small docstring
3754         enhancement.
3755         (org-display-outline-path): Fix order or arguments.
3757         * org.el (org-activate-plain-links)
3758         (org-activate-bracket-links): Add a new 'htmlize-link text
3759         property, so that htmlize (> version 1.42) can linkify the
3760         links.
3761         (org-display-outline-path): Allow a string value for the
3762         `as-string' parameter.  Such a value will replace the "/"
3763         separator in the output.  New argument `as-string'.
3764         (org-refile-keep): New variable.
3765         (org-copy): New command to copy notes.
3766         (org-refile): New parameter msg to override the "Refile" string in
3767         the default prompt.
3768         (org-mode-map): Bind "C-c M-w" to `org-copy'.
3769         (org-refile-get-location): Use the current file name as the
3770         default target when there is no refile history.
3771         (org-cycle-hide-inline-tasks): New function to hide inline tasks
3772         when cycling.
3773         (org-cycle-hook): Use the new function.
3774         (org-entry-put): Fix bug when updating the last clock.
3775         (org-use-last-clock-out-time-as-effective-time): New option.
3776         (org-current-effective-time): Use the new option.
3778         * org-clock.el (org-clock-get-last-clock-out-time): New
3779         function.
3781         * org.el (org-toggle-inline-images): Only send a message when
3782         called interactively.
3783         (org-scan-tags): Fix the declaration and the use of
3784         `org-agenda-format-item'.
3786         * org-agenda.el (org-agenda-add-time-grid-maybe): Use the
3787         correct number of parameters for `org-agenda-format-item'.
3788         Add a docstring.
3790         * org.el (org-outline-level): Go at the beginning of the
3791         headline first to always return a sensible result.
3793         * org-agenda.el (org-search-view, org-agenda-get-todos)
3794         (org-agenda-get-timestamps, org-agenda-get-sexps)
3795         (org-agenda-get-progress, org-agenda-get-deadlines)
3796         (org-agenda-get-scheduled, org-agenda-get-blocks): Return the
3797         correct level depending on `org-odd-levels-only'.
3798         (org-agenda-prefix-format): A new specifier `%l' allows to insert
3799         X spaces when the item is of level X.
3800         (org-search-view, org-get-entries-from-diary)
3801         (org-agenda-get-todos, org-agenda-get-timestamps)
3802         (org-agenda-get-sexps, org-agenda-get-progress)
3803         (org-agenda-get-deadlines, org-agenda-get-scheduled)
3804         (org-agenda-get-blocks, org-agenda-change-all-lines): Add a
3805         new text property 'level, a string with as many whitespaces as
3806         the level of the item.
3807         (org-agenda-format-item, org-compile-prefix-format): Handle
3808         the new `%l' specifier.
3810         * org-colview.el (org-columns-next-allowed-value): Add the
3811         CLOCKSUM property to the list of properties that can be
3812         changed interactively from the column view.
3814         * org.el (org-entry-put): Allow to set the CLOCKSUM property
3815         by updating the most recent clock.  This is useful in the
3816         column view when you want to use S-<left/right> to update the
3817         last clock of the entry at point.
3818         (org-image-actual-width): New choice: use #+ATTR* or fall back on
3819         a number.
3820         (org-display-inline-images): Implement the new choice.
3821         (org-image-actual-width): Rename from `org-image-fixed-width'.
3822         Update the docstring.  Give more choice.
3823         (org-display-inline-images): Use the option new choices.
3824         (org-image-fixed-width): New option to set a fixed width for
3825         inline images.
3826         (org-display-inline-images): Use the new option.
3828         * org-agenda.el (org-class): Allow to use holiday strings for
3829         the `skip-weeks' arguments.
3831         * org.el (org-mode): Set the syntax of the " character to "string
3832         quote".
3834         * org-agenda.el (org-agenda-append-agenda): Bugfix: correctly
3835         check whether we are in `org-agenda-mode'.
3836         (org-agenda): Set `org-agenda-buffer-name' correctly with sticky
3837         agendas and non-custom commands.
3839 2013-11-12  Carsten Dominik  <carsten.dominik@gmail.com>
3841         * org-src.el (org-edit-src-exit): Let overlay survive after the
3842         buffer has been saved.
3844         * ox-texinfo.el (org-texinfo-export-to-texinfo): Use new style
3845         backquoting.
3846         (org-texinfo-export-to-info): Use new style backquoting.
3848         * ob-latex.el (org-babel-execute:latex): Call `file-name-sans-extension'
3849         instead of `file-base-name'.
3851         * org.el (org-insert-heading): Improve whitespace behavior at
3852         end of subtree.
3853         (org-latex-default-packages-alist): Add the `rotating' package to
3854         the list of default packages.  Improve docstring.
3855         (org-insert-property-drawer): Insert only after space in current
3856         line.
3857         (org-forward-paragraph, org-backward-paragraph): Do not deactivate
3858         the mark.
3859         (org-special-ctrl-o): New option.
3860         (org-open-line): Don't do anything special unless `org-special-ctrl-o'
3861         is non-nil.
3863         * org-agenda.el (org-agenda-custom-commands-local-options):
3864         (org-agenda-span, org-agenda-ndays-to-span)
3865         (org-agenda-span-to-ndays, org-agenda-list, org-agenda-later)
3866         (org-agenda-change-time-span, org-agenda-compute-starting-span): Add
3867         support for fortnight view.
3868         (org-agenda-menu): Add fortnight view command.
3869         (org-agenda-fortnight-view): New command.
3871         * org-timer.el (org-clock-sound): Silence compiler.
3873         * org.el (org-beginning-of-line, org-end-of-line): Bind
3874         deactivate-mark to avoid that this command deactivates it.
3875         (org-make-tags-matcher): Do not interpret / in property value as
3876         starter of TODO match.
3877         (org-overview): Preserve point.
3878         (org-read-date-minibuffer-local-map): Don't replace disputed keys
3879         when defining this keymap.
3880         (org-read-date): Remove unnecessary binding of
3881         `org-replace-disputed-keys'.
3882         (org-insert-heading): Allow to remove blank lines if the user does
3883         not want any.
3884         (org-unlogged-message): Fix typo in dostring.
3886         * ob-ruby.el: New customizations `org-babel-ruby-hline-to' and
3887         `org-babel-ruby-nil-to'
3888         (org-babel-ruby-var-to-ruby): Convert incoming 'hlines.
3889         (org-babel-ruby-table-or-string): Convert outgoing nils.
3891         * org.el (org-file-apps-defaults-gnu): Use `xdg-open' to open
3892         files where available.
3894         * org-table.el (orgtbl-radio-table-templates): Improve docstring.
3896         * org.el (org-unlogged-message): New function.
3897         (org-cycle, org-cycle-internal-global, org-cycle-internal-local)
3898         (org-global-cycle, org-display-outline-path): Use
3899         `org-unlogged-message'.
3901         * org-pcomplete.el (org-make-org-heading-search-string): Fix
3902         function declaration.
3903         (pcomplete/org-mode/searchhead): Remove incorrect second arguments
3904         to `org-make-org-heading-search-string'.
3906         * org.el (org-read-date): Turn off replacing disputed keys when
3907         defining the minibuffer keys during date selection.
3908         (org-insert-heading): Improve the empty line insertion behavior.
3909         Basically, never remove empty lines, only add them.
3911         * org-attach.el (org-attach-commit): Use vc-git to find the git
3912         repository.
3914         * org-compat.el (org-move-to-column): Turn off invisibility stuff
3915         for moving the cursor to a column.
3917         * org.el (org-modules): Update with the new module org-mac-link.
3918         (org-display-outline-path): Do not log outline path in Message
3919         buffer.
3920         (org-agenda-ignore-drawer-properties): New option.
3921         (org-agenda-prepare-buffers): Honour
3922         `org-agenda-ignore-drawer-properties'.
3924         * org-clock.el (org-clock-goto): Recenter to thrd line
3926         * org-table.el (orgtbl-send-replace-tbl): Allow multiple spaces
3927         between keywords in RECEIVE ORGTBL lines.
3929         * org.el (org-bookmark-names-plist): New user option.
3930         (org-set-regexps-and-options-for-tags): Use `org-bookmark-names-plist'.
3931         (org-refile): Use `org-bookmark-names-plist'.
3933         * org-capture.el (org-capture-bookmark-last-stored-position): Use
3934         `org-bookmark-names-plist'.
3936         * org.el (org-insert-heading): Rewritten from scratch.
3937         (org-N-empty-lines-before-current): New function
3938         (org-insert-heading-respect-content): Set the correct argument to
3939         force a heading even in lists.
3941         * org-colview.el (org-columns-display-here): Enforce fixed width
3942         font.
3944         * org-faces.el (org-column): Setting font width has been shifted
3945         to org-colview.el.
3947         * org.el (org-mode-flyspell-verify): Check for src block.
3949         * org-table.el (org-table-convert-region): Fix interactive
3950         statement.
3952         * org-ctags.el (org-ctags-path-to-ctags): Avoid usine `case'.
3954         * org.el (org-beginning-of-line, org-end-of-line): Set
3955         disable-point-adjustment when the command ends next to invisible
3956         text.
3958         * ob-lob.el (org-babel-lob-files): Fix custom type.
3960         * org-agenda.el (org-agenda-export-html-style, org-agenda-ndays)
3961         (org-agenda-inactive-leader, org-agenda-day-face-function)
3962         (org-agenda-auto-exclude-function): Fix custom type.
3964         * org-bibtex.el (org-bibtex-prefix): Fix custom type.
3966         * org-clock.el (org-clock-heading-function):
3967         (org-show-notification-handler): Fix custom type.
3969         * org-footnote.el (org-footnote-auto-adjust): Fix custom type.
3971         * org-protocol.el (org-protocol-default-template-key): Fix custom
3972         type.
3974         * org.el (org-make-link-description-function):
3975         (org-link-translation-function):
3976         (org-link-frame-setup):
3977         (org-refile-target-verify-function):
3978         (org-get-priority-function):
3979         (org-use-fast-tag-selection):
3980         (org-columns-modify-value-for-display-function):
3981         (org-sparse-tree-default-date-type):
3982         * ox-html.el (org-html-postamble):
3983         (org-html-postamble-format):
3984         (org-html-preamble-format):
3985         * ox-odt.el (org-odt-content-template-file):
3986         * ox.el (org-export-with-archived-trees):
3987         (org-export-initial-scope): Fix custom type.
3989         * org.el (org-insert-heading): Fix problem with inserting heading.
3990         Check for checkbox at the beginning of the item, not just at the
3991         beginning of the line.
3992         (org-small-year-to-year): Fix docstring typo.
3993         (org-show-siblings): By default, also show siblings from a
3994         bookmark jump.
3996         * org-agenda.el (org-agenda-set-restriction-lock): Highlight only
3997         the headline when agenda is restricted to a subtree.  Do not
3998         highlight the entire subtree.
4000         * org-table.el (org-table-eval-formula): Work-around for calc-eval
4001         regression.
4003         * ox.el (org-export-dispatch): Make sure the last position marker
4004         uses the base buffer if there is one.
4005         (org-export-dispatch-last-position): New variable.
4006         (org-export-dispatch): Save position of cursor at the moment when
4007         the export command is called.  Restore that position temporarily
4008         when repeating the previous export command.
4010         * org.el (org-insert-heading): Shrink whitespace at end of subtree
4011         when `org-insert-heading-respect-content' is on.
4013         * org-list.el (org-sort-list): Respect sorting-type and
4014         getkey-func when they are specified in the call.
4016         * org.el (org-sort-entries): Respect sorting-type and getkey-func
4017         when they are specified in the call.
4018         (org-format-outline-path): New argument SEPARATOR to specify a
4019         string that is inserted between parts of the outline path.
4020         (org-display-outline-path): New argument SEPARATOR, to specify a
4021         string that is inserted between parts of the outline path.
4023         * org-colview.el (org-dblock-write:columnview): Change the capture
4024         of pos to after inserting the original content
4026 2013-11-12  Christian Moe  <mail@christianmoe.com>
4028         * ox-odt.el (org-odt-line-break, org-odt-plain-text): Remove
4029         newline after line-break tag.
4031 2013-11-12  Christophe Junke  <christophe.junke@inria.fr>  (tiny change)
4033         * org.el (org-set-font-lock-defaults): Let footnote fontifications
4034         be done before other links' fontification.  This allows links
4035         appearing inside footnotes to be both visible and active.
4037 2013-11-12  Christopher Schmidt  <christopher@ch.ristopher.com>
4039         * org.el (orgstruct-setup): Major rewrite.
4040         (orgstruct++-mode): Overwrite local non-org vars again.
4041         (orgstruct-mode): Simplify implementation.  Emulate outline's
4042         buffer-invisiblity-spec.
4043         (orgstruct-heading-prefix-regexp): Change default value to nil.
4044         (orgstruct-error): Use `user-error' if available.
4045         {pro,de}motion commands if `orgstruct-heading-prefix-regexp' is
4046         non-nil.  Always use `org-outline-level'.  Bind org-shift*.
4047         (orgstruct-make-binding): Major rewrite.
4048         (org-cycle-global-status, org-cycle-subtree-status): Set state
4049         property.
4050         (org-heading-components): Use `org-heading-regexp' in
4051         orgstruct-mode.
4052         (orgstruct-heading-prefix-regexp, orgstruct-setup-hook): New
4053         options.
4054         (orgstruct-initialized): New variable.
4055         (org-get-local-variables): Honour state property.
4056         (org-run-like-in-org-mode): Use `let' instead of `progv'.  Do not
4057         override variables with non-default values.
4058         (org-forward-heading-same-level): Do not skip to headlines on
4059         another level.  Handle negative prefix argument correctly.
4060         (org-backward-heading-same-level): Use
4061         `org-forward-heading-same-level'.
4063 2013-11-12  Craig Tanis  <craig-tanis@utc.edu>  (tiny change)
4065         * ox-latex.el (org-latex-src-block): Change format string to position
4066         caption after figure content.
4068 2013-11-12  Eric Abrahamsen  <eric@ericabrahamsen.net>
4070         * org.el (org-ctrl-c-ctrl-c): `C-c C-c' on a link is usually a
4071         no-op.  If that link is in a headline, act as if the `C-c C-c' was
4072         called on the headline, not the link.
4074         * ox-html.el (org-html-doctype-alist): New variable holding an
4075         alist of (X)HTML doctypes
4076         (org-html-xhtml-p, org-html-html5-p, org-html-close-tag): New
4077         function.
4078         (org-html-html5-fancy): New export option, determining whether or
4079         not to use HTML5-specific elements.
4080         (org-html-html5-elements): New variable, new HTML5 elements.
4081         (org-html-special-block): Export special blocks to new HTML5
4082         elements.
4083         (org-html-format-inline-image): Use <figure> and <figcaption> for
4084         standalone images.
4085         (org-html-format-inline-image, org-html--build-meta-info)
4086         (org-html--build-head, org-html--build-pre/postable)
4087         (org-html-template, org-html-horizontal-rule)
4088         (org-html-format-list-item, org-html-line-break, org-html-table)
4089         (org-html-verse-block): Changes to allow flavored export.
4091         * ox-latex.el (org-latex--org-table, org-latex-table-row): Allow
4092         use of the "tabu" and "longtabu" table environments.  New table
4093         attribute :spread handles the width specification syntax of "tabu"
4094         and "longtabu" table environments.
4096 2013-11-12  Eric Schulte  <eric.schulte@gmx.com>
4098         * org-bibtex.el (org-bibtex-read-buffer): Reads all bibtex entries
4099         in a buffer.
4100         (org-bibtex-read-file): Read all bibtex entries in a file.
4101         (org-bibtex-import-from-file): Import all bibtex entries from a
4102         file into the current buffer.
4104         * ob-tangle.el (org-babel-load-file): When called with a prefix
4105         argument the tangled emacs-lisp file will be byte compiled.
4107         * ob-tangle.el (org-babel-tangle): Tangled files should not be
4108         writable.
4110         * ob-emacs-lisp.el (org-babel-execute:emacs-lisp): Better about
4111         when to fully escape the results or just print them close to
4112         verbatim.
4114         * ob.el (org-babel-result-cond): This function should now be used
4115         by all language backends to handle the processing of raw code
4116         block output into scalar results, table results, or ignored
4117         results depending on the value of result-params.
4119         * ob-C.el (org-babel-C-execute): Use org-babel-result-cond.
4121         * ob-R.el (org-babel-R-evaluate-external-process)
4122         (org-babel-R-evaluate-session):
4123         * ob-awk.el (org-babel-execute:awk):
4124         * ob-clojure.el (org-babel-execute:clojure):
4125         * ob-emacs-lisp.el (org-babel-execute:emacs-lisp):
4126         * ob-fortran.el (org-babel-execute:fortran):
4127         * ob-io.el (org-babel-io-evaluate):
4128         * ob-java.el (org-babel-execute:java):
4129         * ob-lisp.el (org-babel-execute:lisp):
4130         * ob-maxima.el (org-babel-execute:maxima):
4131         * ob-picolisp.el (org-babel-execute:picolisp):
4132         * ob-python.el (org-babel-python-evaluate-external-process):
4133         (org-babel-python-evaluate-session):
4134         * ob-scala.el (org-babel-scala-evaluate):
4135         * ob-sh.el (org-babel-sh-evaluate):
4136         * ob-shen.el (org-babel-execute:shen):
4137         * ob-sql.el (org-babel-execute:sql):
4138         * ob-sqlite.el (org-babel-execute:sqlite): Use
4139         `org-babel-result-cond'.
4141         * ob.el (org-babel-common-header-args-w-values): Add a new "none"
4142         header argument.
4143         (org-babel-execute-src-block): Don't do *any* result processing if
4144         the "none" header argument has been specified.
4145         (org-babel-sha1-hash): Remove the none header argument from header
4146         arg lists when calculating cache sums.
4147         (org-babel-insert-result): Flesh out some documentation.
4149         * ob.el (org-babel-insert-result): Don't escape results in
4150         drawers.
4152         * ob-python.el (org-babel-python-hline-to): Customize hline
4153         conversion to python.
4154         (org-babel-python-None-to): Customize none conversion from python.
4155         (org-babel-python-var-to-python): Use new variable.
4156         (org-babel-python-table-or-string): Use new variable.
4158         * org.el (org-babel-load-languages): Add ob-makefile to
4159         `org-babel-load-languages'.
4161         * ob-makefile.el: New file.
4163         * ob-sh.el (org-babel-sh-evaluate): Don't could 0-length shebangs.
4165         * org.el (org-format-latex): Simplify and now make use of the new
4166         `org-create-formula-image' function.
4167         (org-create-formula-image): Provides a simpler interface to the
4168         two backend-specific functions.
4170         * ob-core.el (org-babel-default-header-args): It is likely that
4171         someone meant to set :padlines to "yes", but accidentally set
4172         :padnewlines to "yes".  Either way lets just remove this which
4173         shouldn't have any functional effect.
4175         * ob-haskell.el (org-babel-default-header-args:haskell): Set
4176         :padlines to "no" by default.
4178         * ob-exp.el (org-babel-exp-non-block-elements): Ignore inline
4179         source block on #+ prefixed lines.
4181         * ob-core.el (org-babel-merge-params): Replace `remove-if' with
4182         `org-remove-if'.  More careful to check that the colname- and
4183         rowname-names header arguments exist during merge.  When merging
4184         parameters, if a variable is replaced with a new value, then
4185         delete colnames/rownames for the original value of that variable.
4187         * ob-ditaa.el (org-babel-ditaa-java-cmd): Make java executable
4188         configurable for ditaa blocks.
4190         * ob-sh.el (org-babel-sh-var-to-string): Fix bug in ob-sh when
4191         dealing with list variables.
4193         * ob-core.el (org-babel-demarcate-block): Include
4194         `org-src-lang-modes' in block demarcation options.
4196         * ob-C.el: Don't modify `org-babel-load-languages' from ob-*
4197         files.
4199         * ob-latex.el (org-babel-latex-htlatex): Set this variable to
4200         "htlatex" (or path to said) to enable svg generation from latex
4201         code blocks.
4202         (org-babel-latex-htlatex-packages): Libraries required for
4203         automatic svg generation.
4204         (org-babel-execute:latex): Generate SVG images directly from latex
4205         code blocks (assumes tikz).
4207         * ob-exp.el (org-babel-exp-non-block-elements): Use lob call name
4208         when exporting.
4210         * ob-scheme.el (org-babel-scheme-get-repl)
4211         (org-babel-scheme-make-session-name)
4212         (org-babel-scheme-execute-with-geiser, org-babel-execute:scheme):
4213         Fix whitespace and indentation.
4215         * ob-core.el (org-babel-set-current-result-hash): Update the
4216         match-string holding the hash data, and correct overlay
4217         maintenance.
4218         (org-babel-find-named-result): Call lines are not results.
4219         (org-babel-where-is-src-block-result): Don't implicitly name the
4220         results of call lines.
4221         (org-babel-exp-non-block-elements): There is now another element
4222         on the call line info list.
4224         * ob-lob.el (org-babel-lob-get-info): Return the name (if any) at
4225         the end of the info list.
4226         (org-babel-lob-execute): Pass the name through to execution.
4228         * ob-core.el (org-babel-execute-src-block): Ensure that the
4229         location is set before anything else is done.
4231         * ob-ref.el (org-babel-ref-parse): Evaluate Emacs Lisp values in
4232         header arguments at the location of the original code block.
4234         * ob-gnuplot.el (org-babel-expand-body:gnuplot): Use new header
4235         arguments.
4237         * ob-core.el (org-babel-common-header-args-w-values): Mention new
4238         header arguments.
4239         (org-babel-expand-body:generic): Use new header arguments.
4240         (org-babel-read-result): More robust matching of examplized
4241         ranges.
4242         (org-babel-result-end): More robust matching of examplized ranges.
4244         * ob-gnuplot.el (org-babel-expand-body:gnuplot): Gnuplot, close
4245         output terminal when opened.
4246         (org-babel-gnuplot-prefix): Customization variable prefix gnuplot
4247         code blocks.
4248         (org-babel-expand-body:gnuplot): Customization variable prefix
4249         gnuplot code blocks.
4251         * ob-core.el (org-babel-params-from-properties): Now returns a
4252         list of alists and does *not* call `org-babel-merge-params'.
4253         (org-babel-parse-src-block-match):
4254         (org-babel-parse-inline-src-block-match):
4255         * ob-exp.el (org-babel-exp-src-block):
4256         (org-babel-exp-non-block-elements):
4257         * ob-lob.el (org-babel-lob-execute): Handle new list of lists
4258         output of `org-babel-params-from-properties'.
4260         * ob-gnuplot.el (org-babel-header-args:gnuplot): Term is a gnuplot
4261         header argument.
4263         * ob-tangle.el (org-babel-tangle): Fixed bug in tangle-file.
4264         Collect tangle modes, and only apply them to the file after all
4265         tangling has completed, including the post-tangle-hook.
4267         * ob-core.el (org-babel-read): Do not read #-prefix header-arg
4268         value as emacs lisp.
4270         * ob-core.el (org-babel-current-src-block-location):
4271         (org-babel-execute-src-block):
4272         * ob-exp.el (org-babel-exp-results):
4273         * ob-lob.el (org-babel-lob-execute): Rename
4274         `org-babel-current-exec-src-block-head' to
4275         `org-babel-current-src-block-location'.
4277         * ob-core.el (org-babel-common-header-args-w-values): Adding the
4278         new :tangle-mode header argument.
4279         (org-babel-read): Read values starting with a "#" character as
4280         emacs lisp.
4282         * ob-tangle.el (org-babel-tangle): Use the new :tangle-mode header
4283         argument.
4285         * org-pcomplete.el (pcomplete/org-mode/block-option/src): Use the
4286         new :tangle-mode header argument.
4288         * ob-exp.el (org-babel-exp-results): Save the code block location
4289         into `org-babel-current-exec-src-block-head' during export.
4291         * ob-comint.el (org-babel-comint-with-output): More robust edebug
4292         spec.
4294         * ob-lob.el (org-babel-lob-execute): Set the
4295         `org-babel-current-exec-src-block-head' variable when executing
4296         inline or lob style code.
4298         * ob-core.el (org-babel-execute-src-block): The
4299         `org-babel-current-exec-src-block-head' variable should point to
4300         the outermost code block.
4302         * org.el (org-some): An org-mode version of the cl some function.
4304         * ob-fortran.el (org-babel-fortran-var-to-fortran): More careful
4305         check if values are matrices.
4307         * org.el (org-every): An Org-mode version of the cl every
4308         function.
4310         * ob-tangle.el (org-babel-tangle-jump-to-org): Use
4311         `org-src-switch-to-buffer' to jump from src to org.  Use the
4312         existing `org-edit-src' functionality to jump back to the correct
4313         point in the code block in the original Org-mode buffer.
4315         * ob-gnuplot.el (org-babel-gnuplot-quote-tsv-field): Only wrap
4316         gnuplot data values in " when necessary.  Replace missing values
4317         with blank space in gnuplot.
4318         (org-babel-expand-body:gnuplot):
4319         (org-babel-gnuplot-quote-timestamp-field): Fix indentation.
4320         (org-babel-header-args:gnuplot): Declare the.
4321         (org-babel-expand-body:gnuplot): Params is an alist not a plist.
4322         (org-babel-header-args:gnuplot): Declare gnuplot-specific header
4323         argument.
4324         (*org-babel-gnuplot-missing*): Dynamic variable used to hold the
4325         value of the missing header argument.
4326         (org-babel-gnuplot-process-vars): Wrap in local binding for
4327         missing value.
4328         (org-babel-gnuplot-quote-tsv-field): Replace missing value with
4329         the missing header argument value when present.
4331         * ob-org.el (org-babel-expand-body:org): Allow insertion of
4332         non-strings into Org code blocks.
4333         (org-babel-inline-result-wrap): New option controlling the
4334         wrapping of inline results.
4335         (org-babel-examplize-region): Use the new defcustom.
4337         * ox-beamer.el (org-beamer--format-frame): If contents is nil,
4338         then replace it with an empty string.
4340         * ob-core.el (org-babel-read): More restrictive elisp eval of
4341         header arguments.
4343         * ob-lob.el (org-babel-lob-execute): Include default elisp header
4344         args in call lines.
4346         * ob-core.el (org-babel-result-cond): Don't over-evaluate
4347         result-params in macro.
4349         * ob-ruby.el (org-babel-execute:ruby): Use `org-babel-result-cond'
4350         in Ruby code blocks.
4351         (org-babel-ruby-evaluate): Delay table processing.
4353         * ob-js.el (org-babel-execute:js): Use `org-babel-result-cond' in
4354         JavaScript code blocks.
4356         * ob-scheme.el (org-babel-execute:scheme): Use
4357         `org-babel-result-cond' in scheme code blocks.
4359         * ob-ocaml.el (org-babel-execute:ocaml): Use
4360         `org-babel-result-cond' in OCaml code blocks.
4362         * ob-haskell.el (org-babel-execute:haskell): Use
4363         `org-babel-result-cond' in Haskell code blocks.
4365         * ob-core.el (org-babel-result-cond): The "raw", "org" and
4366         "drawer" :results header argument values preclude table processing
4367         unless the "table" argument is given as well.
4368         (org-babel-execute-src-block): Make sure we process file results
4369         before they are passed to the post-processing code block, and not
4370         afterwards.  Tangles these two header arguments in the code, but
4371         makes for more intuitive behavior and enables important use cases.
4372         (org-babel-read): Read code block values with earmuffs as Emacs
4373         Lisp.
4374         (org-babel-common-header-args-w-values): Add :post to the list of
4375         header arguments.
4376         (org-babel-execute-src-block): Post process results when the :post
4377         header argument has been supplied.
4379         * ob-R.el (org-babel-R-initiate-session): Remove unnecessary
4380         save-excursion nested inside a save-window-excursion.
4382         * ob-core.el (org-babel-src-name-w-name-regexp): Update the regexp
4383         used to match code block names.
4384         (org-babel-get-src-block-info): Remove the code used to parse this
4385         alternate variable specification syntax.
4386         (org-babel-insert-result): Cycle tables for :results org and
4387         :results wrap.
4389         * ob-python.el (org-babel-python-initiate-session-by-key): Fixed a
4390         bug pointed out by Gary Oberbrunner.
4391         (org-babel-python-initiate-session-by-key): Add "-i" to the python
4392         command on windows sessions.  Actually setting new session names.
4393         Pass Python buffer names to the new `run-python' command.
4394         (org-babel-python-with-earmufs): Add earmufs to a buffer name.
4395         (org-babel-python-without-earmufs): Remove earmufs from a buffer name.
4396         (org-babel-python-initiate-session-by-key): Set the buffer name in
4397         a way which is understandable by the new python.el
4398         (org-babel-python-buffers): Change the default python buffer name.
4400         * ob-core.el (org-babel-number-p): Don't interpret single "-" as a
4401         number.
4403         * ob-perl.el (org-babel-perl--var-to-perl): Print Perl variables
4404         with a format string.
4406         * ob-core.el (org-babel-where-is-src-block-result): Allow comments
4407         between code blocks and un-named results.
4409         * ob-sqlite.el (org-babel-sqlite-table-or-scalar): Don't read
4410         sqlite output as lisp.
4412         * ob-core.el (org-babel-check-confirm-evaluate): Refactoring.
4413         (org-babel-confirm-evaluate): Fix whitespaces.
4414         (org-babel-execute-src-block): A cond makes it more clear that we
4415         definitely do not execute without user confirmation.
4416         (org-babel-call-process-region-original): Fixed line over 80 chars
4417         long.
4419         * ob-tangle.el (org-babel-tangle-collect-blocks): Update comment
4420         to reflect changed variable name.
4422         * ob-core.el (org-babel-expand-src-block): Return value of
4423         expanded code block on non-interactive calls.
4425         * ob-perl.el (org-babel-perl-var-wrap): Customizable wrapper for
4426         variables in perl code.
4427         (org-babel-perl-var-to-perl): Use said wrapper.
4429         * ob-sql.el (org-babel-execute:sql): Use the org-babel-eval
4430         command instead of shell-command.
4432         * ob-ocaml.el (org-babel-prep-session:ocaml): Check that
4433         `tuareg-run-caml' is defined before use.
4434         (tuareg-run-ocaml): Declare for compiler.
4436         * ob-core.el (org-babel-result-regexp): Simplify regexp given new
4437         time hash layout.
4438         (org-babel-current-result-hash): New match string.
4439         (org-babel-hide-hash): New match string.
4440         (org-babel-where-is-src-block-result): New match string, and
4441         insert hashes in the new format.
4443         * ob-core.el (org-ts-regexp): Declare.
4444         (org-babel-result-regexp): Now matching time stamp as well.
4445         (org-babel-hash-show-time): New variable controlling the display
4446         of time stamps.
4447         (org-babel-current-result-hash):
4448         (org-babel-hide-all-hashes):
4449         (org-babel-where-is-src-block-result): Use hash time stamps.
4451         * ob-core.el: New file.
4453         * org-macs.el: `org-load-noerror-mustsuffix' requires an autoload.
4455 2013-11-12  Feng Shu  <tumashu@gmail.com>
4457         * ox-odt.el (org-odt--translate-latex-fragments):
4458         * ox-html.el (org-html-latex-environment)
4459         (org-html-latex-fragment): Fix imagemagick support.
4461         * org.el (org-create-formula-image-with-imagemagick): Generate
4462         correct size formula image.
4463         (org-format-latex-header): Change pagestyle command position.
4465         * ox-latex.el (org-latex--caption/label-string): Allow to build a
4466         caption string from `:caption' attribute of #+ATTR_LATEX.
4468         * ox.el (org-export-dictionary): Add Simplified Chinese
4469         translations for `org-export-dictionary'.
4471 2013-11-12  Florian Beck  <fb@miszellen.de>  (tiny change)
4473         * org.el (org-activate-bracket-links): Remove escapes from the
4474         help string.
4476 2013-11-12  Francesco Pizzolante  <xxx@public.gmane.org>  (tiny change)
4478         * ox-html.el (org-html-headline): Normalize the construction of
4479         outline-container DIVs by always using the inner headline ID.
4481         * org.el (org-agenda-prepare-buffers): Protect with
4482         `org-unmodified'.
4484 2013-11-12  Gregor Kappler  <gregor@alcedo.(none)>  (tiny change)
4486         * ox.el (org-export-as): Make sure org-export-babel-evaluate is
4487         not nil before calling `org-export-execute-babel-code'.
4489 2013-11-12  Grégoire Jadi  <gregoire.jadi@gmail.com>
4491         * org.el (org-reftex-citation): Fix contrib package name in the
4492         docstring.
4493         (org-preview-latex-fragment, org-display-inline-images): Detect
4494         whether a graphic display is available before inlining images to
4495         prevent an error.
4496         (org-startup-with-latex-preview): New option.
4497         (org-startup-options): New startup keywords for the new option.
4498         (org-mode): Turn on/off LaTeX preview depending on the new option.
4499         (org-reverse-string): Add `org-reverse-string' to reverse a
4500         string.
4502         * org-id.el (org-id-new, org-id-decode): Replace
4503         `org-id-reverse-string' by `org-reverse-string'.
4505         * ob-core.el (org-babel-trim): Replace `org-babel-reverse-string'
4506         by `org-reverse-string' and declare it.
4508 2013-11-12  Gustav Wikström  <gustav.erik@gmail.com>  (tiny change)
4510         * org-agenda.el (org-agenda-filter-by-category): Display all
4511         filtered out categories.
4513 2013-11-12  Ilya Zonov  <izonov@gmail.com>  (tiny change)
4515         * org-mouse.el (org-mouse-context-menu): Add a correct newtext
4516         parameter for "All Set" and "All Clear" menu items.
4518 2013-11-12  Ingo Lohmar  <i.lohmar@gmail.com>  (tiny change)
4520         * org.el (org-insert-todo-heading-respect-content): Pass correct
4521         prefix arg to always insert heading.
4523         * org-agenda.el
4524         (org-agenda-propertize-selected-todo-keywords): New function to
4525         highlight the current agenda todo keywords depending on
4526         `org-todo-keyword-faces'.
4527         (org-todo-list): Use the new function.
4529 2013-11-12  Ippei FURUHASHI  <top.tuna+orgmode@gmail.com>
4531         * org-table.el (org-calc-current-TBLFM): New function to
4532         re-calculate the table by applying the #+TBLFM in the line where
4533         the point is.  Ensure to remove the currently inserted TBLFM line,
4534         when calling `org-table-recalculate' returns an error and the
4535         processing stops.
4537         * org.el (org-ctrl-c-ctrl-c): Call `org-calc-current-TBLFM' when
4538         point is in the #+TBLFM line.
4540         * org-table.el (org-TBLFM-begin): New function.
4541         (org-TBLFM-begin-regexp): New variable.
4543         * org.el (org-at-TBLFM-p): New function.
4544         (org-TBLFM-regexp): New defconst.
4546 2013-11-12  Ivan Vilata i Balaguer  <ivan@selidor.net>  (tiny change)
4548         * org-clock.el (org-clock-get-table-data): Pass tstart and tend
4549         time strings through `org-matcher-time' to allow relative times
4550         besides absolute ones, convert result to encoded time.
4552 2013-11-12  Jambunathan K  <kjambunathan@gmail.com>
4554         * ox-html.el (org-html-code, org-html-verbatim): Transcode value.
4555         (org-html--tags, org-html-format-headline)
4556         (org-html--format-toc-headline, org-html-checkbox)
4557         (org-html-table-cell, org-html-timestamp)
4558         (org-html-verse-block, org-html-special-string-regexps): Replace
4559         named HTML entities with their numeric counterparts.  This keeps
4560         Freemind backend happy.
4562         * org-odt.el (org-export-odt-schema-dir): Modify to accommodate
4563         change in rnc file names.
4565         * org-lparse.el (org-lparse-and-open)
4566         (org-lparse-do-convert): Open exported files with system-specific
4567         application.
4569         * org-odt.el: Don't meddle with `org-file-apps'.
4571 2013-11-12  Jarmo Hurri  <jarmo.hurri@syk.fi>
4573         * org-table.el (org-define-lookup-function): New macro.  Call it
4574         to generate new lookup functions `org-lookup-first',
4575         `org-lookup-last' and `org-lookup-all'.
4577         * org-gnus.el (org-gnus-no-server): New option to start Gnus using
4578         `gnus-no-server'.
4579         (org-gnus-no-new-news): Use the new option.
4581 2013-11-12  Jonas Hoersch  <coroa@online.de>  (tiny change)
4583         * org.el (org-cycle-hide-inline-tasks): Re-hide inline tasks when
4584         switching to 'children visibility state.
4586         * org-inlinetask.el (org-inlinetask-toggle-visibility): Don't use
4587         `org-show-entry' as it cannot unfold an inlinetask properly.
4589 2013-11-12  Jonathan Leech-Pepin  <jonathan.leechpepin@gmail.com>
4591         * ox-texinfo.el: New file.
4593 2013-11-12  Joost Diepenmaat  <joost@zeekat.nl>  (tiny change)
4595         * org.el (org-indent-region): BEGIN_SRC and END_SRC lines should
4596         not be considered part of the source block for the purposes of
4597         indentation.
4599 2013-11-12  Justus Piater  <justus-dev@piater.name>
4601         * org-agenda.el
4602         (org-agenda-skip-deadline-prewarning-if-scheduled): Add an option
4603         to skip the deadline prewarning if the scheduled date is in the
4604         future.
4606 2013-11-12  Kodi Arfer  <git@arfer.net>  (tiny change)
4608         * ox-html.el (org-html-toc): Use <nav> instead of <div> for the
4609         root element when appropriate.
4610         (org-html-paragraph): Wrap "Figure %d:" in <span
4611         class="figure-number">.
4612         (org-html-list-of-tables, org-html-table): Wrap "Table %d:" in
4613         <span class="table-number">.
4614         (org-html-list-of-listings): Wrap "Listing %d:" in
4615         <span class="listing-number">.
4616         (org-html-table): For HTML5, omit :html-table-attributes but not
4617         :id or :attr_html.
4618         (org-html--build-meta-info): Insert no timestamp when
4619         :time-stamp-file is nil.
4621 2013-11-12  Lawrence Mitchell  <wence@gmx.li>
4623         * ox-html.el (org-html-close-tag): Add space before attr.
4625         * ox.el (org-export-resolve-fuzzy-link): Look for fuzzy link in a
4626         cache before trying to resolve it in the parse tree.
4628 2013-11-12  Le Wang  <le.wang@agworld.com.au>
4630         * org-src.el (org-edit-src-code): Use marker with insertion type t
4631         to track end and remove hack requiring delete from beg to (1-
4632         end).
4634 2013-11-12  Max Mikhanosha  <max@openchat.com>
4636         * org-habit.el (org-habit-get-faces): Add show done days green
4637         option.
4639         * org-agenda.el (org-agenda-format-item): Ensure effort is "" when
4640         unset
4642 2013-11-12  Michael Brand  <michael.ch.brand@gmail.com>
4644         * org-table.el (org-table-eval-formula): Align the arrow pointing
4645         to the error in a Calc formula to the other fomula debugger logs.
4647         * org.el (org-link-escape-chars-browser): Add char double quote.
4648         (org-open-at-point): Use the constant
4649         `org-link-escape-chars-browser'.
4651         * org-table.el (org-table-get-remote-range): Extend regexp to
4652         match "#+NAME: table" additionally to "#+TBLNAME: table".
4654         * org-table.el (org-table-eval-formula): Use `keep-empty' in more
4655         places.  Keep empty fields during preprocessing.
4656         (org-table-make-reference): Use nan (not a number) for empty
4657         fields in Calc formulas.  A range with only empty fields should
4658         not always return 0 but also empty string, consistent with field
4659         reference of an empty field.  Use future design for nan but
4660         replicate current behavior.
4661         (org-table-number-regexp): Extend 0x hex to fixed-point number,
4662         add <radix>#<number>, add Calc infinite numbers uinf, -inf and
4663         inf.
4665 2013-11-12  Muchenxuan Tong  <demon386@gmail.com>  (tiny change)
4667         * org-mobile.el (org-mobile-push): Add `save-restriction'.
4669 2013-11-12  Nicolas Goaziou  <n.goaziou@gmail.com>
4671         * ox-latex.el (org-latex-compile): Remove all numbered temporary
4672         files after compiling.
4674         * org-element.el (org-element-headline-interpreter): Take into
4675         consideration `org-odd-levels-only' when building a headline.
4677         * ox-org.el (org-org-headline): Correctly set transcoded headline
4678         level during subtree export.
4680         * ox-html.el (org-html--format-toc-headline): TOC entries are
4681         closer to regular headline formatting.
4683         * org-element.el (org-element-context): Fix error when parsing
4684         affiliated keywords, e.g. "caption".
4686         * org.el (org-do-emphasis-faces): Look for verbatim status at
4687         correct location.
4688         (org-open-at-point): Check if link is non-nil before matching it.
4689         (org-export-insert-default-template): Make sure strings are
4690         properly quoted when inserting a template.  Specifically, default
4691         value for drawers should be d:(not "LOGBOOK"), not d:(not
4692         LOGBOOK).
4693         (org-insert-heading): Do not error out when inserting is to be
4694         done at one of the buffer's boundaries.
4696         * ox-latex.el (org-latex-listings-options): Use correct number of
4697         backslash characters in the example.
4699         * org-element.el (org-element-latex-or-entity-successor)
4700         (org-element-latex-fragment-parser): Use `org-latex-regexps'
4701         instead of `org-format-latex-options'.
4703         * ox-ascii.el:
4704         * ox-beamer.el:
4705         * ox-html.el:
4706         * ox-icalendar.el:
4707         * ox-md.el: Remove comments at the beginning of the file since
4708         the library is documented in Org manual.
4710         * org-element.el (org-element--list-struct): Use
4711         `org-match-string-no-properties'.  Fix block parsing in lists.
4713         * ox-publish.el (org-publish-all): Fix compilation problem.
4715         * org-element.el (org-element-timestamp-interpreter): Correctly
4716         interpret timestamps with delays.
4717         (org-element-timestamp-parser)
4718         (org-element-timestamp-interpreter): Parse warning delays.
4720         * ox-beamer.el (org-beamer--format-section): Fix regression which
4721         prevents frames from being propely exported.
4723         * ox.el (org-export-with-backend): Ensure function will use
4724         provided back-end.
4726         * org-list.el (org-list-allow-alphabetical): Remove reference to
4727         unused VALUE.
4729         * ox-beamer.el (org-beamer--format-section): Protect fragile
4730         commands in sections.
4732         * org.el (org-ctrl-c-ctrl-c): When using C-c C-c at an item with
4733         point on a link, make sure checkbox, if any, is toggled.
4735         * ox-beamer.el (org-beamer--format-block): Return an error message
4736         when using a special environment as a block type.  Also check for
4737         incomplete environment definitions.
4739         * org-element.el (org-element-at-point): If point is at the end of
4740         the buffer, and that buffer ends with a list, and there's no final
4741         newline, return last element in last item instead of plain list.
4742         Fix infloop when called on a blank line at the end of the buffer
4743         after a headline.
4745         * org.el (org-forward-paragraph, org-backward-paragraph): New
4746         functions.
4748         * org.el (org-meta-return): Allow M-RET to insert items within
4749         drawers.  Rewrite function.
4751         * org-element.el (org-element-footnote-definition-parser): Fix
4752         value for :contents-begin when first line of footnote definition
4753         is empty besides the label.
4754         (org-element-at-point): Return correct element when point is on a
4755         blank line just below a headline.
4756         (org-element-paragraph-parser): Use
4757         `org-match-string-no-properties'.  Small fixes to paragraph
4758         parsing.
4760         * org.el (org-adaptive-fill-function): Do not handle
4761         `adaptive-fill-regexp' in comments as the behavior is not
4762         satisfying.
4764         * org-list.el (org-list-struct-apply-struct): Do not move item's
4765         contents within a child above when repairing indentation.
4767         * ox-html.el (org-html--build-meta-info): Fix output of meta tags
4768         when properties are present.
4770         * ox.el (org-export-collect-headlines): Do not build TOC for
4771         headlines below H value.
4773         * org-element.el (org-element-context): Modify misleading
4774         comment.
4775         (org-element-text-markup-successor)
4776         (org-element-latex-or-entity-successor)
4777         (org-element-export-snippet-successor)
4778         (org-element-footnote-reference-successor)
4779         (org-element-inline-babel-call-successor)
4780         (org-element-inline-src-block-successor)
4781         (org-element-line-break-successor, org-element-link-successor)
4782         (org-element-plain-link-successor, org-element-macro-successor)
4783         (org-element-radio-target-successor)
4784         (org-element-statistics-cookie-successor)
4785         (org-element-sub/superscript-successor)
4786         (org-element-table-cell-successor, org-element-target-successor)
4787         (org-element-timestamp-successor): Remove LIMIT argument.
4788         (org-element--parse-objects, org-element--get-next-object-candidates):
4789         Apply signature change to successors.
4790         (org-element-context): Narrow buffer around object containers so
4791         parsing of objects when using this function is done under the same
4792         restrictions as in buffer parsing.
4794         * ox.el (org-export-table-cell-alignment): Ensure required
4795         variables are available.  Use correct :test.
4796         (org-export-table-cell-width): Modify key (now an element) and
4797         value structure (now a vector) of cache so it can use `eq' as
4798         test.  Elements are circular lists so `equal' cannot apply on them.
4800         * ox-publish.el (project-plist): Remove variable.
4802         * ox.el (org-export-to-buffer, org-export-to-file): Fix
4803         docstrings.
4805         * ox-org.el (org-export-as-org): Add missing BODY-ONLY argument,
4806         which is always nil in this back-end.
4808         * org.el (org-adaptive-fill-function): Look for a fill prefix at
4809         the beginning of the paragraph and subsquently on its second line
4810         instead of the current line.
4812         * ob-core.el (org-babel-get-src-block-info): Look for indentation
4813         value at the correct location.
4815         * ox.el (org-export-data-with-backend): Set temporary back-end as
4816         the new back-end in local communication channel.
4817         (org-export-filter-apply-functions): Handle corner case where
4818         back-end is nil.  Only provide back-end name (a symbol) as second
4819         argument of filters, not the full back-end (a vector).
4821         * ox-publish.el (org-publish-find-title): Fix title when no
4822         #+TITLE property is provided.
4824         * ox.el (org-export-store-default-title): Remove-function.
4825         (org-export--default-title): Remove variable.
4826         (org-export-options-alist): Do not use a default value.
4827         (org-export--get-buffer-attributes): Store a default title.
4828         (org-export-as): Apply function removal.
4829         (org-export--get-global-options): Do not set a property with an
4830         explicitly nil value.
4832         * ox-publish.el (org-publish-sitemap-sort-files)
4833         (org-publish-sitemap-sort-folders)
4834         (org-publish-sitemap-ignore-case, org-publish-sitemap-requested)
4835         (org-publish-sitemap-date-format)
4836         (org-publish-sitemap-file-entry-format): Set prefix to
4837         "org-publish-sitemap" instead of "org-sitemap".
4838         (org-publish-compare-directory-files)
4839         (org-publish-get-base-files-1, org-publish-projects)
4840         (org-publish-format-file-entry): Use new prefix.
4842         * org-clock.el (org-clock-total-time-cell-format)
4843         (org-clock-file-time-cell-format): Use correct type.
4845         * ob-haskell.el:
4846         * ox-ascii.el (org-ascii-export-as-ascii)
4847         (org-ascii-export-to-ascii):
4848         * ox-beamer.el (org-beamer-export-as-latex)
4849         (org-beamer-export-to-latex, org-beamer-export-to-pdf):
4850         * ox-html.el (org-html-export-as-html, org-html-export-to-html):
4851         * ox-icalendar.el (org-icalendar-export-to-ics):
4852         * ox-latex.el (org-latex-export-as-latex)
4853         (org-latex-export-to-pdf):
4854         * ox-man.el (org-man-export-to-man, org-man-export-to-pdf):
4855         * ox-md.el (org-md-export-as-markdown, org-md-export-to-markdown):
4856         * ox-odt.el (org-odt-export-to-odt):
4857         * ox-org.el (org-org-export-as-org, org-org-export-to-org):
4858         * ox-publish.el (org-publish-org-to):
4859         * ox-texinfo.el (org-texinfo-export-to-texinfo)
4860         (org-texinfo-export-to-info):
4861         * ox.el (org-export-to-buffer): Add two arguments: one to trigger
4862         asynchronous export and the other to do extra processing from
4863         within the buffer.
4864         (org-export-to-file): Add two arguments: one to trigger
4865         asynchronous export and the other to do extra processing on the
4866         output file.
4867         (org-export-async-start): Small clean up.
4869         * ox.el (org-export-as): Use new back-end structure.
4870         (org-export-current-backend): New variable.
4871         (org-export-as): Use new variable.
4873         * ox-ascii.el (org-ascii-table): Remove spurious new line between
4874         a table and the caption below.
4876         * ox.el (org-export-to-file): Preserve coding system when writing
4877         output.
4878         (org-export-stack-mode-map): Fix compilation error with Emacs <
4879         24.
4880         (org-export--dispatch-action): Maintain compatibility with Emacs
4881         23.
4883         * org.el (org-adaptive-fill-function, org-fill-paragraph): Add
4884         support for `adaptive-fill-regexp' in paragraphs and comments.
4885         (org-indent-line): Fix indentation after a list.
4887         * ox.el (org-export--get-inbuffer-options): Multiple options can
4888         now be set through the same buffer keyword.
4890         * org-element.el (org-element-plain-list-parser): Fix infloop when
4891         parsing a list at the end of buffer, if buffer doesn't end at a
4892         line beginning.
4893         (org-element-link-parser): Do not url-decode parsed links.
4895         * org-pcomplete.el (pcomplete/org-mode/file-option): Remove
4896         spurious white spaces, excepted for source blocks' opening string.
4897         Small refactoring.
4898         (pcomplete/org-mode/file-option): Remove spurious colons from
4899         block boundaries.
4901         * ox-publish.el (org-publish-find-date): Also return date for
4902         directories.
4903         (org-publish-get-base-files-1): Fix :recursive parameter ignoring
4904         extension restriction.
4906         * ox-beamer.el: Remove strange indentation in default header.
4907         (org-beamer-template): Fix missing newlines in header.
4909         * ox-latex.el (org-latex-template): Fix missing newlines in
4910         header.
4912         * ox.el (org-export-insert-default-template): Fix
4913         "wrong-type-argument" error in template insertion.
4915         * org.el (org-fill-paragraph): Use empty commented lines as
4916         separators when filling comments.  This mimics default behavior
4917         from "newcomment.el", which is not used in Org.
4919         * ox-html.el (org-html-link): Add image attributes to "img" tag,
4920         not to the "a" container.  Also fix spacing for attributes.
4922         * org.el (org-fill-paragraph): Do not mix consecutive comments
4923         when filling any of them.
4925         * ox-html.el (org-html-format-headline--wrap): Fix number of
4926         arguments when setting `org-html-format-headline-function'.
4928         * org-element.el (org-element-item-interpreter): This patch fixes
4929         "(wrong-type-argument arrayp nil)" error when trying to interpret
4930         empty items.  Correctly interpret back plain lists with "*" items.
4931         This fixes "This is not a list" error returned in this case.
4933         * ox-latex.el (org-latex-listings): Update docstring.
4935         * org-pcomplete.el (pcomplete/org-mode/file-option/options): Apply
4936         changes to export back-end definiton.
4938         * org.el (org-get-export-keywords): Apply changes to export
4939         back-end definiton.
4941         * ox-html.el (org-html--format-toc-headline): Make use of
4942         anonymous back-ends.
4944         * ox-odt.el (org-odt-footnote-reference): Make use of anonymous
4945         back-ends.
4946         (org-odt-format-label, org-odt-toc)
4947         (org-odt-format-headline--wrap): Use `org-export-with-backend'
4948         instead of `org-export-with-translations'.
4950         * ox.el (org-export--registered-backends): Renamed from
4951         `org-export-registered-backends'.
4952         (org-export-invisible-backends): Removed variable.
4953         (org-export-get-backend, org-export-get-all-transcoders
4954         org-export-get-all-options, org-export-get-all-filters): New
4955         functions.  It replaces `org-export-backend-translate-table'.
4956         (org-export-barf-if-invalid-backend, org-export-derived-backend-p,
4957         org-export-define-backend, org-export-define-derived-backend):
4958         Rewrite functions using new representation.
4959         (org-export-backend-translate-table): Remove function.
4960         (org-export-get-environment): Use new function.
4961         (org-export--get-subtree-options, org-export--parse-option-keyword,
4962         org-export--get-inbuffer-options, org-export--get-global-options,
4963         org-export-to-buffer org-export-to-file, org-export-string-as
4964         org-export-replace-region-by): Update docstring.
4965         (org-export-data-with-translations): Remove function.  Use
4966         `org-export-data-with-backend' with a temporary back-end instead.
4967         (org-export-data-with-backend, org-export-as): Reflect new definition
4968         for back-ends.
4969         (org-export--dispatch-action, org-export--dispatch-ui): Reflect new
4970         definition for back-ends and variable removal.  Refactoring.
4971         (org-export-filter-apply-functions): Call functions with
4972         current back-end's name, not full back-end.
4974         * org.el (org-export-backends, org-create-formula--latex-header):
4975         Use new structure and variables.
4977         * ox-html.el (org-html-inline-images): Change default value and
4978         remove `maybe'.
4979         (org-html-format-inline-image): Remove functions.
4980         (org-html--wrap-image, org-html--format-image)
4981         (org-html-inline-image-p): New functions.
4982         (org-html-latex-environment, org-html-latex-fragment): Use new
4983         functions.
4984         (org-html-standalone-image-p): Use new functions.  Also remove an
4985         unused optional argument.
4986         (org-html-link, org-html-paragraph): Correctly export hyperlinked
4987         images.
4989         * ox.el (org-export-dictionary): Update some translations.
4991         * ox-odt.el (org-odt-label-styles, org-odt-category-map-alist):
4992         Fix docstring.
4993         (org-odt-format-label): Add docstring.  Internationalize prefix.
4995         * ox.el (org-export-dictionary): Add entry for colons.
4997         * ox-odt.el (org-odt--suppress-some-translators): Remove function.
4999         * ox-html.el (org-html-link): Remove left-over binding.
5001         * ox-beamer.el (org-beamer-environments-extra): Allow to add raw
5002         title in environment definition.
5003         (org-beamer--format-block): Handle new placeholders.
5005         * ox-html.el (org-html-link): Small refactoring.
5007         * org-element.el (org-element--current-element): Fix
5008         org-meta-return error at the end of buffer.
5010         * ox-odt.el (org-odt-category-map-alist): Fix internationalization
5011         of "Table" and "Listing".
5013         * ox.el (org-export-dictionary): Remove useless dictionary
5014         entries.
5016         * ox-ascii.el (org-ascii--build-caption): Apply removal.
5018         * ox.el (org-export-dictionary): Add spanish and german
5019         translations.
5021         * ox-odt.el (org-odt-link): Fuzzy links to an headline with a
5022         description always use that description, even if the description
5023         is the same as the headline title.
5024         (org-odt-plain-text): Allow to turn smart quotes off.
5026         * ox-latex.el (org-latex--get-footnote-counter): Remove function.
5028         * org.el (org-setup-filling): Set `paragraph-start' and
5029         `paragraph-separate'.
5030         (org-fill-paragraph-separate-nobreak-p): Remove function.
5031         (org-mode): Do not set `paragraph-start'.
5033         * ox-html.el (html): Replace "HTML_HTML5_FANCY",
5034         "HTML_INCLUDE_STYLE" and "HTML_INCLUDE_SCRIPTS" with,
5035         respectively, ":html5-fancy", "html-style" and "html-scripts"
5036         options.
5037         (org-html-html5-fancy): Reformat docstring.
5038         (org-html-template): Fix typo preventing insertion of link up/link
5039         home anchors.
5041         * org.el (org-create-formula--latex-header): Replace AUTO with
5042         appropriate language when previewing snippets.
5044         * ox-latex.el (org-latex-item): Allow hyperref and footnotemark in
5045         items description tags.  Also remove a unnecessary hack allowing
5046         footnotemark with an optional argument in the tag.
5048         * ox.el (org-export-resolve-fuzzy-link): Fix link resolution when
5049         link lives before the first headline.
5051         * org-element.el (org-element-special-block-parser): Fix typo in
5052         regexp matching block type.  Also quote the type so it can contain
5053         special characters.
5055         * ox-latex.el (org-latex-pdf-process): This argument can cause
5056         problem with links with a relative path, since compilation happens
5057         in a different directory.
5059         * org.el (org-latex-default-packages-alist): Load "ulem" package
5060         by default.  Use "[normalem]" option to preserve \emph definition.
5062         * ox-latex.el (org-latex-text-markup-alist): Use "\uline" and
5063         "\sout" commands from "ulem" package.
5065         * org.el (org-latex-default-packages-alist): Document need for
5066         "soul" package.
5068         * ox-latex.el (org-latex-text-markup-alist): Use \ul (from "soul"
5069         package) instead of \underline for underline text.
5071         * ox.el (org-export-read-attribute): Fix "Wrong argument type"
5072         error when attributes start with :key "".
5074         * org.el (org-fill-paragraph-separate-nobreak-p)
5075         (org-fill-line-break-nobreak-p)
5076         (org-fill-paragraph-with-timestamp-nobreak-p): Fix docstrings.
5078         * org-element.el (org-element--list-struct): Fix failing
5079         "plain-list-parser" test.
5081         * ox-latex.el (org-latex-src-block): Handle :float attribute.
5082         Its value can be set to "t", "multicolumn" or "nil".  Also remove
5083         :long-listing attribute, which is now replaced with :float nil.
5084         (org-latex--org-table): Replace :float table with :float t.
5085         (org-latex--inline-image): Replace :float figure with :float t.
5086         (org-latex-long-listings): Remove variable.
5088         * org-element.el (org-element--list-struct): New function.
5089         (org-element-plain-list-parser, org-element--current-element): Use
5090         new function.
5092         * ox-man.el (org-man-compile):
5093         * ox-texinfo.el (org-texinfo-compile): Use appropriate argument.
5095         * ox-latex.el (org-latex-compile):
5096         * ox-man.el (org-man-compile):
5097         * ox-texinfo.el (org-texinfo-compile): Properly set working
5098         directory.
5100         * ox-latex.el (org-latex-compile):
5101         * ox-texinfo.el (org-texinfo-compile): Make sure generated file
5102         can be found by `file-exists-p'.
5104         * ox-md.el (md): Delegate underscore transcoding to HTML back-end.
5106         * org-element.el (org-element--remove-indentation): Small
5107         optimization.
5108         (org-element--remove-indentation): New function.
5109         (org-element-example-block-parser, org-element-src-block-parser):
5110         Use new function.
5111         (org-element-src-block-interpreter): Update function according to
5112         change.
5114         * ox.el (org-export-unravel-code): Do not remove any indentation
5115         since it now happens at the parser level.
5116         (org-export-table-cell-width): Be sure to use cache even when
5117         stored value is nil.
5118         (org-export--default-title): Fix "Symbol's value as variable is
5119         void: org-export--default-title".
5121         * ox-ascii.el (org-ascii--table-cell-width): Cache results of this
5122         internal function since it is called at each cell, though its
5123         value only change column wise.
5125         * ox.el (org-export-resolve-fuzzy-link): Change property name
5126         holding cache.
5127         (org-export-table-has-header-p, org-export-table-row-group)
5128         (org-export-table-cell-width, org-export-table-cell-alignment):
5129         Cache results.
5130         (org-export-table-cell-address): Refactor.
5131         (org-export-get-parent): Inline function.
5132         (org-export-options-alist): Change default value for :title
5133         property.
5134         (org-export--default-title): New dynamically scoped variable.
5135         (org-export-store-default-title): New function.
5136         (org-export--get-buffer-attributes): Remove title handling.
5137         (org-export--get-global-options): Revert "ox: Fix default title".
5138         Refactor code.
5140         * ox-html.el (org-html-format-latex): Provide a prefix for
5141         temporary file when using dvipng, even if the current buffer isn't
5142         associated to a file.
5144         * ox.el (org-export-resolve-radio-link): Ignore whitespace
5145         differences when resolving a radio link.
5146         (org-export-resolve-radio-link): Fix radio target resolution.
5148         * org-element.el (org-element--current-element): Be stricter when
5149         matching arguments in LaTeX environments.  In particular, do not
5150         allow anything else than options and arguments in the opening
5151         line.
5153         * ox-html.el (org-html-inner-template): Remove code relative to
5154         bibliography.
5155         (org-html-bibliography): Remove function.
5157         * ox-latex.el (org-latex-plain-text): Protect ^ char with \^{},
5158         not only \^, so it doesn't become a diacritic.
5160         * ox-html.el (org-html--build-meta-info): Fix code typo.
5162         * ox.el (org-export-expand-include-keyword): Avoid using `read' to
5163         determine file name.
5164         (org-export--get-global-options): Properly set default title,
5165         i.e. when to TITLE keyword is provided.
5167         * org-element.el (org-element--parse-elements): Also parse visible
5168         headlines within an otherwise compacted headline.
5170         * ox.el (org-export-expand-include-keyword): Tolerate included
5171         file names without double quotes.
5172         (org-export-resolve-fuzzy-link): Fix caching process.
5174         * ox-publish.el (org-publish-find-date): Fix "Invalid time
5175         specification" error with timestamps in DATE.
5177         * org-element.el (org-element--current-element): Allow the opening
5178         string of a LaTeX environment to contain additional arguments.
5180         * org.el (org-insert-heading): Refactor to use `org-in-item-p'
5181         only once.
5183         * ox.el (org-export-expand): Optionally add affiliated keywords to
5184         results.
5186         * ox-org.el (org-org-identity): Use new argument for
5187         `org-export-expand'.
5189         * org.el (org-fill-paragraph): Move to table beginning before
5190         aligning the table when M-q is called from an affiliated keyword.
5192         * org-list.el (org-list-allow-alphabetical): Properly update
5193         `org-list-allow-alphabetical' when changed after org.el has been
5194         loaded.
5196         * org-element.el (org-element-fixed-width-interpreter): Fix
5197         interpretation of fixed-width elements with a nil or empty string
5198         value.
5200         * ox-html.el (org-html-link): Don't skip the link description when
5201         it matches the name of the headline it targets.
5203         * ox-html.el (org-html-link): Don't skip the link description when
5204         it matches the name of the headline it targets.
5206         * ox-ascii.el (ascii): Remove inexistant function.
5208         * ox-icalendar.el (icalendar): Ignore footnotes.
5209         (org-icalendar--combine-files): Small refactoring.
5211         * ox.el (org-export--skip-p, org-export--interpret-p): When
5212         `org-export-with-footnotes' is nil, ignore completely footnotes
5213         references and definitions instead of exporting them verbatim.
5215         * ox-beamer.el (org-beamer--frame-level): Small refactoring.
5216         (org-beamer--format-block, org-beamer-headline): Do not systematically
5217         downcase environment names as some require upper case in their
5218         names (e.g. noteNH and CJK).
5220         * ox.el (org-export-with-timestamps): Only applies to isolated
5221         timestamps, i.e. timestamps in a paragraph containing only
5222         timestamps and empty strings.
5223         (org-export--skip-p): Skip timestamps according to new behavior.
5225         * ox-latex.el (org-latex--script-size): Handle consecutive
5226         alterning sub and superscript.
5228         * ox-org.el (org-org-identity): Fix docstring.  Tiny refactoring.
5229         (org-org-headline, org-org-keyword): Fix docstring.
5231         * ox-latex.el (org-latex--script-size): Use \text command for
5232         subscript and superscript.  This is far superior to \mathrm, but
5233         it requires "amstext" package.  In particular, accented characters
5234         are now allowed within sub/superscript.
5236         * org.el (org-latex-default-packages-alist): Add "amstext"
5237         package.
5239         * ox-latex.el (org-latex--script-size): Fix error when using
5240         sub/superscript within sub/superscript.
5242         * ox-latex.el (org-latex--script-size): New function.
5243         (org-latex-subscript, org-latex-superscript): Use new function.
5244         Remove instructions since everything is documented in Org manual.
5246         * ox.el (org-export-with-smart-quotes): Use LATEX instead of LaTeX
5247         for keywords, the latter being hard to type, somewhat difficult to
5248         read, and overall just pedantic.
5250         * ox-latex.el (org-latex-classes): Be more explicit about
5251         LATEX_HEADER_EXTRA.
5253         * ox-html.el (org-html--build-meta-info): Fix invalid characters
5254         in html attributes.
5256         * ox.el (org-export-filters-alist): Remove macro filter.
5257         (org-export-filter-macro-functions): Remove variable.
5259         * ox-beamer.el (beamer): Install a default class set-up when
5260         loading library.
5262         * ox-latex.el (org-latex-classes): Update docstring.
5264         * ox-latex.el (org-latex--inline-image): Remove specific default
5265         image width for floats.  If no width nor height is provided, it
5266         should default to `org-latex-image-default-width' value.
5268         * org.el (org-extract-attributes-from-string)
5269         (org-attributes-to-string): Remove functions.
5271         * ox-html.el (html): Rename :html-table-tag property into
5272         :org-table-attributes.
5273         (org-html-table-default-attributes): New variable.
5274         (org-html-table-tag): Removed variable.
5275         (org-html--make-attribute-string): New function.
5276         (org-html-link--inline-image, org-html-table): Use new function.
5277         (org-html-splice-attributes, org-export-splice-style): Remove
5278         functions.
5279         (org-html-inline-image-rules): Remove out of context part of the
5280         docstring.
5282         * ox.el (org-export-read-attribute): Allow to use empty strings in
5283         attributes.
5285         * ox-html.el (org-html-metadata-timestamp-format): New variable,
5286         renamed from `org-html--timestamp-format'.
5287         (org-html--build-meta-info, org-html-format-spec,
5288         org-html--build-pre/postamble): Use new variable.
5290         * ox.el (org-export-table-row-number): New function.
5291         (org-export-table-cell-address): Use new function.
5293         * org-element.el (org-element-table-cell-successor): Parse table
5294         cells with missing ending space.
5296         * ox-latex.el (org-latex--math-table): Fix inline-math table
5297         environment.
5299         * ox-html.el (org-html-doctype): Make value fit on a single line
5300         so `org-export-insert-default-template' can handle it.
5301         (org-html-creator-string): Change default value.
5303         * ox.el (org-export-creator-string): Change default value.
5305         * ox-html.el (org-html-postamble-format)
5306         (org-html-preamble-format): Allow last modification time of source
5307         in template.  Fix docstrings.
5308         (org-html-format-spec): Produce last modification time when the source
5309         is a file.
5311         * ox.el (org-export-with-archived-trees, org-export-with-author)
5312         (org-export-with-clocks, org-export-with-date)
5313         (org-export-creator-string, org-export-with-drawers)
5314         (org-export-with-email, org-export-with-emphasize)
5315         (org-export-exclude-tags, org-export-with-fixed-width)
5316         (org-export-with-footnotes, org-export-with-latex)
5317         (org-export-headline-levels, org-export-default-language)
5318         (org-export-preserve-breaks, org-export-with-entities)
5319         (org-export-with-inlinetasks, org-export-with-planning)
5320         (org-export-with-priority, org-export-with-section-numbers)
5321         (org-export-select-tags, org-export-with-smart-quotes)
5322         (org-export-with-special-strings)
5323         (org-export-with-statistics-cookies)
5324         (org-export-with-sub-superscripts, org-export-with-toc)
5325         (org-export-with-tables, org-export-with-tags)
5326         (org-export-with-tasks, org-export-time-stamp-file)
5327         (org-export-with-timestamps, org-export-with-todo-keywords): Fix
5328         docstrings.
5330         * ox-html.el (org-html-postamble-format): Slightly change default
5331         value so "Generated by" string doesn't get duplicated.
5332         (org-html-creator-string): Fix docstring.
5334         * ox.el (org-export--get-inbuffer-options)
5335         (org-export--list-bound-variables)
5336         (org-export--generate-copy-script, org-export-string-as)
5337         (org-export-expand-include-keyword)
5338         (org-export--prepare-file-contents): Inhibit startup process when
5339         calling `org-mode'.
5341         * ox-publish.el (org-publish-find-date): Fix "bad timestamp" error
5342         with some DATE values: :date property in communication channel is
5343         no longer a string.
5345         * ox.el (org-export-insert-default-template): New function.
5346         (org-export--dispatch-ui, org-export--dispatch-action): Access to
5347         the function through the dispatcher.
5349         * ox-icalendar.el (org-icalendar-convert-timestamp): Update
5350         docstring.
5351         (org-icalendar-dtstamp): New function.
5352         (org-icalendar--vevent, org-icalendar--vtodo): Use new function.
5354         * ox-ascii.el (org-ascii-link):
5355         * ox-html.el (org-html-keyword):
5356         * ox-latex.el (org-latex-keyword, org-latex-link):
5357         * ox-man.el (org-man-keyword):
5358         * ox-md.el (org-md-link):
5359         * ox-odt.el (org-odt-keyword):
5360         * org.el (org-store-link, org-link-search, org-options-keywords):
5361         Remove reference to TARGET keyword.
5363         * ox.el (org-export-resolve-fuzzy-link, org-export-get-ordinal):
5364         Do not use TARGET as a destination for links anymore.
5366         * ox-org.el (org): Add a menu entry for the back-end.
5367         (org-org-export-as-org, org-org-export-to-org): New functions.
5369         * org.el (org-export-backends): Accept `org' as a loadable
5370         back-end.
5372         * ox-ascii.el (org-ascii-template--document-title): Use new function.
5374         * ox-beamer.el (org-beamer-template): Use new function.
5376         * ox-html.el (org-html-format-spec): Use new function.
5378         * ox-latex.el (org-latex-template): Use new function.
5379         (org-latex-date-timestamp-format): Remove variable.
5381         * ox.el (org-export-date-timestamp-format): New variable.
5382         (org-export-get-date): New function.
5384         * ox-odt.el (org-odt--format-paragraph): New function.
5385         (org-odt-paragraph): Use new function to limit code duplication.
5386         (org-odt-footnote-reference): Change default style for paragraphs
5387         when transcoding a footnote definition.
5389         * org-macro.el (org-macro--collect-macros): Fix a bug where
5390         reading a macro in a setup file would remove other macros read so
5391         far from template.  Change function signature.
5392         (org-macro-initialize-templates): Apply signature change from function
5393         above.
5395         * ox.el (org-export--list-bound-variables): Renamed from
5396         `org-export--install-letbind-maybe'.  Though, only return list of
5397         bound variables instead of installing them as buffer-local
5398         variables.
5399         (org-export-get-environment): Use new function.  Take care of the
5400         installation of bound variables.
5401         (org-export--generate-copy-script): Make sure non-Org variables are
5402         also installed in buffer copy.
5404         * ox.el (org-export-get-environment): Update comment.
5405         (org-export--install-letbind-maybe): Go into SETUPFILE files and
5406         handle BIND keywords there.
5408         * ox-latex.el (org-latex-link): Do not prefix relative paths with
5409         "file://".
5411         * org.el (org-link-search): Preserve priority of #+TARGET over
5412         #+NAME when resolving a link.
5414         * ox-latex.el (org-latex-long-listings): New variable.
5415         (org-latex-src-block): Use new variable.
5417         * ox.el (org-export-data): White spaces after export snippets are
5418         never ignored.
5420         * org-element.el (org-element-macro-parser): Allow to escape
5421         escaping character before a comma.  Also do not trim spaces at
5422         argument boundaries.
5424         * ox.el (org-export-async-start): Use correct coding system so
5425         unibyte characters do not appear in the resulting buffer or file.
5426         (org-export--copy-to-kill-ring-p): Move function elsewhere in the
5427         file.
5429         * ox-latex.el (org-latex--inline-image): Fix error when no default
5430         width, height and option are provided and no attribute is set for
5431         the inline image.
5433         * org.el (org-comment-or-uncomment-region): Fix commenting lines
5434         beginning with a link.
5435         (org-delete-char): Fix "Invalid use of `\\' in replacement text"
5436         when deleting a character in a cell which contains "\"
5437         (org-export-backends): Remove duplicates.  Reorder alphabetically.
5439         * ox-texinfo.el (org-texinfo-plain-list): Use `member' instead of
5440         `memq' when matching strings.
5442         * ox.el (org-export-read-attribute): Do not use `read' to read
5443         attributes.  Instead, extract keywords and values from it, which
5444         means each value will be a string when non-nil.
5446         * ox-beamer.el (org-beamer-plain-list): Use new attribute syntax.
5448         * ox-html.el (org-html--textarea-block): Use new attribute syntax.
5450         * ox-latex.el (org-latex--inline-image, org-latex--org-table)
5451         (org-latex--math-table): Use new attribute syntax.
5453         * ox-man.el (org-man-table--org-table): Use new attribute syntax.
5454         Small refactoring.
5456         * ox-odt.el (org-odt-link--inline-image, org-odt-table-cell): Use
5457         new attribute syntax.
5459         * ox.el (org-export-async-start): Remove code evaluation queries
5460         from asynchronous export.
5462         * ox-latex.el (latex): Activate smart quotes by default.
5463         (org-latex--inline-image): Don't insert a default width when
5464         height is provided in a figure environment.
5465         (org-latex--inline-image): Do not use default width
5466         (resp. height) when an user height (resp. width) is provided.
5467         Also, default height is only used when image is not wrapped within
5468         a figure or wrapfigure environment, in order to preserve ratio.
5469         (org-latex-image-default-width, org-latex-image-default-height):
5470         Update docstring.
5472         * ox-icalendar.el (org-icalendar-create-uid): Fix error when
5473         `org-icalendar-store-UID' is non-nil.
5475         * ox-latex.el (latex): Introduce new buffer keyword.
5476         (org-latex-template): Use new keyword.
5478         * ox-beamer.el (org-beamer-template): Use new keyword.
5480         * org.el (org-create-formula--latex-header): Use new keyword.
5482         * ox-beamer.el (org-beamer-column-view-format, org-beamer-theme)
5483         (org-beamer-environments-extra): Add :version and
5484         :package-version.
5486         * ox-html.el (org-html-with-latex, org-html-inline-image-rules):
5487         Add :version and :package-version.
5489         * ox-latex.el (org-latex-inline-image-rules)
5490         (org-latex-default-table-environment)
5491         (org-latex-default-table-mode, org-latex-tables-booktabs)
5492         (org-latex-table-scientific-notation, org-latex-known-errors): Add
5493         :version and :package-version.
5495         * ox-md.el (org-md-headline-style): Add :version and
5496         :package-version.
5498         * ox-odt.el (org-odt-with-latex): Add :version
5499         and :package-version.
5501         * ox.el (org-export-with-drawers, org-export-with-latex)
5502         (org-export-with-inlinetasks, org-export-with-planning)
5503         (org-export-with-smart-quotes, org-export-with-statistics-cookies)
5504         (org-export-allow-bind-keywords, org-export-async-init-file): Add
5505         :version and :package-version.
5507         * ox-icalendar.el (org-icalendar-export-to-ics): Change back-end
5508         name from `e-ascii' to `ascii'.
5510         * ox.el (org-export--generate-copy-script): Call `org-mode' when
5511         duplicating a buffer.  It will properly set every variable, like
5512         `comment-start'.
5513         (org-export-async-start): Do not call `org-mode' since this is done
5514         already in the previous function.
5516         * ox-beamer.el (org-beamer-keyword): Remove frame arount toc when
5517         generated from a TOC keyword.
5519         * org.el (org-export-backends): Do not reset list of loaded
5520         back-ends to variable's value after a reload.
5522         * ox-latex.el (org-latex-src-block): Do not overwrite provided
5523         numbering options in minted and listings.
5524         (org-latex-headline): Don't add optional title on unnumbered
5525         headlines.
5527         * ox-html.el (html): Fix "HTML_HEAD" and "HTML_HEAD_EXTRA"
5528         keywords.  Allow multiple #+LATEX_HEAD and #+LATEX_HEAD_EXTRA
5529         again.
5531         * org.el (org-fill-paragraph): Small refactoring to
5532         `org-fill-paragraph'.  Do not look for table cells in a paragraph.
5534         * org-element.el (org-element-object-restrictions): Simplify
5535         restrictions within secondary strings and objects.
5537         * org-list.el (org-list-send-list): Do not rely on
5538         `org-list-parse-list'.
5539         (org-list-to-latex, org-list-to-html, org-list-to-texinfo): Use
5540         appropriate export back-end instead of using
5541         `org-list-to-generic'.
5543         * ox-html.el (org-html-inner-template): Remove contents div and
5544         title.
5545         (org-html-template): Add contents div and title.
5546         (org-html-infojs-install-script): Can't activate jsinfo script
5547         during a body-only export.
5549         * ox.el (org-export-as): Store export options in :export-options
5550         porperty within communication channel.
5552         * ox-latex.el (org-latex-item): Fix wrong behavior when a counter
5553         is set in an ordered list while its parent is not ordered.
5555         * ox.el (org-export-format-code-default): Handle empty source
5556         blocks more gracefully.
5558         * ox-ascii.el (org-ascii-src-block): Handle empty blocks more
5559         gracefully.
5561         * org.el (org-export-backends): Update variable.  `infojs' was
5562         merged into ox-html and `freemind' was added.
5564         * ox.el (org-export--selected-trees): Also mark inlinetasks with a
5565         select tag.
5566         (org-export--skip-p): Skip inlinetasks with a :noexport: tag.
5568         * ob-tangle.el (org-babel-spec-to-string): Use dedicated function
5569         for unescaping code.
5571         * ox-html.el (org-html-link): Silence byte-compiler.
5572         (html): Add infojs installation script in options filter.
5573         (org-html-infojs-install-script): Remove check for back-end as we
5574         can safely assume the function will be called from `html' back-end
5575         or one of its derivative.
5577         * ox-icalendar.el (org-agenda-collect-markers)
5578         (org-create-marker-find-array): Remove functions.
5579         (org-icalendar-export-current-agenda): Integrate previous
5580         functions.
5582         * ox-latex.el (org-latex-format-headline-default-function): Use
5583         declarative shape to nest makup for TODO keywords.  Previous
5584         syntax generated errors during export.
5586         * ox.el (org-export-async-start): Ignore `org-mode-hook' and
5587         `kill-emacs-hook'.  The first one has been run in the original
5588         buffer.  The second is not necessary and can pollute output to a
5589         temporary buffer (e.g. with `org-clock-persistence-insinuate').
5591         * ox-html.el (org-html-inner-template): Remove title.
5592         (org-html-template): Add title.
5594         * ox.el (org-export--get-min-level): Ignore footnote section when
5595         computing minimal headline level.
5597         * org.el (org-do-latex-and-related): Fix infloop when user
5598         provides a wrong value for `org-highlight-latex-and-related'.  In
5599         this case, `org-latex-and-related-regexp' is the empty string and
5600         generates an infloop since matching it doesn't move point.
5602         * org-element.el (org-element-headline-parser): Rename
5603         :optional-title into :alt-title.
5605         * ox.el (org-export-get-alt-title): Renamed from
5606         `org-export-get-optional-title'.
5608         * ox-ascii.el (org-ascii--build-title):
5609         * ox-html.el (org-html--format-toc-headline):
5610         * ox-latex.el (org-latex-headline):
5611         * ox-texinfo.el (org-texinfo--get-node)
5612         (org-texinfo--generate-menu-items): Apply name change.
5614         * ox.el (org-export--get-inbuffer-options): Remove an optional
5615         argument.  Rewrite function.  Properties read from a setupfile do
5616         not overwrite anymore previously computed properties.
5617         (org-export-get-environment): Apply changes to previous function.
5619         * org.el (org-create-formula--latex-header): Apply arity change
5620         from `org-export--get-inbuffer-options'.
5622         * ox-latex.el (org-latex-compile): Add an optional argument for
5623         latex snippet previewing.
5625         * org.el (org-create-formula-image-with-imagemagick): Use
5626         `org-latex-compile' instead of rewriting it.
5628         * ox-html.el (org-html-fontify-code): Do not use [^\000] in
5629         regexps that may match large strings.
5631         * org.el (org-create-formula--latex-header): New function.
5632         (org-create-formula-image-with-dvipng)
5633         (org-create-formula-image-with-imagemagick): Use new function.
5635         * ox.el (org-export-get-previous-element): Change order of retured
5636         elements in `org-export-get-previous-element'.
5638         * org-element.el (org-element-all-successors): Add `plain-link'
5639         successor.
5640         (org-element-object-restrictions): Remove `link' within `link'.
5641         Allow `plain-link' instead.
5642         (org-element-plain-link-successor): New function.
5644         * org.el (org-match-substring-regexp)
5645         (org-match-substring-with-braces-regexp): Update regexp.  A
5646         sub/superscript cannot start anymore at the beginning of the line
5647         or after a space.
5649         * org-element.el (org-element--get-next-object-candidates):
5650         Rewrite function to simplify algorithm.
5651         (org-element-context, org-element--parse-elements): Apply changes.
5653         * org.el (org-fill-paragraph): Apply changes.
5655         * ox-html.el (org-html-link, org-html-link--inline-image):
5656         Attributes specified to a paragraph only apply to first link
5657         within.
5659         * ox-latex.el (org-latex-headline): Do not add optional section
5660         name when section is unnumbered.
5662         * org.el (org-in-verbatim-emphasis): Fix false positive when point
5663         is just after the closing emphasis marker.
5664         (org-fill-paragraph): Do not move point when filling a table.
5666         * ox-ascii.el (ascii): Add new filter.
5667         (org-ascii-filter-comment-spacing): New function.
5668         (org-latex-keyword): Remove "figures" value.
5670         * ox-ascii.el (org-ascii--list-tables): Fix docstring.
5672         * ox-html.el (org-html--format-toc-headline): Fix function name.
5673         (org-html-toc, org-html--toc-text): Change to docstring.
5674         (org-html-list-of-listings, org-html-list-of-tables): New
5675         functions.
5676         (org-html-keyword): Use new functions.
5677         (org-html-src-block): Add an ID attribute when a name is given.
5679         * org-element.el (org-element-footnote-definition-parser): Require
5680         2 blank lines to separate footnote definition.
5682         * org-footnote.el (org-footnote-at-definition-p): Require 2 blank
5683         lines to separate footnote definition.
5685         * ox.el (org-export-stack): Rewrite.
5686         (org-export-stack-refresh): Refactor.
5687         (org-export-stack-remove, org-export-stack-view): Apply renaming.
5688         (org-export-stack-mode-map): Use tabulated list map as a basis.
5689         (org-export-stack--generate, org-export-stack--num-predicate): New
5690         function.
5691         (org-export-get-optional-title): Return regular title when no
5692         optional title is found.
5694         * ox-ascii.el (org-ascii--build-title): Apply change to
5695         `org-export-get-optional-title'.
5697         * ox-html.el (org-html--format-toc-headline): Apply change to
5698         `org-export-get-optional-title'.
5700         * ox-latex.el (org-latex-headline): Apply change to
5701         `org-export-get-optional-title'.
5703         * ox-ascii.el (org-ascii--build-title): Add an argument.  Use
5704         optional title when building a toc line.
5705         (org-ascii--build-toc): Call `org-ascii--build-title' with
5706         appropriate arguments.
5708         * ox-latex.el (org-latex-headline): Use optional title for table
5709         of contents.
5711         * ox-html.el (org-html--toc-text): Renamed from
5712         `org-html-toc-text'.  Add docstring.
5713         (org-html--format-toc-headline): Renamed from
5714         `org-html-format-toc-headline'.  Add docstring.  Use optional
5715         title if possible.
5716         (org-html-toc): Add docstring.
5718         * org-element.el (org-element-headline-parser): Node property
5719         :OPTIONAL_TITLE: in a headline will be parsed and stored under
5720         :optional-title property.
5722         * ox.el (org-export-get-optional-title): New function.
5724         * ox-latex.el (org-latex-format-headline-default-function): Make
5725         the variable a function.
5727         * ox-publish.el (org-publish-resolve-external-fuzzy-link): No
5728         error when resolving external fuzzy links outside publishing.
5729         Though search option for these links will not be resolved.
5731         * ox-latex.el (org-latex-guess-inputenc): Set inputenc option
5732         according to `org-export-coding-system'.
5734         * ox.el (org-export--generate-copy-script): Clone
5735         `buffer-file-coding-system' when creating a buffer copy.
5737         * ox-html.el (org-html-link): Resolve external links with search
5738         options like [[file.org::#custom-id]] or
5739         [[file.org::*headline-search]].
5741         * ox-publish.el (org-publish-collect-numbering)
5742         (org-publish-resolve-external-fuzzy-link): New functions.
5743         (org-publish-org-to): Add new collecting function to final output
5744         filter.  Move index collecting function to the same filter.
5745         (org-publish-collect-index): Called from final output filter.
5747         * ox-html.el (org-html-format-headline--wrap, org-html-headline):
5748         Use :CUSTOM_ID, not :custom-id.
5750         * org-element.el (org-element-latex-environment-parser): Fix wrong
5751         value for :post-affiliated property when parsing a latex
5752         environment.
5754         * ox-latex.el (org-latex-property-drawer): Remove function.
5756         * ox-ascii.el (org-ascii-filter-paragraph-spacing): Remove
5757         reference to now renamed `e-ascii' back-end.
5759         * ox-beamer.el (org-beamer-template): Allow to span documentclass
5760         options accross multiple lines in template.
5762         * ox-latex.el (org-latex-template): Allow to span documentclass
5763         options accross multiple lines in template.
5765         * ox-texinfo.el (org-texinfo--get-node): Upcase property name.
5766         (org-texinfo--get-node): New function.
5767         (org-texinfo-headline, org-texinfo-link): Use new function.
5769         * ox-ascii.el (org-ascii-quote-block): Do not fill quote block
5770         contents.  Just indent them.
5772         * ox-publish.el (org-publish-index-generate-theindex): Do not
5773         create an "* Index" headline in "theindex.inc".  Though, create an
5774         "Index" title in fallback "theindex.org".
5776         * ox-publish.el (org-publish-projects): Publish "theindex.org"
5777         last, so that "theindex.inc" can be completed.
5779         * ox-publish.el (org-publish-project-alist): Fix docstring.
5780         (org-publish-collect-index): Fix typo.
5782         * ox.el (org-export--dispatch-ui): Prevent invisible cursor from
5783         highlighting brackets in UI
5785         * org-element.el (org-element-headline-parser)
5786         (org-element-inlinetask-parser): Fix docstring.
5788         * org.el (org-export-backends): Add new back-end in customize
5789         interface.
5791         * ox-beamer.el (org-beamer--get-label, org-beamer--frame-level)
5792         (org-beamer--format-section, org-beamer--format-frame)
5793         (org-beamer--format-block, org-beamer-headline): Apply changes to
5794         properties.
5796         * ox-html.el (org-html-headline, org-html-link, org-html-section):
5797         Apply changes to properties.
5799         * ox-icalendar.el (org-icalendar-create-uid)
5800         (org-icalendar-blocked-headline-p, org-icalendar-entry)
5801         (org-icalendar--valarm): Apply changes to properties.
5803         * ox-odt.el (org-odt-headline): Apply changes
5805         * ox-publish.el (org-publish-collect-index): Apply changes to
5806         properties.
5808         * ox-texinfo.el (org-texinfo--generate-menu-list)
5809         (org-texinfo--generate-menu-items, org-texinfo-template)
5810         (org-texinfo-headline, org-texinfo-link): Apply changes to
5811         properties.
5813         * ox.el (org-export-resolve-id-link, org-export-get-category):
5814         Apply changes to properties.
5815         (org-export-get-node-property): Update docstring.
5817         * org-element.el (org-element-headline-parser)
5818         (org-element-inlinetask-parser): Upcase properties.  This is done
5819         to avoid confusion between properties from parser (e.g. `:end')
5820         and properties from the property drawer (e.g. :END:).
5822         * ox-publish.el (org-publish-index-generate-theindex): Preserve
5823         order in file.  Fix error when two index entries were identical.
5824         Create again theindex.inc.
5826         * org-element.el (org-element-map): Allow to map over any list.
5827         Do not restrict mapping to object types.
5829         * org-faces.el (org-latex-and-related): Renamed from
5830         `org-latex-and-export-specials', which wasn't appropriate anymore.
5832         * org.el (org-highlight-latex-and-related)
5833         (org-latex-and-related-regexp): New variables.
5834         (org-compute-latex-and-related-regexp, org-do-latex-and-related): New
5835         function, revived from a previous commit.
5836         (org-set-regexps-and-options, org-set-font-lock-defaults): Use new
5837         functions.
5838         (org-set-regexps-and-options): Remove reference to LATEX_CLASS and
5839         beamer back-end.
5841         * ox-publish.el (org-publish-org-to): Small refactoring.
5843         * ox.el (org-export-install-filters): Properly install filters
5844         send through ext-plist mechanism.
5846         * ox-publish.el (org-publish-org-to): Small refactoring.
5848         * ox-html.el (org-html-keyword): Remove INDEX keyword handling.
5849         ox-publish.el takes care of it already.
5851         * org-macro.el: New file.
5853         * org.el: Remove macro code.
5855         * ox.el: Require new library
5857         * ox.el (org-export-resolve-fuzzy-link): Ignore statistics cookies
5858         when matching an headline.
5859         (org-export--dispatch-ui): Display a help message in header line
5860         for scrolling dispatcher's buffer
5861         (org-export-resolve-radio-link): Radio targets are
5862         case-insensitive.
5864         * ox-icalendar.el (org-export-icalendar): Fix docstring.
5866         * ox.el (org-export-dispatch): Fix docstring.
5867         (org-export--dispatch-action): Small improvement to line by line
5868         scrolling.
5869         (org-export-resolve-fuzzy-link): Refactor.  Whitespaces are not
5870         significant when matching a fuzzy link.
5872         * org-element.el (org-element-link-parser): Do not remove newlines
5873         characters in paths anymore, since this is not required.
5875         * ox.el (org-export--dispatch-ui): Renamed from
5876         `org-export-dispatch-ui'.  Handle scrolling.
5877         (org-export--dispatch-action): Renamed from
5878         `org-export-dispatch-action'.  Implement scrolling.
5879         (org-export-dispatch): Apply renaming.
5881         * org.el (org-ctrl-c-ctrl-c): Do nothing when at a blank line,
5882         but still run `org-ctrl-c-ctrl-c-final-hook'.
5883         (org-end-of-line): Remove `ignore-error'.
5885         * org-element.el (org-element-at-point): Return nil when in the
5886         first empty lines of the buffer.  Return headline when in empty
5887         lines just after the headline.
5889         * ox.el (org-export-output-file-name): Add a protection when
5890         output file name is the same as the original org.
5892         * ox-beamer.el (org-beamer-template): Add missing `class' argument
5893         for `format-string'.
5895         * ox-latex.el (org-latex-template): Add missing `class' argument
5896         for `format-string'.
5898         * ox.el (org-export-stack-mode): Fix docstring.
5900         * org-pcomplete.el (pcomplete/org-mode/file-option): Allow
5901         completion for ATTR_ prefixed keywords.
5903         * org.el (org-options-keywords): Add missing colons.
5905         * org-macs.el (org-default-options): Removed function.
5907         * org-pcomplete.el (org-command-at-point): Fix bug with some file
5908         options.
5909         (pcomplete/org-mode/file-option/x): Removed macro.
5910         (pcomplete/org-mode/file-option): Refactor code.
5911         (pcomplete/org-mode/file-option/author)
5912         (pcomplete/org-mode/file-option/date)
5913         (pcomplete/org-mode/file-option/title)
5914         (pcomplete/org-mode/file-option/tags)
5915         (pcomplete/org-mode/file-option/select_tags)
5916         (pcomplete/org-mode/file-option/priorities)
5917         (pcomplete/org-mode/file-option/language)
5918         (pcomplete/org-mode/file-option/filetags)
5919         (pcomplete/org-mode/file-option/exclude_tags)
5920         (pcomplete/org-mode/file-option/email): New functions.
5922         * ox.el (org-export--collect-headline-numbering): Remove footnote
5923         section from TOC.
5924         (org-export-collect-headlines): Do not count footnote section when
5925         numbering a headline.
5927         * ox-beamer.el (org-beamer-plain-list): Also read #+attr_latex
5928         attributes in order to determine list's options.
5930         * ox-ascii.el (org-ascii-inner-template): New function.
5931         (org-ascii-template): Use new function.
5932         (org-ascii-export-as-ascii, org-ascii-export-to-ascii): Update
5933         docstring.
5935         * org-element.el (org-element-link-parser): Take into
5936         consideration links filled and indented.
5938         * org-element.el (org-element-link-parser): Remove all newline
5939         characters in path property.
5941         * ox.el (org-export-as): Call `inner-template' function, if
5942         available.
5944         * ox-html.el (org-html-inner-template): New function.
5945         (org-html-template): Move all parts that should be inserted even
5946         in a body-only export into `org-html-inner-template'.
5948         * org.el (org-forward-element, org-backward-element): When no
5949         headline is found at the same level, still move forward or
5950         backward.
5952         * org-element.el (org-element--current-element): Add a limit
5953         argument.
5954         (org-element--collect-affiliated-keywords): Fix parsing of orphaned
5955         keyword at the end of an element.
5957         * ox-texinfo.el (org-texinfo-src-block): Remove spurious newline
5958         character as `org-export-format-code-default' already makes sure
5959         the string returned will end with a single one.
5961         * ox-latex.el (org-latex-headline): When a function returns a
5962         sectioning command, only one placeholder should be required.
5964         * org-element.el (org-element-nested-p): Do not inline function.
5966         * ox.el (org-export-copy-buffer, org-export-with-buffer-copy)
5967         (org-export--generate-copy-script): Moved earlier in the file.
5969         * ox-texinfo.el (org-texinfo-link): Do not transform path part of
5970         internal links.
5972         * org.el (org-org-menu): Small refactoring.
5974         * ox-beamer.el (require):
5975         * ox-icalendar.el (require):
5976         * ox-jsinfo.el (require):
5977         * ox-md.el (require): Require cl when compiling.
5979         * org.el (org-export-backends):
5980         * ox.el (org-export-dispatch): Fix docstring.
5982         * ox.el (org-export-dispatch-ui): Widen UI by 2 characters.
5984         * ox-latex.el (org-latex-special-block): Add :options attribute to
5985         special blocks to specify options.
5987         * ox-beamer.el (org-beamer-template): Add BEAMER_HEADER keywords
5988         below LATEX_HEADER.
5990         * ox-latex.el (org-latex-format-headline-function): Fix missing
5991         parens in the docstring.
5993         * org.el (org-export-backends): Remove `:initialize' function.
5995         * org.el (org-reload): Also reload export back-ends in use.
5997         * ox-latex.el (org-latex-example-block, org-latex-src-block):
5998         Ignore element if it's empty.  This fixes error "apply: Wrong
5999         number of arguments: max, 0".
6001         * ox-beamer.el (org-beamer-template): Provide an error when LaTeX
6002         class is invalid.
6004         * ox-latex.el (org-latex-template): Provide an error when LaTeX
6005         class is invalid.
6007         * org.el (org-modules): Remove export back-ends from the list.
6008         Update docstring.
6009         (org-export-backends): New variable.
6011         * ox.el (org-export-async-start): Make sure export framework is
6012         required in the external process.
6014         * org.el (org-format-latex-header-extra, org-export-have-math):
6015         Removed variables.
6016         (org-latex-default-packages-alist): Renamed from
6017         `org-export-latex-default-packages-alist'.
6018         (org-latex-packages-alist): Renamed from
6019         `org-export-latex-packages-alist'.
6020         (org-try-cdlatex-tab, org-cdlatex-underscore-caret,
6021         org-cdlatex-math-modify): Reorder in file.
6022         (org-format-latex): Remove `org-format-latex-header-extra'.
6023         (org-create-formula-image-with-dvipng,
6024         org-create-formula-image-with-imagemagick): Apply variables renaming
6025         and removal.
6027         * org-entities.el (org-entities-user): Update docstring.
6029         * ox-latex.el (org-latex-classes, org-latex-listings): Update
6030         docstring.
6031         (org-latex-guess-inputenc): Renamed from `org-latex--guess-inputenc'.
6032         (org-latex-guess-babel-language): Renamed from
6033         `org-latex--guess-babel-language'.
6034         (org-latex-template): Apply renaming.
6036         * ox-beamer.el (org-beamer-template): Apply renaming.
6038         * ob-latex.el (org-babel-execute:latex): Apply variable renaming
6039         and removal.
6040         (org-babel-latex-tex-to-pdf): Call `org-latex-compile' instead of
6041         copying it.
6043         * org-macs.el (org-if-unprotected, org-if-unprotected-1)
6044         (org-if-unprotected-at): Removed macros.
6045         (org-re-search-forward-unprotected): Removed function.
6047         * org.el (org-format-latex):
6048         * org-list.el (org-list-struct):
6049         * org-footnote.el (org-footnote-at-reference-p):
6050         * org-capture.el (org-capture-fill-template): Remove reference to
6051         `org-protected'.
6053         * ob-exp.el (org-babel-exp-process-buffer): Renamed from
6054         `org-export-blocks-preprocess'.
6056         * ox.el (org-export-execute-babel-code): Apply previous renaming.
6058         * org-pcomplete.el (pcomplete/org-mode/file-option): Collect valid
6059         keywords for completion without requiring the whole export
6060         framework.
6061         (pcomplete/org-mode/file-option/options): Rewrite using new export
6062         framework.  Only complete up to the colon.
6063         (pcomplete/org-mode/file-option/x): Removed macro.
6064         (pcomplete/org-mode/file-option/title)
6065         (pcomplete/org-mode/file-option/author)
6066         (pcomplete/org-mode/file-option/email)
6067         (pcomplete/org-mode/file-option/date): Removed functions.
6068         (pcomplete/org-mode/file-option/infojs_opt): New function.
6070         * org-clock.el (org-clocktable-defaults)
6071         (org-clocktable-write-default): Avoid requiring the whole export
6072         framework just to check one variable.
6074         * org-footnote.el (org-footnote-section): Update docstring.
6075         (org-footnote-normalize): Remove all export related part from the
6076         function.
6078         * org-inlinetask.el (org-inlinetask-export)
6079         (org-inlinetask-export-templates): Removed variables.
6080         (org-inlinetask-export-handler): Removed function.
6082         * org-plot.el: Remove dependency on `org-exp' library.
6084         * org.el (org-additional-option-like-keywords): Remove variable.
6085         (org-get-export-keywords): New function.
6086         (org-options-keywords): Update default list of keywords.
6087         (org-remove-flyspell-overlays-in): Apply changes to keywords
6088         compilation.
6089         (org-highlight-latex-fragments-and-specials)
6090         (org-latex-and-specials-regexp)
6091         (org-export-html-special-string-regexps): Remove variables.
6092         (org-compute-latex-and-specials-regexp)
6093         (org-do-latex-and-special-faces, org-remove-file-link-modifiers):
6094         Remove functions.
6095         (org-set-regexps-and-options, org-set-font-lock-defaults): Apply all
6096         removals.
6097         (org-use-sub-superscripts): Fix docstring.  Remove unused group.
6098         (org-match-sexp-depth): Make it a defconst instead of a defcustom
6099         in order to remove `org-export-translation' group completely.
6101         * ob-haskell.el (org-babel-haskell-export-to-lhs): Use new
6102         exporter.
6104         * ob-latex.el (org-babel-execute:latex): Use new exporter.
6106         * ob-org.el (org-babel-execute:org): Use new exporter.
6108         * org-agenda.el (org-agenda-menu, org-agenda-write): Use new
6109         iCalendar export back-end.
6111         * org-table.el (org-table-export, orgtbl-export): Remove
6112         dependency on `org-exp' library.
6113         (org-table-clean-before-export): New function.
6114         (org-table-colgroup-info): New variable.
6115         (orgtbl-to-html): Use to new HTML export back-end.
6117         * org.el (org-modules): Remove modules relative to obsolete export
6118         framework and add those relative to the new one.
6119         (org-create-formula-image-with-dvipng, org-format-latex
6120         org-create-formula-image-with-imagemagick): Use new exporter.
6121         (org-indent-line): INCLUDE keywords are indented like regular
6122         keywords.
6123         (org-mode-map): Bind C-c C-e to new export dispatcher.
6124         (org-menu): Install new exporter in menu.
6126         * org-ascii.el:
6127         * org-beamer.el:
6128         * org-docbook.el:
6129         * org-exp-blocks.el:
6130         * org-exp.el:
6131         * org-freemind.el:
6132         * org-html.el:
6133         * org-icalendar.el:
6134         * org-jsinfo.el:
6135         * org-latex.el:
6136         * org-lparse.el:
6137         * org-odt.el:
6138         * org-publish.el:
6139         * org-special-blocks.el:
6140         * org-taskjuggler.el:
6141         * org-xoxo.el: Remove
6143         * ox-ascii.el:
6144         * ox-beamer.el:
6145         * ox-html.el:
6146         * ox-icalendar.el:
6147         * ox-jsinfo.el:
6148         * ox-latex.el:
6149         * ox-man.el:
6150         * ox-md.el:
6151         * ox-odt.el:
6152         * ox-publish.el:
6153         * ox-texinfo.el:
6154         * ox.el: New file.
6156         * ob-exp.el (org-export-blocks-preprocess): Do not use
6157         `indent-code-rigidly' as it doesn't indent contents of strings.
6159         * org-element.el (org-element-map): Change to function
6160         indentation.  Also complete docstring.
6162         * org.el (org-ctrl-c-ctrl-c): Major rewrite function using
6163         Elements.
6165         * org-element.el (org-element-at-point): When point is before any
6166         element, in the first blank lines of the buffer, return nil.  When
6167         point is within blank lines just after a headline, return that
6168         headline.
6169         (org-element-context): Return nil when point is within the blank at
6170         the beginning of the buffer.
6172         * org.el (org-edit-special): Fix regression.
6173         (org-timestamp-has-time-p, org-timestamp-format)
6174         (org-timestamp-split-range, org-timestamp-translate): New
6175         functions.
6177         * org-element.el (org-element-timestamp-interpreter): Interpret
6178         timestamps ranges with repeaters.
6180         * org.el (org-edit-special): Rewrite `org-edit-special' using Org
6181         Elements tools.  Behavior should be unchanged.
6183         * org-element.el (org-element-context): Add an optional argument
6184         so that (org-element-context) and (org-element-context
6185         (org-element-at-point)) are equivalent.
6187         * ob.el: Only use the :wrap argument up to the first space when
6188         creating the #+END_ directive.
6190         * org-element.el (org-element-object-variables): New variable.
6191         (org-element-parse-secondary-string): Copy some buffer-local
6192         variables to the temporary buffer created to parse the string so
6193         links can still be properly expanded.
6194         (org-element-link-parser): Link expansion and translation are applied
6195         transparently for the parser.
6197         * org-element.el (org-element-line-break-parser): Line break
6198         includes the newline character following the backslashes.
6199         (org-element-line-break-interpreter): Apply changes to line break
6200         parsing.
6202         * org.el (org-all-targets): Fix radio targets detection when
6203         object is directly followed by a non-whitespace character.
6205         * ob.el (org-babel-use-quick-and-dirty-noweb-expansion): Renamed
6206         from `org-babel-use-quick-and-dirty-noweb-expansion'.
6207         (org-babel-expand-noweb-references): Use new variable name.
6209         * org-element.el (org-element-timestamp-interpreter): Fix
6210         timestamp interpreter when raw value isn't available.
6212         * ob-exp.el (org-babel-exp-non-block-elements): Make sure to parse
6213         inline babel call or inline src block instead of the following
6214         object.
6216         * org-element.el (org-element-timestamp-parser): Timestamp with
6217         time range has active/inactive-range type.
6218         (org-element-block-name-alist): Do not reset
6219         `org-element-block-name-alist' at each reload.
6220         (org-element-object-restrictions): Allow timestamps in parsed
6221         keywords (i.e. DATE).
6223         * org-agenda.el (org-agenda-show-clocking-issues)
6224         (org-agenda-format-item): Silence byte compiler.
6226         * org-colview.el (org-agenda-columns): Silence byte compiler.
6228         * org.el (org-properties-postprocess-alist): Silence byte
6229         compiler.
6231         * org-element.el (org-element-timestamp-parser): Return nil for
6232         unspecified :hour-end and :minute-end properties.
6233         (org-element-object-restrictions): Add footnote references objects
6234         in table cells.
6235         (org-element-interpret-data): Clear text properties when
6236         interpreting a string .
6238         * org-capture.el (org-capture--expand-keyword-in-embedded-elisp):
6239         Fix docstring.
6241         * org.el (org-adaptive-fill-function): Items do not have
6242         a :post-affiliated property.  Use :begin property instead.
6244         * org-element.el (org-element-headline-parser)
6245         (org-element-inlinetask-parser): Remove :clockedp property.
6247         * org.el (org-adaptive-fill-function): All elements do not have a
6248         :post-affiliated property.
6249         (org-macro-replace-all): Signal an error when a circular macro
6250         expansion happens.
6251         (org-macro-initialize-templates): Fix docstring.
6253         * org-element.el (org-element-map): Fix docstring.
6254         (org-element-contents, org-element-set-contents)
6255         (org-element-adopt-elements): Fix accessors and setters wrt
6256         secondary strings.
6257         (org-element-headline-parser)
6258         (org-element-inlinetask-parser): Fix void-function
6259         `org-clocking-buffer' error.
6260         (org-element-context): Fix org-element-context on parsed keywords.
6261         (org-element-context): Find objects in document and parsable
6262         affiliated keywords.
6263         (org-element-center-block-parser)
6264         (org-element-drawer-parser, org-element-dynamic-block-parser)
6265         (org-element-footnote-definition-parser)
6266         (org-element-plain-list-parser)
6267         (org-element-property-drawer-parser)
6268         (org-element-quote-block-parser, org-element-special-block-parser)
6269         (org-element-babel-call-parser, org-element-comment-parser)
6270         (org-element-comment-block-parser, org-element-diary-sexp-parser)
6271         (org-element-example-block-parser)
6272         (org-element-export-block-parser, org-element-fixed-width-parser)
6273         (org-element-horizontal-rule-parser, org-element-keyword-parser)
6274         (org-element-latex-environment-parser)
6275         (org-element-paragraph-parser, org-element-src-block-parser)
6276         (org-element-table-parser, org-element-verse-block-parser): Add
6277         `:post-affiliated' property to elements.
6278         (org-element-inlinetask-parser): Remove affilated keywords.
6280         * org.el (org-adaptive-fill-function): Use new property.
6282         * org-element.el (org-element--collect-affiliated-keywords):
6283         Allow duals keywords with only secondary value.
6284         (org-element-timestamp-parser): Modify timestamp objects
6285         properties.
6286         (org-element-headline-parser, org-element-inlinetask-parser): Remove
6287         `:timestamp' and `:clock' property.  Add `:clockedp' property.  Also,
6288         set `:closed', `:deadline' and `:scheduled' values to timestamp
6289         objects, not strings.  Small refactoring.
6290         (org-element-clock-parser): Rename `:time' property into `:duration'.
6291         Also, set `:value' value as a timestamp object, not a string.
6292         (org-element-planning-parser): Set `:closed', `:deadline' and
6293         `:scheduled' values to timestamp objects, not strings.
6294         (org-element-clock-interpreter, org-element-planning-interpreter)
6295         (org-element-timestamp-interpreter): Update interpreters.
6296         (org-element--current-element): Tiny refactoring.
6298         * ob.el (org-babel-where-is-src-block-result): Insert new results
6299         keyword in current narrowed part of buffer, if necessary.  Small
6300         refactoring.
6301         (org-babel-insert-result): Do not widen buffer when new results have
6302         to be inserted.  Therefore, results inserted after the last block of
6303         a narrowed buffer still belong to the narrowed part of the buffer.
6305         * org-agenda.el (org-agenda-get-deadlines): Tiny stylistic change.
6307         * org-element.el (org-element-paragraph-separate): Diary-sexp
6308         elements can separate paragraphs.
6309         (org-element-all-elements): Install new `diary-sexp' type.
6310         (org-element--current-element): Recognize new `diary-sexp' elements.
6311         (org-element-diary-sexp-parser)
6312         (org-element-diary-sexp-interpreter): New functions.
6313         (org-element-horizontal-rule-parser)
6314         (org-element-keyword-parser, org-element--current-element): Small
6315         refactoring.
6316         (org-element-property): Access to text properties when argument is
6317         a string.
6318         (org-element-put-property): Correctly set property when target is
6319         a string.
6320         (org-element-adopt-elements): Also put :parent properties on
6321         strings.
6323         * ob-exp.el (org-babel-exp-code): Escape code when re-creating a
6324         src blocks.
6325         (org-export-blocks-preprocess): Pos can sometimes be set to a
6326         value greater than start, because of indentation, and lead to a
6327         search bound error.
6328         (org-babel-exp-code): Remove comma-escaping special rule for Org
6329         blocks.
6330         (org-export-blocks-preprocess): Results of an evaluated code block
6331         can be inserted within the blank lines after the block.  Hence, if
6332         the block has to be removed, delete everything down to the first
6333         non-blank line after the end of block closing string, instead of
6334         removing everything down to the very end of the block.
6336         * org.el (org-all-targets): Make sure the regexp really matched a
6337         radio target.
6338         (org-macro-expand, org-macro-replace-all): Change signature.  The
6339         function now accepts an alist of templates so it doesn't have to
6340         rely only on `org-macro-templates'.
6341         (org-macro-initialize-templates): {{{date}}} is not anymore an
6342         alias for {{{time}}}.  During export, it will provide the value
6343         stored in DATE keyword instead.
6345         * org-element.el (org-element-object-restrictions): Allow links in
6346         caption.  Also allow inline-src-blocks and inline-babel-calls.
6347         (org-element-map): Change signature.
6348         (org-element-parsed-keywords): Remove document properties from the
6349         value.
6350         (org-element-dual-keywords): Fix docstring.
6351         (org-element-document-properties): New variable
6352         (org-element-all-elements): Add `node-property' as a new element
6353         type.
6354         (org-element-greater-elements): Add property-drawer element to
6355         greater elements since they now contain node-property elements.
6356         (org-element-drawer-parser): Small refactoring.
6357         (org-element-property-drawer-parser): Move into Greater Elements
6358         file section.
6359         (org-element-node-property-parser,
6360         org-element-node-property-interpreter): New functions.
6361         (org-element--current-element, org-element-at-point)
6362         (org-element--parse-elements): Handle new element type.
6363         (org-element--collect-affiliated-keywords): Fix return value.
6364         (org-element-center-block-parser)
6365         (org-element-drawer-parser, org-element-dynamic-block-parser)
6366         (org-element-footnote-definition-parser)
6367         (org-element-plain-list-parser, org-element-quote-block-parser)
6368         (org-element-special-block-parser, org-element-babel-call-parser)
6369         (org-element-comment-parser, org-element-comment-block-parser)
6370         (org-element-example-block-parser)
6371         (org-element-export-block-parser, org-element-fixed-width-parser)
6372         (org-element-horizontal-rule-parser, org-element-keyword-parser)
6373         (org-element-latex-environment-parser)
6374         (org-element-paragraph-parser, org-element-property-drawer-parser)
6375         (org-element-src-block-parser, org-element-table-parser)
6376         (org-element-verse-block-parser): Change signature.  Now use an
6377         additional argument: affiliated.
6378         (org-element--current-element): Skip affiliated keywords and pass
6379         them as an argument to parsers.  It prevents to walk through these
6380         keywords twice: the first time to get to the first line of the
6381         element, and a second time to collect the affiliated keywords.
6383         * ob-exp.el (org-babel-exp-non-block-elements): More accurate
6384         white space handling when evaluating inline-src-block, babel-call
6385         and inline-babel-call elements or objects.  Also removed use of
6386         `org-babel-examplize-region' since it would never be called
6387         anyway; return value from `org-babel-exp-do-export' is never nil.
6388         (org-export-blocks-preprocess): Preserve affiliated keywords when
6389         replacing a code block.
6391         * org-element.el (org-element-multiple-keywords): Allow multiple
6392         caption keywords.
6394         * ob-exp.el (org-export-blocks-preprocess): Fix block evaluation
6395         when results are before the block.
6396         (org-export-blocks-preprocess): Improve blank lines handling in
6397         function.  Add comments.  Remove `org-export-blocks-postblock-hook'
6398         since it's defined nowhere now (and doesn't need to, there's
6399         `org-export-before-parsing-hook' already).
6401         * org-exp-blocks.el: Delete.
6403         * ob-exp.el (org-export-blocks-preprocess):
6404         * ob-ditaa.el (org-ditaa-jar-path): Moved from
6405         "org-export-blocks.el".
6407         * ob-exp.el (org-babel-exp-src-block): Remove unused argument.
6408         (org-babel-exp-non-block-elements): Rewrite function using Org
6409         Element.
6411         * org-exp-blocks.el (org-export-blocks-preprocess): Rewrite
6412         function using Org Element.
6414         * org-element.el (org-element-recursive-objects)
6415         (org-element-object-restrictions): Remove `macro' from recursive
6416         object types.
6418         * org.el (org-macro-initialize-templates): Small refactoring.
6419         (org-mode): Initialize macros templates.
6420         (org-macro-templates): New variable.
6421         (org-macro-expand, org-macro-replace-all)
6422         (org-macro-initialize-templates): New functions.
6424         * org-element.el (org-element-link-type-is-file): New variable.
6425         (org-element-link-parser): Extract search option and application
6426         in "file"-type links.
6428         * org.el (org-mode): Set back comment-start-skip so comment-dwin
6429         can tell a keyword from a comment.
6431 2013-11-12  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
6433         * org.el (org-time-stamp): When INACTIVE is non-nil, insert an
6434         inactive timestamp also with double universal argument.
6435         (org-set-regexps-and-options): Don't set font-lock defaults here.
6436         (org-mode): Set font-lock defaults here.
6437         (org-insert-link): Call `org-link-try-special-completion' from the
6438         original buffer.
6440 2013-11-12  Oleh  <oleh.krehel@gmail.com>
6442         * org.el (org-open-at-point): The new code is being run in the
6443         same spot as `org-open-link-functions'.  In case they failed,
6444         check if link matches "^id:" and if so, load the id interface and
6445         follwo the link.
6447 2013-11-12  Rasmus  <rasmus@gmx.us>  (tiny change)
6449         * ox-latex.el (org-latex--inline-image): The pgf format is
6450         associated to an inline image and treated like tikz files.
6452 2013-11-12  Richard Lawrence  <richard.lawrence@berkeley.edu>  (tiny change)
6454         * org-agenda.el (org-cmp-ts): Avoid error when trying to
6455         `string-match' against nil.
6457 2013-11-12  Rick Frankel  <rick@rickster.com>
6459         * ox-html.el (org-html-doctype): New function.
6460         (org-html-template): Use `org-html-doctype' instead of inline
6461         code.
6462         (org-html-headline): Use the new
6463         `org-html--container' function to set container element.
6464         (org-html--container): Returns appropriate element for headline
6465         container.
6466         (org-html-divs): Extra character in doc string.
6467         (org-babel-execute:sql): Unquote cmdline argument in
6468         format string, dbish requires three separate arguments.  Add dbi
6469         to the list of engines with automatically added header separator.
6470         (org-html--build-pre/postamble): Add css class to wrapper div
6471         (defaults to `org-pre/postamble-class').  Move spec building to
6472         separate function (`org-html-format-spec').
6473         (org-html-format-spec): New function.
6474         (org-pre/postamble-class): New variable.
6475         (org-html--timestamp-format): New variable used in the metadata
6476         and the pre/postamble.
6477         (org-html-style-default): Make the preamble and postamble use the
6478         same style.  Make all anchors font-size %100.  Remove margin from
6479         the content section.
6480         (org-html-container-element): Fix docstring.
6481         (org-html-postamble-format, org-html-preamble-format): Update
6482         docstrings.
6483         (org-html-template): Use `org-html--build-pre/postamble'.
6484         (org-html--build-pre/postamble): New function, combining the
6485         pre/postamble generator.  Merge lists of formatters from the
6486         preamble and postamble.  Fix bug, using :time-stamp-file instead
6487         of :with-date for auto display of date: this brings usage in-line
6488         with the latex and beamer exporter.
6489         (org-html--build-postamble, org-html--build-postamble): Delete.
6490         (define-backend): Add :html-doctype and :html-container
6491         parameters.
6492         (org-html-doctype): New option for doctype declaration.
6493         (org-html-container-elemnt): New option for specifying the wrapper
6494         container element.
6495         (org-html-divs): Change to alist of three entries each containing
6496         a key ('preamble, 'content, 'postamble), an HTML element type and
6497         an id to allow setting container elements.
6498         (org-html--build-preamble, org-html--build-postamble): Modified to
6499         use `org-html-divs'.
6500         (org-html-template): Modified to use doctype and container-element
6501         settings.
6502         (org-export-define-backend): Add css url option.
6503         (org-export-htmlized-org-css-url): Modify docstring and options.
6504         (org-html--build-style): Include css-url if specified.
6506 2013-11-12  Roberto Huelga Díaz  <rhuelga@gmail.com>  (tiny change)
6508         * org-timer.el (org-timer-set-timer): Use the variable
6509         `org-clock-sound' when calling `org-notify'.
6511 2013-11-12  Ryo TAKAISHI  <ryo.takaishi.0@gmail.com>
6513         * org-capture.el (org-capture--expand-keyword-in-embedded-elisp):
6514         New function.
6515         (org-capture-expand-embedded-elisp): Use the new function.
6517         * ob-tangle.el (org-babel-tangle-collect-blocks): Change argument
6518         name collid `org-babel-map-src-blocks' variable 'lang'.
6520         * org-protocol.el (org-protocol-convert-query-to-plist): New
6521         function.
6522         (org-protocol-do-capture): Use new function.
6523         (org-protocol-data-separator): Change default separator.
6525 2013-11-12  Rémi Vanicat  <vanicat@debian.org>  (tiny change)
6527         * org-table.el (orgtbl-format-line): Fix bug when formatting line.
6529 2013-11-12  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
6531         * ox-latex.el (org-latex-listings): Don't quote const value.
6533         * ob-C.el (org-babel-C-var-to-C): Add list support
6534         (org-babel-C-val-to-C-list-type, org-babel-C-val-to-C-type)
6535         (org-babel-C-format-val): New functions.
6536         (org-babel-C-ensure-main-wrap, org-babel-execute:C)
6537         (org-babel-execute:C++, rg-babel-execute:cpp)
6538         (org-babel-C++-compiler, org-babel-C-compiler): Improve docstring.
6540         * org-entities.el (org-entities): Add support for hbar.
6542 2013-11-12  Sacha Chua  <sacha@sachachua.com>  (tiny change)
6544         * org.el (org-read-date-get-relative): Handle positive and
6545         negative weekday specifications so that they don't return today.
6546         If today is Friday, "fri" should mean next Friday.  This changes
6547         the previous behavior, which required you to specify "+2fri" in
6548         order to mean next Friday if today was Friday.  If you want to
6549         schedule something for today, you can use ".".
6551 2013-11-12  Samuel Loury  <konubinix@gmail.com>  (tiny change)
6553         * org.el (org-open-at-point): Open a plain link even if the cursor
6554         is before it, which is consistent with the behavior with respect
6555         to bracket and angle links.
6557 2013-11-12  Sean O'Halpin  <sean.ohalpin@gmail.com>  (tiny change)
6559         * ob.el (org-babel-expand-noweb-references): Capture current noweb
6560         start and end patterns then use them to set buffer locals in a
6561         (with-temp-buffer ...) form.
6563 2013-11-12  Sebastien Vauban  <xxx@public.gmane.org>
6565         * ox-latex.el (org-latex-listings-langs): Update custom variable.
6567         * ob-core.el (org-babel-parse-src-block-match): Fix order of list
6568         of header arguments.
6570         * org-clock.el (org-clock-goto-before-context): New option.
6571         (org-clock-goto): Use the new option.
6572         (org-clocktable-write-default): Insert the summary as a standard
6573         #+CAPTION keyword for the (clock) table.
6575 2013-11-12  Stephen Eglen  <S.J.Eglen@damtp.cam.ac.uk>  (tiny change)
6577         * org-agenda.el (org-agenda-prefix-format): Small docstring
6578         enhancement.
6580 2013-11-12  Suhail Shergill  <suhailshergill@gmail.com>  (tiny change)
6582         * ob-core.el (org-babel-temp-file): For remote hosts, modify the
6583         prefix and leave `temporary-file-directory' unchanged.
6585 2013-11-12  Suvayu Ali  <fatkasuvayu+linux@gmail.com>  (tiny change)
6587         * org.el (org-speed-commands-default): Change default binding for
6588         org-mark-subtree from "." to "@" to be more consistent with "C-c
6589         @".
6591 2013-11-12  Tim Burt  <tcburt@rochester.rr.com>  (tiny change)
6593         * org-datetree.el (org-datetree-find-year-create): Also match
6594         headlines with tags.
6596 2013-11-12  Toby S. Cubitt  <tsc25@cantab.net>
6598         * org.el (org-time-clocksum-format)
6599         (org-time-clocksum-fractional-format): In addition to a single
6600         format string, the clocksum formats can now be plists specifying
6601         separate formats for different time units.
6602         (org-minutes-to-clocksum-string): New function to replace
6603         `org-minutes-to-hh:mm-string', which converts a number of minutes
6604         to a string according to the customization options.
6606         * org-colview.el (org-columns-number-to-string): Use the new
6607         `org-minutes-to-clocksum-string' function to format clocksum
6608         durations.
6610         * org-clock.el: Always call new `org-minutes-to-clocksum-string'
6611         function when formatting time durations, instead of calling
6612         `org-minutes-to-hh:mm-string' or passing
6613         `org-time-clocksum-format' directly to format.
6615 2013-11-12  Tokuya Kameshima  <kametoku@gmail.com>
6617         * org-mew.el (org-mew-inbox-folder, org-mew-use-id-db)
6618         (org-mew-subject-alist, org-mew-capture-inbox-folders)
6619         (org-mew-capture-guess-alist): New options.
6620         (org-mew-store-link, org-mew-open): Rewrite.
6621         (org-mew-folder-name, org-mew-follow-link)
6622         (org-mew-folder-eixsts-p, org-mew-get-msgnum)
6623         (org-mew-open-by-message-id, org-mew-search, org-mew-capture)
6624         (org-mew-capture-guess-selection-keys): New functions.
6626 2013-11-12  Trevor Murphy  <trevor.m.murphy@gmail.com>  (tiny change)
6628         * org.el (org-get-compact-tod): Always pad minutes to two places.
6630 2013-11-12  Viktor Rosenfeld  <listuser36@gmail.com>  (tiny change)
6632         * org.el (org-agenda-prepare-buffers): Add tags defined in
6633         `org-tag-persistent-alist' to `org-tag-alist-for-agenda'.
6635 2013-11-12  Vitalie Spinu  <spinuvit@gmail.com>
6637         * ob-tangle.el (org-babel-find-file-noselect-refresh): Call
6638         `find-file-noselect' with 'nowarn argument to surpress
6639         `yes-or-no-p' reversion message.
6641         * ob-core.el (org-babel-where-is-src-block-head): Return
6642         `point-marker' instead of `point'.
6644 2013-11-12  Yann Hodique  <yann.hodique@gmail.com>
6646         * org-publish.el (org-publish-org-to-taskjuggler): New function to
6647         publish taskjuggler projects.
6649 2013-11-12  Yasushi Shoji  <yashi@atmark-techno.com>
6651         * org-clock.el (org-clock-x11idle-program-name): New option.
6652         (org-x11idle-exists-p, org-x11-idle-seconds): Use it.
6654 2013-11-12  Yoshinari Nomura  <nom@quickhack.net>
6656         * ox-html.el (org-html--has-caption-p): New function.
6657         (org-html-link--inline-image, org-html-table): Prepend ordinal
6658         number to caption.
6659         (org-html-link): Make numbered link by counting captioned figures
6660         and tables.
6662         * ox.el (org-export-dictionary): Add Japanese translations for
6663         figures and tables.  Add "Figure %d:" entry in the same manner
6664         with "Table %d:".
6666 2013-11-12  Nicolas Richard  <nrichard@ulb.ac.be>
6668         * ob.el (org-babel-edit-distance): When insertion or deletion are
6669         needed, make sure the distance is incremented.  In addition, the
6670         now obsolete mmin function was removed.
6672 2013-11-12  Oleh Krehel  <wave@mail.ua>
6674         * org-capture.el (org-capture-expand-embedded-elisp): Throw error
6675         if result is not a string and not nil.  If the result is nil,
6676         treat it as if it was the empty string.
6678         * org-clock.el (org-clock-notify-once-if-expired): Honor
6679         `org-clock-sound'.
6681 2013-11-12  Rasmus Pank  <rasmus.pank@gmail.com>
6683         * org.el (org-format-latex-header): Remove eucal and amsmath.
6684         (org-latex-default-packages-alist): Remove amstext and add
6685         amsmath.
6687         * ox-latex.el (org-latex-item): Use square as unchecked symbol.
6689         * org.el (org-latex-default-packages-alist): Remove latexsym.
6691         * org-entities.el (org-entities): Add support for ell, imath,
6692         jmath, varphi, varpi, aleph, gimel, beth, dalet, cdots, S (§),
6693         dag, ddag, colon, therefore, because, triangleq, leq, geq,
6694         lessgtr, lesseqgtr, ll, lll, gg, ggg, prec, preceq, preccurlyeq,
6695         succ, succeq, succurlyeq, setminus, nexist(s), mho, check, frown,
6696         diamond.  Changes loz, vert, checkmark, smile and tilde.
6698         * ob-C.el: Added C++ to `org-babel-load-languages' automatically
6699         after loading C.
6701         * org-src.el (org-src-lang-modes): Added association between
6702         language C++ and `c++-mode'.
6704         * ox.el (org-export-smart-quotes-alist): Added ("da" "no" "nb"
6705         "nn" "sv").
6706         (org-export-dictionary): Added some entries ("da" "no" "nb" "nn"
6707         "sv").
6708         (org-export-default-language): Mention other variables affected by
6709         language.
6711         * ox-latex.el (org-latex-babel-language-alist): Added 'nb', 'nn',
6712         and 'no' for Norwegian.  Removed 'no-no'.
6713         (org-latex-pdf-process): let `latexmk' be a preconfigured choice
6714         and change the wording of the docstring.
6715         (org-latex-guess-babel-language): Replace AUTO with language if
6716         AUTO is the option of the LaTeX package Babel.
6717         (org-latex-classes): Updated documentation with respect
6718         to `org-latex-guess-babel-language'.
6720 2013-11-12  Дядов Васил Стоянов  <vdyadov@elvees.com>  (tiny change)
6722         * org-docview.el (org-docview-export): New function to export
6723         docview links.
6725 2013-04-18  Stefan Monnier  <monnier@iro.umontreal.ca>
6727         * org-agenda.el (org-agenda-mode):
6728         * org-indent.el (org-indent-mode): Use the `local' arg of
6729         add-hook/remove-hook.
6731 2013-03-08  Bastien Guerry  <bzg@gnu.org>
6733         * org-exp.el (org-export-normalize-links): Fix critical bug: do
6734         not rely on `org-context' to guess where to prevent links
6735         normalization.
6737 2013-02-28  Achim Gratz  <Stromeko@Stromeko.DE>
6739         * org.el (org-org-menu): Use correct key "C-u C-c C-x !" to do
6740         org-reload uncompiled in the menu.
6742 2013-02-28  Bastien Guerry  <bzg@gnu.org>
6744         * org-indent.el (org-indent-add-properties): Bugfix: prevent
6745         negative value for `added-ind-per-lvl'.
6747         * org.el (org-mode): Add `org-fix-ellipsis-at-bol' to
6748         `isearch-mode-end-hook' so that any isearch fixes the problem with
6749         ellipsis on the first line.
6750         (org-fix-ellipsis-at-bol): New defsubst.
6751         (org-show-context, org-isearch-end): Use it.
6753         * org.el (org-show-context): Remove useless catch.
6754         Make sure the top of the window is a visible headline.
6755         (org-activate-plain-links): Remove unused catch.
6757         * org-macs.el (org-get-alist-option): Return nil, not (nil),
6758         so that `org-show-context' DTRT.
6760         * org.el (org-imenu-get-tree): Fix bug when matching against empty
6761         headlines.
6763         * org.el (org-overview): Stay on current line.
6764         (org-map-entries): Fix docstring.
6765         (org-at-clock-log-p): Delete.
6766         * org-clock.el (org-at-clock-log-p): Move here.
6768         * org.el (org-tsr-regexp-both): Don't activate dates in links.
6769         (org-activate-dates): Change match boundaries according to the new
6770         value of `org-tsr-regexp-both'.
6772         * org-agenda.el (org-agenda-to-appt): Fix typos.
6774         * org-agenda.el (org-agenda-local-vars): Don't include
6775         `org-agenda-show-window' as it needs to be checked outside of the
6776         agenda window.
6778         * org.el (org-set-tags-command): Fix bug when setting tags for
6779         multiple headlines in an active region.
6781         * org-mobile.el (org-mobile-edit): DTRT when inserting a heading
6782         in an invisible region.
6784         * org.el (org-insert-heading-respect-content): Add docstring.
6785         New `invisible-ok' parameter.
6786         (org-insert-todo-heading-respect-content): Add docstring.
6788         * ob-tangle.el (org-babel-tangle-collect-blocks):
6789         Bugfix: remove code references from blocks.
6791         * org-agenda.el (org-agenda-schedule, org-agenda-deadline):
6792         Cosmetic changes.
6793         (org-agenda-show-new-time): Fix bug when displaying a temporary
6794         overlay with the scheduled/deadline information.
6796         * org.el (org-fill-paragraph-with-timestamp-nobreak-p): New function.
6797         (org-setup-filling): Use it to prevent breaking a timestamp when
6798         filling a paragraph.
6800         * org-id.el (org-id-get-with-outline-path-completion): Fix docstring.
6802 2013-02-28  Tim Burt  <tcburt@rochester.rr.com>  (tiny change)
6804         * org-datetree.el (org-datetree-find-year-create):
6805         Match headlines with tags.
6807 2013-02-07  Bastien Guerry  <bzg@gnu.org>
6809         * org-agenda.el (org-agenda-get-deadlines)
6810         (org-agenda-get-scheduled): Fix bug: use text properties for the
6811         headline text since we rely on properties to get e.g. the effort.
6813         * org-exp.el (org-export-normalize-links): Don't match links
6814         within tags.
6816         * org-html.el (org-export-html-preamble-format)
6817         (org-export-html-postamble-format): Mention that
6818         org-export-html-preamble/postamble need to be `t' in order for
6819         these variables to have any effect.
6821         * org-html.el (org-html-handle-links): When the link description
6822         is an image and the attribute is "width", pass the attribute to
6823         the <img ...> tag.
6825         * org.el (org-mode): Always honor `org-startup-indented', even
6826         when `org-inhibit-startup' is non-nil.
6828         * org-indent.el (org-indent-mode): Don't check
6829         `org-inhibit-startup'.
6831         * org.el (org-fontify-meta-lines-and-blocks-1): Don't try to add
6832         text properties outside of the buffer.
6834         * org.el (org-agenda-inhibit-startup): Rename from
6835         `org-agenda-inhibit-startup-visibility-cycling'.
6836         (org-agenda-prepare-buffers): Bind `org-inhibit-startup' to
6837         `org-agenda-inhibit-startup'.
6839         * org.el (org-mode): Don't initialize `org-beamer-mode' when
6840         `org-inhibit-startup' is non-nil.
6842         * org-footnote.el (org-footnote-create-definition): Prevent
6843         `electric-indent-mode' from inserting the definition at the wrong
6844         place.
6846         * org-agenda.el (org-agenda-no-heading-message): Delete.
6847         (org-agenda-get-timestamps, org-agenda-get-progress)
6848         (org-agenda-get-deadlines, org-agenda-get-scheduled)
6849         (org-agenda-get-blocks): Don't use
6850         `org-agenda-no-heading-message', skip the entry.
6852         * org.el (org-agenda-inhibit-startup-visibility-cycling):
6853         New option.
6854         (org-agenda-prepare-buffers): Use it to speed up the agenda
6855         generation.
6857         * org-agenda.el (org-agenda-skip): Fix bug by correctly skipping
6858         commented scheduled/deadline lines.
6860         * org-clock.el (org-clock-in): Fix bug when fetching the effort
6861         value.
6863         * ob-python.el (org-babel-python-command): Fix docstring.
6864         (org-babel-python-initiate-session-by-key): Fix bug: `run-python'
6865         from Emacs >24.1 requires a python command as an argument.
6867         * org-element.el (org-element-at-point): Fix typo in docstring.
6869         * org-agenda.el (org-agenda-get-deadlines): Fix bug: use
6870         `org-agenda-show-inherited-tags'.
6872         * org-agenda.el (org-agenda-skip): Correctly handle commented out
6873         scheduled/deadline lines.  Refactor.
6875         * org-install.el: Do not warn users.
6877         * org.el (org-adaptive-fill-function): In message-mode, don't
6878         lines in the message header, nor table lines in the body.
6879         Correctly fill lines starting with `org-outline-regexp' in the
6880         body.
6882         * org-agenda.el (org-agenda-open-link): Fix bug with opening all
6883         links.
6885 2013-02-07  Francesco Pizzolante  <fpz-djc/iPCCuDYQheJpep6IedvLeJWuRmrY@public.gmane.org>  (tiny change)
6887         * org-clock.el (org-clock-sum): Protect with `org-unmodified'.
6889         * org-macs.el (org-unmodified): Inhibit modification hooks.
6891 2013-02-07  John K. Luebs  <jkluebs@luebsphoto.com>  (tiny change)
6893         * org.el (org-get-wdays): Handle matching a lead time specified in
6894         hours.
6896 2013-02-07  Muchenxuan Tong  <demon386@gmail.com>  (tiny change)
6898         * org-agenda.el (org-agenda-quit): Delete indirect buffer's window
6899         only when it exists.
6901 2013-02-07  Nicolas Goaziou  <n.goaziou@gmail.com>
6903         * org-element.el (org-element-macro-parser): Fix error when last
6904         argument ends with a protected comma.
6906         * org-element.el (org-element-parse-buffer, org-element-map)
6907         (org-element-at-point, org-element-context): Be more verbose in
6908         docstrings.  Also fix typos.
6910         * org-list.el (org-list-struct-fix-box): When a checkbox has to be
6911         resetted because of a non-nil ORDERED property value, make sure it
6912         had a checkbox already.
6914 2013-02-07  Tokuya Kameshima  <kametoku@gmail.com>  (tiny change)
6916         * org-agenda.el (org-search-view): Fix checking
6917         `org-agenda-show-inherited-tags'.
6919 2013-02-07  racin  <racin@free.fr>  (tiny change)
6921         * org-bibtex.el (org-bibtex-search): Don't throw an error when
6922         `org-bibtex-prefix' is nil.
6924 2013-01-13  Bastien Guerry  <bzg@gnu.org>
6926         * org-compat.el (org-condition-case-unless-debug): Delete.
6928         * org-odt.el (org-odt-cleanup-xml-buffers):
6929         Use `condition-case' instead of `org-condition-case-unless-debug',
6930         which is now deleted.
6932         * org-capture.el (org-capture-templates-contexts):
6933         * org-agenda.el (org-agenda-custom-commands-contexts):
6934         Docstring fix.
6936         * org.el (org-get-tags-at): Remove duplicate inherited tags.
6938         * org-agenda.el (org-agenda-show-inherited-tags): Allow to be set
6939         to 'always or to a list of agenda types.
6940         (org-agenda-finalize): Rework conditions under which inherited
6941         tags should be made available even when not displayed.
6942         (org-search-view, org-agenda-get-todos)
6943         (org-agenda-get-timestamps, org-agenda-get-sexps)
6944         (org-agenda-get-progress, org-agenda-get-scheduled)
6945         (org-agenda-get-blocks): Use new possible values of
6946         `org-agenda-show-inherited-tags'.
6948         * org.el (org-open-at-point): Fix opening all links at point.
6950         * org-agenda.el (org-get-entries-from-diary): Turn off
6951         `diary-file-name-prefix' instead of
6952         `diary-file-name-prefix-function', the former is checked before
6953         the latter.
6955         * org.el (org-edit-special): Check for table.el before checking
6956         for Org tables.
6958 2013-01-13  Michael Albinus  <michael.albinus@gmx.de>
6960         * ob-eval.el (org-babel-shell-command-on-region):
6961         Use `executable-find' for local `shell-file-name'.
6963 2013-01-09  Achim Gratz  <Stromeko@Stromeko.de>
6965         * org-faces.el: Define face alias mode-line for XEmacs (it's
6966         called modeline there).
6968         * org-compat.el (org-no-popups): New wrapper macro which let-binds
6969         the correct variables to suppress popup windows depending on the
6970         Emacs version in use.  This is a compile-time decision when
6971         byte-compiling.
6973         * org.el (org-get-location, org-switch-to-buffer-other-window):
6974         Use the wrapper `org-no-popups' to let-bind the correct variables
6975         for suppression of popup windows.
6977         * org-compat.el (user-error): Defalias to `error' for Emacsen that
6978         don't have it.
6980         * org-agenda.el (org-agenda-write): Use org-called-interactively-p
6981         instead of called-interactively-p.
6983         * org.el (org-find-invisible-foreground): Do not use the value of
6984         variables `default-frame-alist', `initial-frame-alist' and
6985         `window-system-default-frame-alist' when their symbol is not bound.
6987 2013-01-09  Bastien Guerry  <bzg@gnu.org>
6989         * org-src.el (org-edit-src-code): Fix bug when trying to edit a
6990         table.el table.
6992         * org-agenda.el (org-agenda-finalize): Inhibit readonly for the
6993         whole function.
6995         * org.el (org-entry-get): Speed up by let-binding some variables
6996         only if needed.  Also fix a bug: consider an empty drawer as no drawer.
6998         * org-agenda.el (org-search-view, org-agenda-get-todos)
6999         (org-agenda-get-timestamps, org-agenda-get-sexps)
7000         (org-agenda-get-progress, org-agenda-get-deadlines)
7001         (org-agenda-get-scheduled, org-agenda-get-blocks)
7002         (org-agenda-change-all-lines): Get local tags only.
7003         (org-agenda-use-tag-inheritance): New option.
7004         (org-agenda-finalize): When `org-agenda-use-tag-inheritance'
7005         is non-nil, possibly reset tags in the agenda buffer.
7006         (org-agenda-check-type): Enhance docstring.
7008         * org.el (org-use-tag-inheritance): Fix typo in docstring.
7010         * org-agenda.el (org-float): Don't alias `org-float'.
7012         * org.el (org-scan-tags): The skipper already checks for archived
7013         entries.
7015         * org.el (org-refresh-properties): Rename from
7016         `org-refresh-effort-properties' and use two new parameters.
7017         (org-agenda-prepare-buffers): Use `org-refresh-properties'.
7018         Also refresh the 'org-appt-warntime text property.
7020         * org-clock.el (org-clock-in): Use the renamed defun.
7022         * org-icalendar.el (org-icalendar-print-entries):
7023         Refresh the 'org-appt-warntime property.
7024         (org-icalendar-print-entries):
7025         * org-agenda.el (org-agenda-get-timestamps)
7026         (org-agenda-get-sexps, org-agenda-get-deadlines)
7027         (org-agenda-get-scheduled): Do not use `org-entry-get' to get the
7028         "APPT_WARNTIME" property value.
7030         * org.el (org-id-link-to-org-use-id): Fix compiler warning.
7032         * org-agenda.el (org-agenda-format-item): Do not use
7033         `org-get-effort' to get the effort text property.
7034         (org-agenda-get-sexps): Use `org-back-to-heading' when setting tags.
7036         * org-clock.el (org-clock-in): Refresh effort properties.
7038         * org.el (org-refresh-effort-properties): New defun.
7039         (org-get-effort): Delete.
7040         (org-set-effort):
7041         (org-property-next-allowed-value): Set the 'org-effort text property.
7042         (org-agenda-prepare-buffers): Refresh effort properties.
7044         * org.el (org-read-date): Let-bind `mouse-autoselect-window' to
7045         nil so that the mouse doesn't jump when the option is set to t globally.
7047         * org-agenda.el (org-agenda-dim-blocked-tasks): Default to nil.
7048         (org-agenda-dim-blocked-tasks): Make interactive and allow an
7049         optional parameter 'invisible to hide blocked tasks instead of
7050         just dimming them.
7051         (org-agenda-mode-map): Bind `org-agenda-dim-blocked-tasks' to "#".
7053         * org-agenda.el (org-agenda-finalize): Don't try to align tags
7054         when there are no tags.  Only try to draw the habit consistency
7055         graph when there is a habit in the buffer.  Only mark clocking
7056         task when there is one.
7058         * org.el (org-adaptive-fill-function): DTRT in `message-mode'.
7060         * org.el (org-get-priority): Save match data even when using
7061         `org-get-priority-function'.
7063         * org-mobile.el (org-mobile-create-index-file):
7064         Possibly normalize `org-todo-keywords'.
7066         * org-mobile.el (org-mobile-push): Use the correct agenda buffer names.
7068         * org.el (org-store-link): Use `org-id-link-to-org-use-id' instead
7069         of the obsolete variable name.
7071         * org.el (org-fontify-meta-lines-and-blocks-1):
7072         Fix bug when fontifying keywords with no value.
7074         * org.el (org-goto-auto-isearch): Enhance docstring.
7075         (org-goto-map): Make a defun, so that the customized value of
7076         org-goto-auto-isearch is correctly initialized.
7077         (org-goto): Initialize the keymap with `org-goto-map'.
7078         (org-get-location): Use *Org Help* as a temporary buffer.
7079         Tell whether auto-isearch is on or off.
7081         * org-exp.el (org-export-as-org): Remove useless argument.
7083         * org-docbook.el (org-export-as-docbook-batch)
7084         (org-export-region-as-docbook, org-export-as-docbook-pdf):
7085         Fix the number of arguments.
7086         (org-export-as-docbook): Remove useless argument.
7088         * org.el (org-speed-commands-default): Use ":" instead of ";" for
7089         `org-set-tags-command', which is consistent with ":" in agenda
7090         view.  Use "=" for `org-columns".
7092         * org.el (org-sparse-tree): Fix redundant information in prompt.
7094         * org-exp.el (org-export-string): Fix number of arguments passed
7095         to the org-export-as-* functions.
7097         * org-latex.el (org-export-as-latex): Fix typo in docstring.
7099         * org-list.el (org-cycle-include-plain-lists): Docstring enhancement.
7101         * org.el (org-fontify-meta-lines-and-blocks-1): Fix fontification
7102         bug when fontifying a keyword with no associated value.
7103         (org-cycle-internal-local): Don't run hooks when cycling a plain
7104         list before first headline.
7105         (org-ctrl-c-ctrl-c): Throw a user error when trying to toggle a
7106         blocked checkbox.
7107         (org-indent-line): Fix table formulas indenting.
7109         * org-agenda.el (org-agenda-open-link): Fix bug when no link is
7110         matched.  Return a message instead of an error.
7111         (org-agenda-priority): Remove useless parameter and fix showing
7112         priority in agenda buffers.
7114         * org-macs.el (org-with-buffer-modified-unmodified): New macro.
7116         * org.el (org-entry-blocked-p): Use the new macro.
7118         * org-src.el (org-edit-src-exit): Don't comma-escape the content
7119         of a fixed width region.
7121         * org.el (org-blocker-hook): Update the docstring to mention that
7122         functions in this hook should not modify the buffer.
7123         (org-trigger-hook): Small docstring fix.
7124         (org-entry-blocked-p): Use `with-buffer-modified-unmodified'
7125         so that the function never modifies the buffer.
7127         * org-agenda.el (org-agenda-open-link): Allow to open an internal
7128         link by using the new `org-offer-links-in-entry' function.
7130         * org.el (org-offer-links-in-entry): Do not open the link directly
7131         through `org-open-link-from-string', only offer to select a link
7132         and return a cons with the link (as a string) and the end of entry.
7133         (org-open-at-point): Use `org-offer-links-in-entry' correctly.
7135         * org.el (org-cycle-internal-local):
7136         Fix bug: allow headings with leading blank characters.
7138         * org-clock.el (org-clock-persist):
7139         Docstring fix: document the 'history value.
7141         * org.el (org-insert-link): Fix bug when inserting links to
7142         headlines containing the ">" character.
7144         * org-crypt.el (org-at-encrypted-entry-p): Fix search boundary.
7146         * org-compat.el (org-delete-directory): New compatibility function
7147         for Emacs 22, where `delete-directory' does not support recursive
7148         deletion.
7150         * org-odt.el (org-odt-cleanup-xml-buffers):
7151         Use the new compatibility function.
7153         * org.el (org-table-map-tables): Fix allowed blocks.
7155         * org.el (org-edit-special):
7156         * org-src.el (org-edit-src-code): Fix regression: allow editing
7157         HTML and LaTeX source blocks again.
7159         * org.el (org-nonsticky-props): Add `htmlize-link'.
7160         (org-nonsticky-props): Add `htmlize-link'.
7162         * org.el (org-edit-special):
7163         * org-src.el (org-edit-src-code): Don't edit in verbatim blocks.
7165         * org-table.el (org-table-fedit-lisp-indent)
7166         (orgtbl-self-insert-command): Use `org-delete-backward-char'
7167         instead of `backward-delete-char'.
7169         * org-src.el (org-edit-src-code): Fix another bug about editing
7170         special blocks "example" and "verbatim".
7172         * org.el (org-structure-template-alist): Add verbatim.
7173         (org-edit-special): Fix bug about editing special blocks
7174         "example" and "verbatim".
7176         * org.el (org-delete-backward-char, org-delete-char):
7177         Save match data, `delete-backward-char' and `delete-char' don't.
7179         * org.el (org-enable-table-editor, org-insert-heading)
7180         (org-remove-timestamp-with-keyword, org-self-insert-command):
7181         * org-table.el (org-table-fedit-lisp-indent)
7182         (orgtbl-self-insert-command):
7183         * org-latex.el (org-export-latex-subcontent):
7184         * org-clock.el (org-clocktable-write-default):
7185         * org-ascii.el (org-export-ascii-preprocess):
7186         Use `delete-backward-char' instead of `backward-delete-char'.
7188         * org.el (org-todo): Ignore the comment string when changing the
7189         TODO state of a headline.
7190         (org-edit-special): Fix docstring.
7191         (org-in-src-block-p): Small enhancement.
7193         * org-publish.el (org-publish-org-to): Call `org-export-as-*'
7194         functions with the correct list of arguments.
7196         * org-html.el (org-export-as-html): Delete obsolete arg `hidden'.
7197         (org-export-as-html-and-open, org-export-as-html-batch)
7198         (org-export-region-as-html): Don't use obsolete arg.
7200         * org-ascii.el (org-export-as-ascii): Delete obsolete arg `hidden'.
7201         (org-export-as-ascii-to-buffer): Don't use obsolete arg.
7203         * org.el (org-in-fixed-width-region-p): Save match data.
7204         (org-in-src-block-p): Use case-folding for searching the block
7205         boundaries.
7206         (org-activate-plain-links, org-activate-angle-links)
7207         (org-activate-bracket-links): Prevent link activation in
7208         source code blocks.
7210         * org-odt.el (org-odt-cleanup-xml-buffers): Fix Emacs Bug#13197 by
7211         setting the correct buffer before marking it unmodified to
7212         silently kill him.
7214         * org.el (org-set-font-lock-defaults): Don't activate links in
7215         source code blocks and fixed-width regions.
7217         * org-agenda.el (org-agenda-finalize): Fix links activation.
7219         * org.el (org-open-at-point): Throw the correct error on
7220         non-links.  Use `user-error' instead of `error'.
7222         * org.el (org-in-fixed-width-region-p): Define before use.
7224         * org-src.el (org-in-src-block-p): Declare function.
7226         * org-compat.el: Fix bug: don't use `eval-when-compile' when
7227         aliasing `user-error'.
7229         * org-agenda.el (org-agenda-skip): Only check if point is
7230         inside a code block, not at a code block.
7232         * org.el (org-in-fixed-width-region-p):
7233         Rewrite using org-element.el.
7235         * org.el (org-fill-paragraph): Fill correctly in source code block.
7237         * org.el (org-in-fixed-width-region-p): New function.
7238         (org-edit-special): Fix bug: make sure to DTRT in every
7239         special environment.  Also use the new function to check
7240         against fixed-width environment.
7242         * org-src.el (org-edit-src-code): Check if we are in a source code
7243         block with `org-in-src-block-p'.  Slightly reformat the docstring.
7245         * org.el (org-in-src-block-p): Return t when point is at the
7246         #+BEGIN_SRC/#+END_SRC lines unless the new optional parameter
7247         'inside is set to t.
7249         * ob-exp.el (obe-marker): Delete useless var.
7251         * org-src.el (org-edit-src-code): Fix bug triggered by the sexp
7252         (copy-marker nil) on Emacs <24.1.
7254 2013-01-09  Dmitry Antipov  <dmantipov@yandex.ru>
7256         * org-agenda.el (org-agenda-get-restriction-and-command):
7257         * org-capture.el (org-capture-place-template):
7258         * org-colview.el (org-dblock-write:columnview):
7259         * org-mobile.el (org-mobile-locate-entry):
7260         * org-table.el (org-table-convert-region):
7261         * org.el (org-update-statistics-cookies): Use `point-marker'.
7263 2013-01-09  Eric Schulte  <eric.schulte@gmx.com>
7265         * org-exp.el (org-export-string): Pass the dir option on through
7266         to any subsequent export functions.
7268 2013-01-09  Henning Weiss  <hdweiss@gmail.com>  (tiny change)
7270         * org-mobile.el (org-mobile-sumo-agenda-command): Remove match
7271         description from block agendas when they have a title.
7273 2013-01-09  Jambunathan K  <kjambunathan@gmail.com>
7275         * org-odt.el (org-export-as-odt-batch): Init `org-odt-zip-dir'.
7276         Fix Emacs Bug#13254.
7278         * org-odt.el (org-odt-format-org-link): Add check for presence of
7279         description in headline links.
7281 2013-01-09  Michael Gauland  <mike_gauland@stanfordalumni.org>  (tiny change)
7283         * org-src.el: Create a marker to pass to copy-marker.
7285 2013-01-09  Nicolas Goaziou  <n.goaziou@gmail.com>
7287         * org.el (org-setup-filling): Set `auto-fill-inhibit-regexp' to
7288         nil because `org-adaptive-fill-function' already determines which
7289         lines should be filled.
7291         * org.el (org-fill-paragraph): Small refactoring.
7293         * org-element.el (org-element--parse-elements)
7294         (org-element-at-point): Fix parsing of a list in a block in a list.
7296 2013-01-09  Sebastien Vauban  <wxhgmqzgwmuf-geNee64TY+gS+FvcfC7Uqw@public.gmane.org>
7298         * org.el (org-copy-subtree, org-paste-subtree):
7299         Fix whitespace handling when copying/pasting a subtree.
7301 2012-12-20  Michael Albinus  <michael.albinus@gmx.de>
7303         * ob.el (org-babel-temp-file): Fix setting of
7304         `temporary-file-directory' on remote hosts.
7306         * ob-eval.el (org-babel-shell-command-on-region):
7307         Use `process-file' instead of `call-process-region'.  The latter one
7308         does not work on remote hosts.
7310 2012-12-13  Bastien Guerry  <bzg@gnu.org>
7312         * org-latex.el (org-export-latex-links): Escape raw path when
7313         exporting links to files.
7315         * org-src.el (org-src-native-tab-command-maybe): Fix bug: the
7316         S-TAB key should not trigger a native TAB command.
7318         * org.el (org-open-at-point): Allow to open any link within
7319         footnotes definition, not only bracket links.
7321         * org.el (org-sort-entries): Bugfix: keep track of the clock
7322         marker when sorting entries.  Enhance the docstring.
7324         * org-clock.el (org-clock-out): Use `user-error' when the user
7325         tries to clock out while there is no running clock.
7327         * org-table.el (org-table-sort-lines): Ensure coordinates are
7328         correctly displayed when sorting.
7330         * org.el (org-do-sort): Enhance prompt.
7332         * org-agenda.el (org-agenda-finalize): Also activate plain links.
7334         * org-timer.el (org-timer-stop): Add message.
7336         * org-agenda.el (org-agenda-schedule, org-agenda-deadline):
7337         Fix redundant messages.
7339         * org-agenda.el (org-agenda-finalize): Fix clock highlighting.
7341         * org.el (org-additional-option-like-keywords): Add "INDEX:".
7343         * org-install.el: Enhance warning.
7345 2012-12-13  Erik Hetzner  <egh@e6h.org>  (tiny change)
7347         * org.el (org-log-into-drawer): Honor the nil value for the
7348         :LOG_INTO_DRAWER: property.
7350 2012-12-13  Le Wang  <l26wang@gmail.com>  (tiny change)
7352         * org-src.el (org-edit-src-exit): Fix editing source section with
7353         blank lines.
7355 2012-12-13  Le Wang  <le.wang@agworld.com.au>
7357         * org-src.el (org-edit-src-code): Use marker with insertion type
7358         t to track end and remove hack requiring delete from beg to (1- end).
7360 2012-12-13  Nicolas Goaziou  <n.goaziou@gmail.com>
7362         * org-element.el (org-element-context): When point is between two
7363         objects, be sure to return the second one.
7365         * org-list.el (org-list-separating-blank-lines-number):
7366         When computing number of blank lines separating items, also count those
7367         in unparsed blocks, like example blocks.
7369         * org.el (org-end-of-line): When visual line mode is on, really
7370         move by visual lines.  Small refactoring.
7372         * org.el (org-end-of-line): On a hidden block make sure to
7373         delegate motion to `end-of-line' instead of `move-end-of-line' in
7374         order to stay on the current line.
7376 2012-12-13  Rafael Laboissiere  <rafael@laboissiere.net>  (tiny change)
7378         * org-bibtex.el: In the documentation section of the file, fix the
7379         broken URL to Andrew Roberts' document on BibTeX entries.
7381         * org-remember.el (org-remember-handler): Correctly strip the
7382         comment lines in the temporary buffer *Remember* when handling a
7383         remember note.
7385         * org-remember.el (org-remember-apply-template): Start the
7386         commented lines in the Remember temporary buffer with the
7387         appropriate characters.
7389 2012-12-13  Toby S. Cubitt  <tsc25@cantab.net>
7391         * org.el (org-beginning-of-line): Check `visual-line-mode' instead
7392         of `line-visual-mode' to determine whether to move by visual lines.
7394         * org.el (org-kill-line): Use the `org-bound-and-true-p' macro.
7396 2012-12-04  Chong Yidong  <cyd@gnu.org>
7398         * org-bibtex.el (org-bibtex-ask): Use visual-line-mode instead of
7399         longlines-mode.
7401 2012-10-26  Achim Gratz  <stromeko@stromeko.de>
7403         * ob-ditaa.el: Needs to (require 'org-compat) for
7404         org-find-library-dir.
7406         * org.el: Remove utf-8 codepoints in docstrings, bytecode doesn't
7407         work when loaded from compressed files.
7409         * org-compat.el: Make sure that file-name-directory is getting a
7410         stringp.  This avoids a possible " (wrong-type-argument stringp
7411         nil)" error when the library in question does not exist.
7413         * org-odt.el: Replace arc-mode.el by arc-mode.
7415         * org.el: Replace org-macs.el by org-macs.
7417         * org-install.el: Provide an empty file that prints a warning
7418         about an outdated configuration.
7420 2012-10-26  Bastien Guerry  <bzg@gnu.org>
7422         * org-latex.el (org-export-as-latex): Remove obsolete argument
7423         `hidden'.  Also fix the docstring: using 'string as the value
7424         for `to-buffer' outputs a string with no LaTeX header.
7425         (org-export-as-latex-batch)
7426         (org-export-as-latex-to-buffer, org-export-region-as-latex)
7427         (org-export-as-pdf): Don't use the obsoleted argument.
7429         * ob-haskell.el (org-export-as-latex): Don't use the obsoleted
7430         argument `hidden'.
7432         * org.el (org-refile): Run within `with-demoted-errors' so that a
7433         corrupted bookmark file does not stop the refile process.
7435         * org-capture.el (org-capture-bookmark-last-stored-position):
7436         Ditto for the capture process.
7438         * org-src.el (org-edit-src-exit): Fix bug when saving an empty
7439         source buffer.
7441         * org-lparse.el (org-lparse): Fix bug by returning the output
7442         of `org-do-lparse'.
7444         * org.el (org-refile-check-position): Throw an error when the
7445         refile target is the current buffer and is not a file.
7446         (org-agenda-file-to-front, org-remove-file): Throw an error
7447         when the current buffer is not a file.
7448         (org-check-agenda-file): Enhance the message.
7449         (org-element-type): Autoload.
7450         (org-element-context, org-element-paragraph-parser):
7451         Don't declare as these two functions are not used in org.el.
7453         * org-lparse.el (browse-url-file-url): Declare.
7455         * org.el (org-refile-check-position): Fix typo in docstring.
7457         * org-clock.el (org-clock-modeline-total): Make obsolete.
7458         (org-clock-mode-line-total): Rename from
7459         `org-clock-modeline-total'.
7460         (org-clock-get-sum-start): Fix references to
7461         `org-clock-modeline-total'.
7463         * org-faces.el (org-agenda-filter-tags)
7464         (org-agenda-filter-category, mode-line): Use the 'mode-line
7465         face instead of the obsolete 'modeline.
7467         * org-odt.el (org-odt-styles-dir): Try more directories.
7468         Don't throw an error, just send a message.
7470         * org-odt.el (org-odt-lib-dir, org-odt-data-dir)
7471         (org-odt-schema-dir-list, org-odt-styles-dir-list): Delete.
7472         (org-export-odt-schema-dir, org-odt-styles-dir): Infer the
7473         correct directories without requiring other variables.
7475         * org-loaddefs.el: New file.
7477         * org.el ("org-loaddefs.el"): Don't throw an error if the file
7478         cannot be fund.
7479         (org-version): Use org-loaddefs.el instead of org-install.el.
7481         * org.el: Don't dynamically autoload already autoloaded
7482         functions.
7483         (org-clock-update-time-maybe): Move to org-clock.el.
7485         * org-exp.el (org-insert-export-options-template):
7486         Remove autoload cookie.
7488         * org-clock.el (org-resolve-clocks, org-clock-in)
7489         (org-clock-out, org-clock-cancel, org-clock-goto)
7490         (org-clock-sum, org-clock-display, org-clock-report)
7491         (org-dblock-write:clocktable): Add autoload cookie.
7492         (org-clock-update-time-maybe): Move from org.el.
7494         * org-beamer.el (org-beamer-sectioning, org-beamer-mode): Ditto.
7496         * org-ascii.el (org-export-ascii-preprocess): Ditto.
7498         * org-archive.el (org-archive-subtree)
7499         (org-archive-to-archive-sibling, org-toggle-archive-tag):
7500         Add autoload cookie.
7502         * org-colview.el (org-columns, org-dblock-write:columnview)
7503         (org-insert-columns-dblock, org-agenda-columns): Ditto.
7505         * org-table.el (org-table-create-with-table.el)
7506         (org-table-create-or-convert-from-region, org-table-create)
7507         (org-table-convert-region, org-table-import)
7508         (org-table-export, org-table-align)
7509         (org-table-justify-field-maybe, org-table-next-field)
7510         (org-table-previous-field, org-table-next-row)
7511         (org-table-copy-down, org-table-field-info)
7512         (org-table-current-dline, org-table-goto-column)
7513         (org-table-insert-column, org-table-delete-column)
7514         (org-table-move-column-right, org-table-move-column-left)
7515         (org-table-move-column, org-table-move-row-down)
7516         (org-table-move-row-up, org-table-move-row)
7517         (org-table-insert-row, org-table-insert-hline)
7518         (org-table-hline-and-move, org-table-kill-row)
7519         (org-table-sort-lines, org-table-cut-region)
7520         (org-table-copy-region, org-table-paste-rectangle)
7521         (org-table-convert, org-table-wrap-region)
7522         (org-table-edit-field, org-table-sum)
7523         (org-table-get-stored-formulas)
7524         (org-table-maybe-eval-formula)
7525         (org-table-rotate-recalc-marks)
7526         (org-table-maybe-recalculate-line, org-table-eval-formula)
7527         (org-table-recalculate, org-table-iterate)
7528         (org-table-edit-formulas)
7529         (org-table-toggle-coordinate-overlays)
7530         (org-table-toggle-formula-debugger, orgtbl-to-generic)
7531         (orgtbl-to-tsv, orgtbl-to-csv, orgtbl-to-latex)
7532         (orgtbl-to-html, orgtbl-to-texinfo, orgtbl-to-orgtbl): Ditto.
7534         * org.el (turn-on-orgtbl): Move here from org-table.el.
7535         (org-clock-persistence-insinuate): Move here from org-clock.el.
7536         (org-update-all-dblocks, org-map-entries)
7537         (org-require-autoloaded-modules, org-forward-element)
7538         (org-backward-element, org-up-element)
7539         (org-element-greater-elements, org-drag-element-backward)
7540         (org-drag-element-forward, org-mark-element)
7541         (org-narrow-to-element, org-transpose-element)
7542         (org-unindent-buffer): Don't autoload.
7544         * org-clock.el (org-clock-get-clocktable): Rename from
7545         `org-get-clocktable'.
7546         (org-clock-persistence-insinuate): Move to org.el.
7548         * org-capture.el: Do no set `generated-autoload-file' locally.
7549         Minor code clean up.
7551         * org-agenda.el (org-agenda-list):
7552         Use `org-clock-get-clocktable'.  Do no set
7553         `generated-autoload-file' locally.
7555         * org-table.el (org-table-iterate-buffer-tables):
7556         Minor reformatting.
7557         (turn-on-orgtbl): Move to org.el.
7559         * org-html.el (org-export-htmlize-generate-css): Don't autoload.
7561         * org-timer.el (org-timer-pause-or-continue, org-timer-stop):
7562         Ditto.
7564         * ob-tangle.el (org-babel-tangle-lang-exts): Ditto.
7566         * ob-lob.el (org-babel-lob-ingest): Ditto.
7568         * org-id.el (org-id-copy)
7569         (org-id-get-with-outline-path-completion)
7570         (org-id-get-with-outline-drilling): Ditto.
7572         * org-lparse.el (org-lparse-and-open, org-lparse-batch)
7573         (org-lparse-to-buffer, org-replace-region-by)
7574         (org-lparse-region): Ditto.
7576         * org-mobile.el (org-mobile-create-sumo-agenda): Ditto.
7578         * org.el (org-cycle): Fix misplaced autoload cookie.
7580         * org-agenda.el (org-agenda-get-timestamps): Check if the item
7581         is an habit when formatting it with `org-agenda-format-item'.
7582         (org-agenda-get-blocks): Fix bug: don't assume the item is an
7583         habit when formatting with `org-agenda-format-item'.
7585         * org.el (org-calendar-agenda-action-key): Delete an option.
7586         (org-mode-map): Delete its keybinding.
7587         (org-agenda-action-marker, org-mark-entry-for-agenda-action):
7588         Delete.
7590         * org-agenda.el (org-agenda-diary-entry): Don't prevent from
7591         being used outside of Org agendas, as it can be used in
7592         calendar buffers too.
7594 2012-10-26  Caio Tiago Oliveira  <asrail@gmail.com>  (tiny change)
7596         * ob-scala.el (org-babel-scala-wrapper-method): Use a Scala
7597         block enclosing the submitted code.
7599 2012-10-26  Myles English  <mylesenglish@gmail.com>  (tiny change)
7601         * org-clock.el (org-clock-in): Move the call to
7602         org-clock-in-prepare-hook until the task's properties
7603         can be accessed.
7605 2012-10-26  Nicolas Goaziou  <n.goaziou@gmail.com>
7607         * org.el (org-auto-fill-function): Make sure `adaptive-fill-mode'
7608         mode is nil when pre-computed `fill-prefix' is the empty string.
7609         Otherwise filling functions from fill.el think it has to be computed
7610         again and overwrite it.
7612         * org.el: Make `org-closest-date' aware of hours repeaters.
7614         * org.el (org-end-of-line): Do not call `end-of-visual-line' when
7615         moving to the end of line.  Also improve behavior on elements that
7616         can be hidden.
7618         * org.el (org-sparse-tree): Allow to call `org-show-todo-tree'
7619         with an argument.
7621         * org-element.el (org-element--get-next-object-candidates):
7622         Fix parsing of objects of the same type in a single paragraph.
7624         * org-element.el (org-element-sub/superscript-successor):
7625         Fix parsing of sub/superscript at beginning of item.
7626         (org-element-latex-or-entity-successor): Fix parsing of latex
7627         fragments at beginning of item.
7629         * org-agenda.el (org-agenda-later): Fix function when span is
7630         a number and an argument was provided.  Also fix typo in docstring.
7632         * org.el (org-read-date-analyze): Fix analyzing for dates like
7633         "29.03 16:40".
7635         * org-element.el (org-element-center-block-parser)
7636         (org-element-drawer-parser, org-element-footnote-definition-parser)
7637         (org-element-inlinetask-parser, org-element-plain-list-parser)
7638         (org-element-quote-block-parser, org-element-special-block-parser)
7639         (org-element-babel-call-parser, org-element-clock-parser)
7640         (org-element-comment-parser, org-element-comment-block-parser)
7641         (org-element-example-block-parser, org-element-export-block-parser)
7642         (org-element-fixed-width-parser, org-element-horizontal-rule-parser)
7643         (org-element-keyword-parser, org-element-latex-environment-parser)
7644         (org-element-paragraph-parser, org-element-planning-parser)
7645         (org-element-property-drawer-parser, org-element-src-block-parser)
7646         (org-element-table-parser)
7647         (org-element-verse-block-parserorg-element-dynamic-block-parser):
7648         Make sure element never ends at the end of a blank non-empty line.
7650         * org-element.el (org-element-context)
7651         (org-element--get-next-object-candidates): Fix `org-element-context'.
7652         In particular, the restrictions for an object may be different from
7653         those of its container (i.e. table rows and table cells).
7655         * org-element.el (org-element-example-block-parser)
7656         (org-element-src-block-parser): Store value of example-blocks and
7657         src-blocks unescaped.
7658         (org-element-example-block-interpreter)
7659         (org-element-src-block-interpreter): Escape value again when storing
7660         it.
7662         * org-src.el (org-escape-code-in-string)
7663         (org-unescape-code-in-string, org-escape-code-in-region)
7664         (org-unescape-code-in-region): New functions.
7665         (org-edit-src-code, org-edit-src-exit): Use new functions.
7667         * org.el (org-strip-protective-commas): Remove function.
7669         * org-exp.el (org-export-select-backend-specific-text): Use new
7670         function.
7672         * ob.el (org-babel-parse-src-block-match)
7673         (org-babel-parse-inline-src-block-match, org-babel-insert-result):
7674         Always escape produced blocks, independently on the language of the
7675         block, if any.  Use new functions.
7677         * org-element.el (org-element-paragraph-parser): Fix regexp
7678         starting a block.
7680         * org-element.el (org-element-center-block-parser):
7681         (org-element-drawer-parser, org-element-dynamic-block-parser)
7682         (org-element-example-block-parser, org-element-export-block-parser)
7683         (org-element-latex-environment-parser, org-element-paragraph-parser)
7684         (org-element-property-drawer-parser, org-element-src-block-parser)
7685         (org-element-verse-block-parser): Use stricter regexps for boundaries
7686         of elements.
7688 2012-10-26  Toby S. Cubitt  <tsc25@cantab.net>
7690         * org-agenda.el (org-agenda-get-sexps): Reset `extra' to nil at
7691         beginning of re-search-forward loop, otherwise next iteration picks up
7692         `extra' value from previous entry.
7694 2012-09-30  Abdó Roig-Maranges  <abdo.roig@gmail.com>
7696         * org-html.el (org-export-html-preprocess)
7697         (org-export-html-format-image):
7698         Use `org-latex-preview-ltxpng-directory'.
7700         * org-odt.el (org-export-odt-do-preprocess-latex-fragments):
7701         Ditto.
7703         * org.el (org-latex-preview-ltxpng-directory): New option.
7704         (org-preview-latex-fragment): Store LaTeX preview images in
7705         `org-latex-preview-ltxpng-directory'.
7707 2012-09-30  Achim Gratz  <Stromeko@Stromeko.DE>
7709         * ob-R.el (org-babel-R-initiate-session): Protect against use of
7710         unbound variable `ess-ask-for-ess-directory´.  The default for this
7711         variable is true, so act accordingly if it is found unbound.
7713         * ob-R.el: Remove initialization with `nil´ from
7714         `ess-ask-for-ess-directory´ and `ess-local-process-name´.
7715         Remove second declaration for `ess-local-process-name´.
7717         * org-gnus.el: Add a missing require for gnus-util.
7719         * org-compat.el: Rename utils to make throughout.
7721         * org.el: Move check for outline-mode-keymap after (require
7722         'outline).
7724         * org-element.el: New file.  Do not (require 'org).
7726         * org-agenda.el: Remove duplicate requires.
7728         * org.el (org-mode-map): Add keybindings to
7729         `org-element-transpose' and `org-narrow-to-element'.
7730         (org-metaup): Fall back on `org-element-drag-backward'.
7731         (org-metadown): Fall back on `org-element-drag-forward'.
7732         Also move chunks of declarations and require statements to get rid of
7733         compiler warnings.
7735         * org-exp-blocks.el (org): Don't require org.  Add declarations.
7737         * org-clock.el (org): Don't require org.
7739         * ob-exp.el (org-list-forbidden-blocks): Add declarations.
7741         * ob.el (org-babel-exeext): New defconst to hold extension for
7742         executables or nil if none.  Should be ".exe" for both Windows and
7743         Cygwin.
7745         * ob-C.el (org-babel-C-execute): Use org-babel-exeext when
7746         constructing the target file name for the compiled executable.
7748         * ob-fortran.el (org-babel-execute:fortran): Add org-babel-exeext
7749         when constructing the target file name for the compiled
7750         executable.
7752         * org-version.el: New file.
7754         * org-compat.el (org-check-version): New macro.  Check if
7755         org-version.el exists and provide autoloads to that.  Otherwise
7756         check if org-fixup.el exists and use it to provide definitions.
7757         Finally if nothing worked, complain about a botched installation
7758         and provide fallback definitions.
7760         * org.el: Use org-check-version.
7762         * org.el: Fix a subtle error resulting in version functions
7763         sometimes not being defined and byte-compiling failing.
7764         Always compile in fallback definitions into org.elc -- org-fixup either
7765         provides re-definitions at compile-time or checks org-version.el
7766         and then the git work tree when run uncompiled.  So the fallback
7767         definitions will only come into effect when org-fixup is not
7768         available.
7770         * org.el (org-version): Make org-version more robust, e.g. when
7771         byte-compiling single files with 'make compile-dirty'.
7773         * org.el (org-reload): Revert an undesirable change in org-reload.
7774         Do not prepend org-dir to babel-files, which prevents the files
7775         from being found in load-path.
7777         * org.el (org-version): Add optional parameters 'full and 'message
7778         to optionally return the full version string and echo to message
7779         area in non-interactive calls.
7781         * org.el (org-submit-bug-report): Add optional parameter 'full to
7782         call of (org-version) so that the bug report has all version
7783         information.
7785         * org.el (org-reload): Simplify file-re (orgtbl-*.el files do not
7786         exist anymore).  Keep org-*.el at the end of the files list.
7787         Explicitly load org-version.el (since it doesn't provide feature
7788         'org-version) at the very end, but ignore errors when it doesn't
7789         exist.  Add parameters 'full and 'message to the call of
7790         (org-version) so that after reload the full version information is
7791         displayed in the message area again.
7793         * org-agenda.el: Replace with-no-warnings with org-no-warnings
7794         (defined in org-macs.el).
7796         * org-bbdb.el: Replace with-no-warnings with org-no-warnings
7797         (defined in org-macs.el).
7799         * org-clock.el: Replace with-no-warnings with org-no-warnings
7800         (defined in org-macs.el).
7802         * org.el: Replace with-no-warnings with org-no-warnings (defined
7803         in org-macs.el).
7805         * org.el: Add with-not-warnings around call of (org-fixup).
7807         * org-compat.el (org-find-library-dir):
7808         Rename org-find-library-name (misleading) and implement with a function
7809         that exists identically in Emacs/XEmacs.
7811         * org-exp-blocks.el: Change calls to org-find-library-dir.
7813         * org.el: change calls to org-find-library-dir.  Make require for
7814         noutline fail silently because it is missing from XEmacs.
7816         * org.el (org-version): Use functions instead of global variables
7817         to get the version strings and remove the defvaralias to
7818         org-version.  Warn when encountering a mixed installation (org and
7819         org-install.el should be found in the same directory).
7821         * org.el: Add with-no-warning to defvar for two unprefixed global
7822         variables from calendar.el (there's nothing else we can do inside
7823         org until it is fixed in calendar.el).
7825         * org.el: Require find-func and remove declare-function for
7826         find-library-name, otherwise autoloaded org-version doesn't show
7827         all info correctly.
7829         * org.el (org-version): Show the full path to org-install.el in
7830         the version string to avoid confusion if multiple installations
7831         exist or a previously loaded org-install.el has already defined a
7832         version string that is now out of date.
7834         * org.el (org-version): Remove determination of version
7835         information, show "N/A" if the information is not provided via
7836         org-install.el.
7838         * org.el (org-git-version): Placeholder for recording the Git
7839         version of org during install
7841         * org.el (org-version): Initialize local git-version with
7842         placeholder and fall through using it when org is not installed in
7843         a Git repository
7845 2012-09-30  Adam Spiers  <orgmode@adamspiers.org>  (tiny change)
7847         * org-html.el: Add hyperlink to http://orgmode.org/ from export
7848         footer.
7850         * org-clock.el (org-clock-modify-effort-estimate): Display a
7851         message when no clock is currently active.
7853 2012-09-30  Andrew Hyatt  <ahyatt@gmail.com>  (tiny change)
7855         * org-archive.el (org-archive-subtree): Allow archiving to a
7856         datetree.
7858         * org.el (org-archive-location): Ditto.
7860 2012-09-30  Bastien Guerry  <bzg@gnu.org>
7862         * ob-io.el: New file.
7864         * ob-scala.el: New file.
7866         * org.el (org-url-hexify-p, org-doi-server-url)
7867         (org-latex-preview-ltxpng-directory, org-custom-properties)
7868         (org-sparse-tree-default-date-type): Add :version "24.3".
7870         * org-agenda.el (org-agenda-sticky)
7871         (org-agenda-custom-commands-contexts): Ditto.
7873         * org-capture.el (org-capture-bookmark)
7874         (org-capture-templates-contexts) (org-capture-use-agenda-date):
7875         Ditto.
7877         * org-latex.el (org-export-latex-hyperref-options-format)
7878         (org-export-latex-link-with-unknown-path-format): Ditto.
7880         * org-id.el (org-id-link-to-org-use-id): Ditto.
7882         * org-datetree.el (org-datetree-add-timestamp): Ditto.
7884         * org.el (org-make-link-description-function): Enhance docstring.
7885         (org-insert-link): Fall back on interactive prompt when
7886         `org-make-link-description-function' fails.
7888         * org-agenda.el (org-todo-list): Fix redoing of todo agenda when
7889         `org-agenda-sticky' is non-nil.
7891         * org-agenda.el (org-agenda-quit): Delete last indirect buffer.
7892         (org-agenda-pre-follow-window-conf): New variable.
7893         (org-agenda-tree-to-indirect-buffer): Fix bug: don't split agenda
7894         window when there an indirect buffer is already displayed.
7896         * org-agenda.el (org-agenda-manipulate-query)
7897         (org-agenda-goto-date, org-agenda-goto-today)
7898         (org-agenda-find-same-or-today-or-agenda, )
7899         (org-agenda-later, org-agenda-change-time-span)
7900         (org-agenda-change-all-lines)
7901         (org-agenda-execute-calendar-command)
7902         (org-agenda-goto-calendar, org-agenda-convert-date): Make sure to
7903         get a property from (1- (point-max)), not (point-max)).
7905         * ob-dot.el (org-babel-execute:dot): Throw an error when there is
7906         no :file parameter.
7908         * org-table.el (org-table-eval-formula): Convert time-stamps to
7909         inactive time-stamp so that Calc can handle them correctly.
7911         * org-table.el (org-table-fix-formulas): Warn with a message when
7912         formulas have been updated.
7914         * org-publish.el (org-publish-cache-ctime-of-src): Delete the
7915         base-dir argument and use (file-name-directory file) to get the
7916         file's directory.
7917         (org-publish-update-timestamp)
7918         (org-publish-cache-file-needs-publishing):
7919         Call `org-publish-cache-ctime-of-src' with only one argument.
7921         * org.el (org-follow-timestamp-link): Fix bug when using sticky
7922         agenda.  Add a docstring.
7924         * org-agenda.el (org-agenda-sticky): Don't use a function to set.
7925         Add a :version string.
7927         * org.el (org-priority): Use a new argument to show priority
7928         instead of setting it.
7929         (org-show-priority): New function to show priority both in normal
7930         Org buffers and in Org Agenda buffers.
7931         (org-speed-commands-default): Use "," as a speed command for
7932         setting priority.
7934         * org-agenda.el (org-agenda-mode-map): Bind `org-agenda-priority'
7935         to `C-c ,' as it was before.
7936         (org-agenda-show-priority): Delete.
7937         (org-agenda-priority): Use a new argument to show priority instead
7938         of setting it.
7940         * org.el (org-font-lock-hook, org-set-font-lock-defaults): Add a
7941         docstring.
7942         (org-display-inline-remove-overlay): Rename from
7943         `org-display-inline-modification-hook'.
7944         (org-speed-command-activate): Rename from
7945         `org-speed-command-default-hook'.
7946         (org-babel-speed-command-hook): Rename from
7947         `org-babel-speed-command-activate'.
7949         * org-agenda.el (org-agenda-update-agenda-type): Rename from
7950         `org-agenda-post-command-hook'.
7951         (org-agenda-mode): Use the new name.
7952         (org-agenda-post-command-hook): Define as obsolete function.
7954         * org-lparse.el (org-lparse): Temporarily activate the hooks
7955         needed for the ODT conversion.
7956         (org-lparse-preprocess-after-blockquote): Rename from
7957         `org-lparse-preprocess-after-blockquote-hook'.
7958         (org-lparse-strip-experimental-blocks-maybe): Rename from
7959         `org-lparse-strip-experimental-blocks-maybe'.
7960         (org-lparse-preprocess-after-blockquote-hook)
7961         (org-lparse-strip-experimental-blocks-maybe-hook): Define as
7962         obsolete functions.
7964         * ob.el (org-babel-insert-result): Comma-escape results inserted
7965         with ":results org".
7967         * org-src.el (org-edit-src-code, org-edit-src-exit): Fix bug about
7968         saving the source editing window with the default value for
7969         `org-src-window-setup' (i.e. 'reorganize-frame).
7971         * org-src.el (org-src-font-lock-fontify-block): Fix bug: don't
7972         fontify the last character.
7974         * org.el (org-open-at-point): Don't follow timestamp within
7975         bracket links.
7977         * org-capture.el (org-capture-templates): Fix typo in docstring.
7979         * org-agenda.el (org-agenda-skip): Skip information retrieved from
7980         a source block.
7982         * ob.el (org-babel-common-header-args-w-values)
7983         (org-babel-insert-result): Reintroduce ":results org" but using
7984         "#+BEGIN_SRC org", not "#+BEGIN_ORG".
7986         * ob.el (org-babel-common-header-args-w-values): Remove "org" the
7987         list of predefined values for the ":results" parameter.
7989         * ob.el (org-babel-insert-result): Remove support for ":results
7990         org".
7992         * ob.el (org-babel-common-header-args-w-values)
7993         (org-babel-insert-result): Deprecate ":results wrap" in favor of
7994         ":results drawer".
7996         * org-crypt.el (org-at-encrypted-entry-p): Fix bug when the check
7997         happens before the first headline.
7999         * org-capture.el (org-at-encrypted-entry-p)
8000         (org-encrypt-entry, org-decrypt-entry): Declare.
8001         (org-capture-set-target-location): Check whether `org-crypt' has
8002         been loaded.
8004         * org-agenda.el (org-agenda-todo-custom-ignore-p): Fix typo in
8005         docstring.
8007         * org-capture.el (org-capture-finalize): Maybe re-encrypt the
8008         target headline if it was decrypted.
8009         (org-capture-set-target-location): Maybe decrypt the target
8010         headline.
8012         * org-crypt.el (org-at-encrypted-entry-p): New function.
8014         * org.el (org-options-keywords): Add "STYLE:".
8016         * org-agenda.el (org-agenda-ndays): Don't make an alias, as
8017         `org-agenda-span' is defined separately.
8019         * org.el (org-in-subtree-not-table-p): New utility function for
8020         building the menu.
8021         (org-org-menu): Add an item for refiling.  Check more contexts
8022         when activating items.
8023         (org-tree-to-indirect-buffer): Use `org-up-heading-safe'.
8025         * org-agenda.el (org-agenda-tree-to-indirect-buffer)
8026         (org-agenda-do-tree-to-indirect-buffer): Use argument `arg'.
8028         * org-capture.el (org-capture-set-target-location): Set a correct
8029         time value when storing a note in a datetree and prompting the
8030         user for a date.
8032         * org-capture.el (org-capture-mode): Fix bug: don't run the mode's
8033         hook twice.
8035         * org-agenda.el (org-agenda-menu-two-column)
8036         (org-finalize-agenda-hook, org-agenda-ndays):
8037         Use `define-obsolete-variable-alias' instead of
8038         `make-obsolete-variable'.
8040         * org.el (org-link-to-org-use-id): Move to org-id.el.
8042         * org-id.el (org-id-link-to-org-use-id): Rename from
8043         `org-link-to-org-use-id'.  Use `nil' as the default value.
8044         (org-link-to-org-use-id): Alias and define as obsolete.
8046         * org-agenda.el (org-search-view, org-agenda-get-todos)
8047         (org-agenda-get-timestamps, org-agenda-get-blocks): Use the dotime
8048         parameter of `org-agenda-format-item' so that 'time-up and
8049         'time-down agenda sorting strategies are handled correctly.
8051         * org-capture.el (org-capture-fill-template): Fix checking of
8052         protected template entries.
8054         * org.el (org-cycle-global-at-bob): Fix typo in docstring.
8056         * org.el (org-insert-drawer): Deactivate the mark before trying to
8057         indent the :END: of the drawer.
8059         * org-agenda.el (org-agenda-export-html-style): Default to nil as
8060         any string value will replace the htmlize style.
8062         * org.el (org-cycle-hook): Fix tiny typo in docstring.
8064         * org.el (org-time-string-to-time)
8065         (org-time-string-to-seconds, org-end-of-subtree): Add a dosctring.
8067         * org-freemind.el (org-freemind-write-node): Enhance links
8068         conversion in nodes.
8070         * org-freemind.el (org-freemind-write-node): Convert links in
8071         nodes.
8073         * org.el (org-link-to-org-use-id, org-directory)
8074         (org-default-notes-file, org-reverse-note-order)
8075         (org-extend-today-until, org-finish-function)
8076         (org-store-link-functions): Use "capture" instead of "remember" in
8077         docstrings.  Also use the `org-capture' group when it makes sense.
8079         * org-agenda.el (org-agenda-tree-to-indirect-buffer): Find the
8080         correct agenda buffer.  Don't split the agenda window when the
8081         indirect buffer is displayed in another frame.
8083         * org.el (org-mode): Try to set the org-hide face correctly.
8085         * org-exp.el (org-export): Set the mark correctly when exporting a
8086         subtree.
8088         * org-agenda.el (org-agenda-get-restriction-and-command): Fix the
8089         display of the number of commands for block agendas.
8091         * org-agenda.el (org-agenda-before-write-hook)
8092         (org-agenda-add-entry-text-maxlines): Enhance phrasing.
8093         (org-agenda-finalize-hook, org-agenda-mode-hook): Tell that the
8094         buffer is writable when the hook is called.
8095         (org-agenda-finalize): Allow org-agenda-finalize-hook to modify
8096         the buffer.
8098         * org-agenda.el (org-habit-show-all-today): Only use defvar to
8099         silent the byte-compiler.
8100         (org-agenda-get-scheduled): Check whether some org-habit.el
8101         options have been defined.
8103         * org-capture.el (org-capture-entry): New variable.
8104         (org-capture-string, org-capture): Use it to possibly skip the
8105         interactive prompt for a capture template.
8107         * org.el (org-activate-plain-links): Don't try to check if we are
8108         in a bracket link already.
8110         * org.el (org-read-date-analyze): Fix bug introduced in commit
8111         cc5f9f: adding a time should not prevent relative answers to be
8112         parsed correctly.
8114         * org-agenda.el (org-agenda-bulk-action): Always read the date
8115         through `org-read-date'.  When possible, use the date at point as
8116         the default date.
8118         * org-agenda.el (org-agenda-bulk-action): Fix bug when
8119         bulk-shifting timestamps.
8121         * org.el (org-version): New constant.
8123         * org-compat.el (org-random): New compatibility function.
8125         * org-id.el (org-id-uuid): Use it.
8127         * org-capture.el (org-capture-use-agenda-date): New option.
8128         (org-capture): Use it.
8130         * org-agenda.el (org-agenda-capture): New command.
8131         (org-agenda-mode-map): Bind it to `k'.
8132         (org-agenda-menu): Add it to the menu.
8134         * org-capture.el (org-capture): Update docstring.
8136         * org-capture.el (org-capture): When called from an agenda buffer,
8137         use the cursor date at the default date.
8139         * org-agenda.el (org-agenda-bulk-action): Use the let-bound
8140         `entries' instead the variable.
8142         * org-agenda.el (org-agenda-bulk-action): Fix bug: don't remove
8143         persistent marks too early.
8145         * org-agenda.el (org-agenda-bulk-action): Possibly use the day at
8146         point to reset the scheduled or deadline cookie.  On date headers,
8147         use it without prompting the user.  On an item, use the item's
8148         date as the default prompt for `org-read-date'.
8150         * org.el (org-read-date): Docstring fix.
8152         * org-agenda.el (org-agenda-bulk-action): Reorder possible actions
8153         in the message.
8155         * org-agenda.el (org-agenda-action, org-agenda-do-action): Delete.
8156         (org-agenda-mode-map): Delete related keys.
8158         * org-agenda.el (org-agenda-menu): Fix a keybinding.
8160         * org-colview.el (org-columns-goto-top-level): Correctly move the
8161         marker `org-columns-top-level-marker'.
8162         (org-agenda-columns): Don't set
8163         `org-agenda-overriding-columns-format' as a buffer variable, as we
8164         only need it dynamically.
8165         (org-agenda-colview-summarize): Fix a bug in returning the match
8166         string.
8168         * org-agenda.el (org-agenda-span-to-ndays): Make the second
8169         argument `starting-day' optional.
8170         (org-agenda-goto-date): Keep parameters of custom agendas.
8172         * org-agenda.el (org-agenda-list): Allow setting the agenda buffer
8173         name through a temporary variable.
8174         (org-agenda-buffer-tmp-name): New variable to temporary store the
8175         agenda buffer name.
8177         * org-agenda.el (org-agenda-goto-date): Fix behavior when using
8178         sticky agendas.
8180         * org-agenda.el (org-diary): Don't check whether there is an
8181         agenda buffer when trying to compile the prefix format.
8182         (org-compile-prefix-format): Check if there is an agenda buffer.
8183         If not, use the current buffer.
8185         * org-agenda.el (org-agenda-get-day-entries): Set the agenda
8186         buffer inconditionnally.
8188         * ob.el (org-babel-named-src-block-regexp-for-name): Generate a
8189         more general regexp.
8191         * ob.el (org-babel-where-is-src-block-head): Find a src block head
8192         correctly when #+header(s) is before #+name.
8194         * org-agenda.el (org-agenda-finalize-hook)
8195         (org-agenda-finalize, org-agenda-finalize-entries): Rename from
8196         org-finalize-agenda-*.
8197         (org-agenda-run-series, org-agenda-finalize, org-timeline)
8198         (org-agenda-list, org-search-view, org-todo-list)
8199         (org-tags-view, org-diary, org-agenda-finalize-entries)
8200         (org-agenda-change-all-lines): Use the new names.
8202         * org-agenda.el (org-agenda-local-vars):
8203         Remove ̀org-agenda-last-arguments' from the list of local variables.
8204         (org-agenda-mode-map): `g' does the same than `r' in buffers with
8205         only one agenda view, but its behavior differs when there are
8206         several views.  In manually appended agendas (with `A'), `g'
8207         displays only the agenda under the point.  With multiple agenda
8208         blocks, `g' reinitializes the view by discarding any temporary
8209         changes (e.g. with ̀f' or `w'), while ̀r' keeps those temporary
8210         changes for the agenda view under the point.
8211         (org-agenda-run-series, org-agenda-redo): Implement the above
8212         changes.
8213         (org-agenda-mark-header-line): Don't set useless properties.
8214         (org-agenda-list, org-todo-only, org-search-view)
8215         (org-todo-list, org-tags-view, org-agenda-list-stuck-projects)
8216         (org-agenda-manipulate-query, org-agenda-goto-today)
8217         (org-agenda-later, org-agenda-change-time-span): Use text
8218         properties for storing the last command and the last arguments for
8219         each agenda block.
8220         (org-unhighlight-once): Delete.
8222         * org-agenda.el (org-agenda-append-agenda): Fit agenda window to
8223         buffer.
8225         * org-agenda.el (org-agenda-append-agenda): Bugfix: correctly
8226         check whether we are in org-agenda-mode.
8228         * org-agenda.el (org-agenda-pre-window-conf): Rename from
8229         `org-pre-agenda-window-conf'.
8230         (org-agenda-local-vars, org-agenda-prepare-window)
8231         (org-agenda-Quit, org-agenda-quit): Use the new name.
8233         * org-agenda.el (org-keys, org-match): New variable, dynamically
8234         scoped in `org-agenda'.
8235         (org-agenda, org-agenda-list, org-search-view, org-todo-list)
8236         (org-tags-view): Use the new variables.
8237         (org-batch-store-agenda-views): Let-bind `match'.
8239         * org-agenda.el (org-search-view, org-todo-list)
8240         (org-tags-view): Do not let `org-agenda-sticky' prevent the use of
8241         these functions programmatically.  Also use the sticky agenda
8242         function correctly.
8244         * org-agenda.el (org-agenda): Set `org-agenda-buffer-name'
8245         correctly with sticky agendas and non-custom commands.
8247         * org-agenda.el (org-agenda-fit-window-to-buffer): Rename from
8248         `org-fit-agenda-window'.
8249         (org-agenda-run-series, org-agenda-prepare, org-agenda-list)
8250         (org-search-view, org-todo-list, org-tags-view): Use the new name.
8252         * org-agenda.el (org-agenda-prepare): Let `throw' display an
8253         error.
8255         * org-agenda.el (org-agenda-list): Fix bug: don't throw an error
8256         when called from programs as (org-agenda-list).
8258         * org-agenda.el (org-todo-list): Make arg optional.
8260         * org.el (org-agenda-prepare-buffers): Rename from
8261         `org-prepare-agenda-buffers'.
8262         (org-match-sparse-tree, org-map-entries): Use the new names.
8264         * org-agenda.el (org-agenda-prepare-window): Rename from
8265         `org-prepare-agenda-window'.
8266         (org-agenda-prepare): Rename from `org-prepare-agenda'.
8267         (org-agenda-run-series, org-agenda-prepare, org-timeline)
8268         (org-agenda-list, org-search-view, org-todo-list)
8269         (org-tags-view, org-agenda-list-stuck-projects, org-diary)
8270         (org-agenda-to-appt): Use the new names.
8272         * org-mobile.el (org-mobile-create-index-file): Ditto.
8274         * org-icalendar.el (org-export-icalendar): Ditto.
8276         * org-clock.el (org-dblock-write:clocktable)
8277         (org-dblock-write:clocktable): Ditto.
8279         * org-agenda.el (org-agenda): In sticky agendas, use the current
8280         command's match to set the buffer name.  This gives more
8281         information to the user and allows to distinguish various agendas
8282         triggered by the same key.
8283         (org-batch-store-agenda-views): Handle the new sticky agenda
8284         buffer name.
8286         * org-agenda.el (org-agenda)
8287         (org-agenda-get-restriction-and-command): Use `S' as a key for
8288         searching words in TODO-only entries.
8290         * org-agenda.el (org-prepare-agenda): Fit agenda window when
8291         displaying a sticky agenda.
8293         * org-table.el (org-table-number-regexp): Allow the user to set it
8294         to a new regexp, which allows commas as decimal mark.  The default
8295         is to not use this setting, but the one before commit 7ff8c1,
8296         which has ben reverted.
8298         * org-agenda.el (org-agenda-overriding-cmd)
8299         (org-agenda-multi-current-cmd)
8300         (org-agenda-multi-overriding-arguments): New variables.
8301         (org-agenda-run-series): `org-agenda-overriding-arguments'
8302         defaults to the last agenda block arguments, so don't use it
8303         globally.
8304         (org-agenda-mark-header-line): Add properties needed so that
8305         `org-agenda-overriding-arguments', `org-agenda-current-span' and
8306         `org-agenda-last-arguments' can be set to their correct contextual
8307         value.
8308         (org-agenda-multi-back-to-pos): New variable.
8309         (org-agenda-later): Retrieve `org-agenda-current-span' and
8310         `org-agenda-overriding-arguments' from text properties.
8311         Also handle numeric span.
8312         (org-agenda-later, org-agenda-change-time-span):
8313         Set `org-agenda-overriding-cmd' so that we to take overriding
8314         arguments into account for this command only.
8316         * org-agenda.el (org-agenda-kill, org-agenda-archive-with):
8317         Fix bug when called with a non-nil value of `org-agenda-stick'.
8319         * org-agenda.el (org-agenda-refile): Fix bug when refiling an
8320         entry from a sticky agenda.
8322         * org-agenda.el (org-prepare-agenda-window):
8323         Use `org-pre-agenda-window-conf' if already set.
8324         (org-agenda-Quit): Set `org-pre-agenda-window-conf' to nil when
8325         quitting.
8326         (org-agenda-quit): Ditto.
8328         * org-capture.el (org-capture-fill-template): Protect the text
8329         used for replacement from being further replaced.
8331         * org.el (org-contextualize-validate-key): Fix the check against a
8332         function.
8334         * org.el (org-contextualize-keys): Rename from
8335         `org-contextualize-agenda-or-capture'.  Fix normalization to
8336         handle empty key replacement string.
8337         (org-contextualize-validate-key): Rename from
8338         `org-contexts-validate'.  Allow checking against a custom
8339         function.
8341         * org-agenda.el (org-agenda-custom-commands-contexts): Update.
8342         (org-agenda): Use `org-contextualize-keys'.
8344         * org-capture.el (org-capture-templates-contexts): Ditto.
8346         * org.el (org-contextualize-agenda-or-capture):
8347         Normalize contexts.
8349         * org.el (org-contextualize-agenda-or-capture): Handle key
8350         replacement depending on the contexts.
8352         * org-capture.el (org-capture-templates-contexts): Allow to use
8353         the context as a way to replace one capture template by another
8354         one.
8356         * org-agenda.el (org-agenda-custom-commands-contexts): Allow to
8357         use the context as a way to replace one agenda custom command by
8358         another one.
8360         * org.el (org-contextualize-agenda-or-capture)
8361         (org-rule-validate): New functions, implement context filtering
8362         for agenda commands and capture templates.
8364         * org-agenda.el (org-agenda-custom-commands-contexts): New option.
8365         (org-agenda): Use it.
8367         * org-capture.el (org-capture-templates-contexts): New option.
8368         (org-capture-select-template): Use it.
8370         * org.el (org-beginning-of-defun, org-end-of-defun): Delete.
8371         (org-mode): Set `beginning-of-defun-function' and
8372         `end-of-defun-function' directly.
8374         * org.el (org-insert-link): Fix bug: include links abbreviations
8375         when completing.
8377         * org-icalendar.el (org-icalendar-print-entries): Fix bug: when
8378         `org-icalendar-use-plain-timestamp' is nil, scheduled and deadline
8379         items should not be ignored.
8381         * org.el (org-ds-keyword-length, org-make-tags-matcher):
8382         Docstring clean-up.
8384         * org-freemind.el (org-freemind-convert-links-from-org): Replace
8385         literally to prevent errors when replacing with string containing
8386         backslashes.
8388         * org-pcomplete.el (org-thing-at-point): Allow to match (and then
8389         complete) a "thing" containing dashes.
8391         * org-table.el (org-table-toggle-coordinate-overlays):
8392         Better message when interactively toggling.
8394         * org-table.el (org-table-number-regexp): Update the docstring to
8395         show an example of a decimal number using the comma as a
8396         separation mark.
8398         * org-agenda.el (org-prepare-agenda): Minor code clean-up.
8399         (org-agenda-filter-by-category): Filtering must be turned off only
8400         when a category filter has been set and this filter is not empty.
8402         * org-agenda.el (org-search-view, org-agenda-get-todos)
8403         (org-agenda-get-timestamps, org-agenda-get-sexps)
8404         (org-agenda-get-progress, org-agenda-get-deadlines)
8405         (org-agenda-get-scheduled, org-agenda-get-blocks):
8406         Use `category-pos' instead of `org-category-pos'.
8408         * ob-fortran.el (org-babel-fortran-transform-list): Rename from
8409         `ob-fortran-transform-list'.
8410         (org-babel-fortran-var-to-fortran): Use the new function's name.
8412         * ob-calc.el (org-babel-calc-maybe-resolve-var): Rename from
8413         `ob-calc-maybe-resolve-var'.
8414         (org-babel-execute:calc): Use the new function's name.
8416         * org-jsinfo.el (org-infojs-template): Add a license.
8417         (org-infojs-handle-options): Replace all template elements.
8419         * org-html.el (org-export-html-scripts): Add a license.
8420         (org-export-html-mathjax-config): Replace all template elements.
8421         (org-export-html-mathjax-template): Add a license.
8422         (org-export-as-html): Minor code clean-up.
8424         * org.el (org-options-keywords): Add "#+MATHJAX" and
8425         "#+INFOJS_OPT" to the list of keywords for completion.
8427         * org.el (org-src-prevent-auto-filling): Remove unused and useless
8428         option.
8430         * org.el (org-element-at-point): Autoload.
8431         (org-element-up): Remove useless declaration.
8432         (org-fill-context-prefix, org-fill-paragraph)
8433         (org-mark-element, org-narrow-to-element)
8434         (org-transpose-element, org-unindent-buffer): Do not require
8435         org-element.
8437         * org.el (org-fill-paragraph): Require org-element.
8439         * org-agenda.el (org-agenda-persistent-marks): Minor docstring
8440         enhancement.
8442         * org.el (org-create-math-formula): Use the compatibility function
8443         `org-region-active-p'.
8445         * org-odt.el (org-export-as-odf): Ditto.
8447         * ob.el (org-babel-demarcate-block): Ditto.
8449         * org.el (org-mark-subtree): Maybe call `org-mark-element'
8450         interactively.
8451         (org-mark-element): Only mark further elements when called
8452         interactively.
8454         * org.el (org-mark-element, org-narrow-to-element)
8455         (org-transpose-element): Require org-element.
8457         * org-agenda.el (org-agenda-get-timestamps)
8458         (org-agenda-get-sexps, org-agenda-get-deadlines)
8459         (org-agenda-get-scheduled): Add the 'warntime as a text property,
8460         getting its value from the APPT_WARNTIME property.
8461         (org-agenda-to-appt): Use the 'warntime text property.
8463         * org-capture.el (org-capture-place-table-line): Fix bug.
8465         * org.el (org-activate-plain-links): Don't activate a plain link
8466         when it is part of a bracketed link, unless bracketed links are
8467         not enlisted in `org-activate-links'.
8468         (org-open-at-point): Don't consider the text immediately after a
8469         bracketed link is part of a plain link.
8471         * org.el (org-compute-latex-and-specials-regexp)
8472         (org-paste-subtree, org-sort-entries, org-store-link)
8473         (org-open-at-point, org-file-remote-p, org-add-log-setup)
8474         (org-set-tags-to, org-fast-tag-selection)
8475         (org-diary-sexp-entry): Ditto.
8477         * org-agenda.el (org-agenda-get-blocks, org-cmp-priority)
8478         (org-cmp-effort, org-cmp-todo-state, org-cmp-alpha)
8479         (org-cmp-tag, org-cmp-time): Remove useless (t nil) sexps at the
8480         end of (cond ...) constructs.
8482         * org-mobile.el (org-mobile-create-index-file): Ditto.
8484         * org-lparse.el (org-lparse-format-table-row): Ditto.
8486         * org-list.el (org-sort-list): Ditto.
8488         * org-id.el (org-id-get): Ditto.
8490         * org-html.el (org-export-html-preprocess): Ditto.
8492         * org-exp.el (org-default-export-plist)
8493         (org-table-clean-before-export): Ditto.
8495         * org.el (org-options-keywords): Add "TODO".
8496         (org-make-options-regexp): Make the hashtag mandatory for options
8497         and don't allow whitespaces between the hashtag and the plus sign.
8499         * org.el (org-refresh-category-properties)
8500         (org-find-dblock, org-dblock-start-re, org-dblock-end-re):
8501         Allow lowercase "#+category" and "#+begin:" dynamic blocks.
8503         * org.el (org-context): Use case-folding when trying to match
8504         clocktables and source blocks contexts.
8506         * org-clock.el (org-clock-put-overlay): Put the overlay on the
8507         whole headline, not only on the last character.  This fixes a bug
8508         with overlays on headlines ending with a bracketed link.
8510         * org-html.el (org-export-as-html): Make sure we always process a
8511         string.
8513         * org-exp.el (org-export-cleanup-toc-line): Always return a
8514         string.
8516         * org.el (org-fontify-meta-lines-and-blocks-1): Correctly handle
8517         metalines with #+results[...]:.
8519         * org-exp.el (org-export-handle-metalines): Rename from
8520         `org-export-handle-table-metalines'.  Now also handle source block
8521         metalines.
8522         (org-export-res/src-name-cleanup): Delete.
8523         (org-export-preprocess-string): Use `org-export-handle-metalines'.
8524         Don't use `org-export-res/src-name-cleanup' anymore.
8526         * org-html.el (org-format-org-table-html): Don't include the
8527         caption tag for empty captions in HTML export.  Keep it in the
8528         DocBook export so that it produces valid DocBook XML.
8530         * org.el (org-read-date-analyze): Allow both "8am Wed" and "Wed
8531         8am" to be parsed correctly with respect to possible values of
8532         `org-read-date-prefer-future'.
8533         (org-read-date-prefer-future): Update docstring to remove the
8534         restriction about inserting only the time.  The user can now
8535         insert the time and the day.
8537         * org-icalendar.el (org-icalendar-print-entries): Rename from
8538         `org-print-icalendar-entries'.
8539         (org-icalendar-start-file): Rename from
8540         `org-start-icalendar-file'.
8541         (org-icalendar-finish-file): Rename from
8542         `org-finish-icalendar-file'.
8543         (org-icalendar-ts-to-string): Rename from `org-ical-ts-to-string'.
8544         (org-export-icalendar): Use the correct functions.
8546         * ob-ref.el (org-babel-ref-index-list): Fix bug introduced by
8547         commit e85479.
8549         * org.el (org-fill-context-prefix): Require org-element.
8550         (org-timestamp-change): Fix bug by saving excursion when adjusting
8551         another clock.
8553         * org.el (org-read-date-prefer-future): Fix docstring formatting.
8554         (org-read-date-analyze): Fix the interpretation of
8555         `org-read-date-prefer-future'.
8557         * org-agenda.el (org-agenda-menu-two-column): Rename to
8558         `org-agenda-menu-two-columns'.
8560         * ob.el (org-babel-sha1-hash, org-babel-noweb-p):
8561         Replace `org-labels' by `let*'.
8563         * org-bibtex.el (org-bibtex-headline): Ditto.
8565         * org-compat.el: Delete `org-labels'.
8567         * ob.el (org-babel-get-src-block-info)
8568         (org-babel-check-src-block, org-babel-current-result-hash)
8569         (org-babel-parse-src-block-match, org-babel-read-link)
8570         (org-babel-insert-result, org-babel-clean-text-properties):
8571         Use ̀org-no-properties' instead of `org-babel-clean-text-properties'.
8572         (org-babel-clean-text-properties): Delete redundant function
8573         `org-babel-clean-text-properties'.
8575         * ob-tangle.el (org-babel-tangle-collect-blocks)
8576         (org-babel-tangle-comment-links): Ditto.
8578         * ob-table.el (sbe): Ditto.
8580         * ob-lob.el (org-babel-lob-get-info)
8581         (org-babel-lob-execute): Ditto.
8583         * ob-exp.el (org-babel-exp-non-block-elements): Ditto.
8585         * org-macs.el (org-no-properties): Allow a new parameter
8586         `restricted' to restrict the properties removal to those in
8587         `org-rm-props'.  The default is now to remove all properties.
8589         * org-compat.el (org-substring-no-properties): Remove unused
8590         defun.
8592         * org-remember.el (org-remember-apply-template): Remove redundant
8593         removal of text properties.
8594         (org-remember-apply-template): Use `org-no-properties'.
8596         * org-capture.el (org-capture-fill-template): Remove redundant
8597         removal of text properties.
8598         (org-capture-fill-template): Use `org-no-properties'.
8600         * org-gnus.el (org-gnus-open, org-gnus-follow-link):
8601         Use `org-no-properties'.
8603         * org-colview.el (org-columns-display-here): Ditto.
8605         * org-table.el (org-table-eval-formula): Ditto.
8607         * org.el (org-entry-properties): Ditto.
8609         * org-icalendar.el (org-print-icalendar-entries): Fix bug about
8610         handling `alarm-time'.
8612         * ob-R.el (org-babel-edit-prep:R): Don't set the session.
8614         * org.el (org-store-log-note): Only skip comments starting with "#
8615         " when storing a note.
8617         * org.el (org-custom-properties): New option.
8618         (org-custom-properties-overlays): New variable.
8619         (org-toggle-custom-properties-visibility): New command to toggle
8620         the visibility of custom properties.
8621         (org-check-before-invisible-edit): Also prevent errors when trying
8622         to edit invisible properties.
8624         * org-datetree.el (org-datetree-add-timestamp): New option.
8625         (org-datetree-insert-line): Use it.
8627         * org.el (org-fill-template): Fix bug when filling template for a
8628         key associated to the nil value.
8630         * org-agenda.el (org-diary): Fix tiny typo.
8632         * org.el (message-in-body-p): Move declaration up to fix compiler
8633         warning.
8635         * org.el (org-fill-context-prefix): Fix auto-filling in
8636         `message-mode'.
8638         * org.el (org-fill-paragraph): Correctly fill paragraph in
8639         message-mode.
8640         (org-indent-line): Correctly indent according to mode when
8641         `orgstruct++-mode' is on.
8642         (orgstruct++-mode): Add `fill-prefix' to the variable temporarily
8643         stored in `org-fb-vars'.
8645         * org.el (org-fill-paragraph): Make a command.  Fix bug about
8646         filling message headers and citations.
8648         * org.el (org-redisplay-inline-images): New command.
8649         (org-mode-map): Bind it to C-c C-x C-M-v.
8651         * org-colview.el (org-columns-get-format-and-top-level): Fix bug.
8652         (org-columns-get-format): Fix compiler warning.
8654         * org-feed.el: Add declarations.
8656         * org-agenda.el (org-agenda-get-sexps): Use `org-get-tags-at' to
8657         allow tag inheritance.
8659         * org-capture.el (org-capture): Fix bug introduced by commit
8660         1737d3.
8662         * org-publish.el (org-publish-needed-p)
8663         (org-publish-update-timestamp, org-publish-file)
8664         (org-publish-cache-file-needs-publishing): New argument
8665         `base-dir'.
8666         (org-publish-cache-ctime-of-src): Use the new argument to make
8667         sure we find the file according to :base-directory.
8669         * org-capture.el (org-capture-string): New command to prompt for
8670         the interactive text interactively.  This can also be used in
8671         Elisp programs to use ̀org-capture' with some initial text.
8672         (org-capture-initial): New variable to store the initial text.
8673         (org-capture): Use `org-capture-initial'.
8675         * org.el (org-emph-re): Tiny docstring formatting fix.
8677         * org-compat.el (org-labels): Remove.
8679         * org-bibtex.el (org-bibtex-headline): Don't use `org-labels'.
8681         * ob.el (org-babel-sha1-hash, org-babel-noweb-p): Ditto.
8683         * org.el (org-emph-re): Tiny formatting fix.
8685         * org.el (orgstruct-setup): Require `org-element'.
8687         * org.el (org-store-link, org-open-at-point): New link type
8688         "help".
8690         * org-compat.el (org-flet): Remove alias.
8692         * ob.el (org-babel-edit-distance, org-babel-sha1-hash)
8693         (org-babel-get-rownames, org-babel-insert-result)
8694         (org-babel-merge-params)
8695         (org-babel-expand-noweb-references): Don't use `org-flet'.
8696         Also indent some functions correctly.
8698         * ob.el (org-babel-execute-src-block)
8699         (org-babel-join-splits-near-ch, org-babel-format-result)
8700         (org-babel-examplize-region): Don't use `org-flet'.
8701         (org-babel-tramp-handle-call-process-region): Fix typo.
8703         * ob-awk.el (org-babel-awk-var-to-awk): Don't use `org-flet'.
8705         * ob-sh.el (org-babel-sh-var-to-string): Ditto.
8707         * ob-tangle.el (org-babel-tangle, org-babel-spec-to-string):
8708         Don't use `org-flet'.
8710         * org-pcomplete.el (org-compat): Require.
8712         * ob-tangle.el (org-babel-load-file): Don't use `org-flet'.
8714         * org-bibtex.el (org-bibtex-write): Use let*.
8716         * org-plot.el (org-plot/gnuplot-script): Don't use `org-flet'.
8718         * org-bibtex.el (org-bibtex-headline, org-bibtex-fleshout)
8719         (org-bibtex-read, org-bibtex-write): Don't use `org-flet'.
8721         * org-clock.el (org-clock-cancel): Use `org-looking-back'.
8723         * org-pcomplete.el (org-thing-at-point): Ditto.
8725         * org.el (org-timestamp-change): Ditto.
8727         * org-mouse.el (org-mouse-timestamp-today)
8728         (org-mouse-set-priority, org-mouse-popup-global-menu)
8729         (org-mouse-context-menu): Don't use ̀org-flet'.
8731         * org.el (org-priority): Fix docstring.
8733         * org-publish.el (org-publish-write-cache-file)
8734         (org-publish-initialize-cache)
8735         (org-publish-cache-file-needs-publishing)
8736         (org-publish-cache-get): Small code clean-up.
8738         * org-publish.el (org-publish-cache-ctime-of-src): Simplify.
8740         * org-agenda.el (org-agenda-get-sexps): Add a 'tags property for
8741         agenda entries created from sexps.
8743         * org-capture.el (org-capture-templates): Docstring clean up.
8744         (org-capture-place-entry, org-capture-place-item)
8745         (org-capture-place-plain-text, org-capture-place-table-line):
8746         Ensure to always position the point according to %?.
8748         * org-table.el (org-table-convert-refs-to-rc): Fix bug when
8749         converting remote table references.
8751         * org-agenda.el (org-agenda-switch-to): Run hooks in
8752         ̀org-agenda-after-show-hook'.
8754         * ob-ref.el (org-babel-ref-index-list): Use let* and rename the
8755         variable `length' to `lgth'.
8757         * org-plot.el (org-plot/gnuplot-to-grid-data): Don't use
8758         ̀org-flet'.
8760         * org-exp.el (org-export-format-source-code-or-example): Ditto.
8762         * org-exp-blocks.el (org-export-blocks-preprocess): Ditto.
8764         * ob.el (org-babel-view-src-block-info)
8765         (org-babel-execute-src-block, org-babel-edit-distance)
8766         (org-babel-switch-to-session-with-code)
8767         (org-babel-balanced-split, org-babel-insert-result): Ditto.
8769         * ob-ref.el (org-babel-ref-index-list): Ditto.
8771         * ob-python.el (org-babel-python-evaluate-session): Ditto.
8773         * ob-lob.el (org-babel-lob-get-info): Ditto.
8775         * ob-gnuplot.el (org-babel-expand-body:gnuplot): Ditto.
8777         * ob-exp.el (org-babel-exp-do-export): Ditto.
8779         * org-table.el (orgtbl-to-generic): Fix docstring.
8781         * org-clock.el (org-clock-in): Call `org-clock-out' with the new
8782         argument `switch-to-state' set to nil.  Fix docstring.
8783         (org-clock-in-last): Prompt for a todo state to switch to when
8784         called with three universal prefix arguments.  Don't display a
8785         message when the clock is already running.  Update docstring.
8786         (org-clock-out): New argument `switch-to-state'.  When this
8787         argument is non-nil, prompt for a state to switch the clocked out
8788         task to, overriding `org-clock-out-switch-to-state'.
8790         * org.el (org-entry-get): Don't use `org-flet'.
8792         * org.el (org-forward-heading-same-level): Rename from
8793         `org-forward-same-level'.
8794         (org-backward-heading-same-level): Rename from
8795         `org-backward-same-level'.
8797         * org.el (org-forward-element): Rename from `org-element-forward'.
8798         (org-backward-element): Rename from `org-element-backward'.
8799         (org-up-element): Rename from `org-element-up'.
8800         (org-down-element): Rename from `org-element-down'.
8801         (org-drag-element-backward): Rename from
8802         `org-element-drag-backward'.
8803         (org-drag-element-forward): Rename from
8804         `org-element-drag-forward'.
8805         (org-mark-element): Rename from `org-element-mark-element'.
8806         (org-transpose-element): Rename from `org-element-transpose'.
8807         (org-unindent-buffer): Rename from `org-element-unindent-buffer'.
8808         (org-mode-map): Update the names of a commands.  Remove useless
8809         declarations.
8811         * org-element.el (org-element-forward, org-element-backward)
8812         (org-element-up, org-element-down)
8813         (org-element-drag-backward, org-element-drag-forward)
8814         (org-element-mark-element, org-narrow-to-element)
8815         (org-element-transpose, org-element-unindent-buffer): Move to
8816         org.el.
8818         * org.el (org-forward-same-level): Fix typo in docstring.
8820         * org-agenda.el (org-agenda-mode-map):
8821         Bind `org-agenda-show-priority' to `C-c,' instead of `P'.
8822         (org-agenda-next-item, org-agenda-previous-item): New commands to
8823         move by one item down/up in the agenda.
8824         (org-agenda-mode-map): Bind `org-agenda-next-item' and
8825         `org-agenda-previous-item' to `N' and `P' respectively.
8827         * org-rmail.el (org-rmail-store-link, org-rmail-follow-link):
8828         Toggle headers when necessary.
8830         * org-element.el (org-narrow-to-element): Autoload.
8832         * org.el (org-mode-map): Use `M-h' for `org-element-mark-element'.
8833         (org-mark-subtree): Allow a numeric prefix argument to move up
8834         into the hierarchy of headlines.
8836         * org-element.el (org-element-up, org-element-down): Autoload.
8838         * org.el: Declare functions and don't require org-element.
8840         * org-element.el (org-element-at-point, org-element-forward)
8841         (org-element-backward, org-element-drag-backward)
8842         (org-element-drag-forward, org-element-mark-element)
8843         (org-element-transpose, org-element-unindent-buffer): Autoload.
8844         Require 'org and remove all declarations.
8846         * org.el (org-outline-regexp-bol, org-heading-regexp):
8847         Use variables instead of constants.
8849         * org-archive.el (org-datetree-find-date-create): Declare.
8851         * org.el (org-open-at-point): Only set
8852         `clean-buffer-list-kill-buffer-names' when the feature 'midnight
8853         has been loaded.
8855         * org-icalendar.el (org-print-icalendar-entries):
8856         Let APPT_WARNTIME take precedence over ̀org-icalendar-alarm-time'.
8858         * org.el (org-special-properties): New special property
8859         CLOCKSUM_T.
8860         (org-entry-properties): Handle the new special property.
8862         * org-colview.el (org-columns): Handle a new special property
8863         CLOCKSUM_T.
8864         (org-agenda-colview-summarize, org-agenda-colview-compute): Ditto.
8866         * org-clock.el (org-clock-sum-today): New function.
8867         (org-clock-sum): New argument PROPNAME to set a custom text
8868         property instead of :org-clock-minutes.
8870         * org-agenda.el (org-agenda-check-type): Throw a more appropriate
8871         error message when no agenda is currently being displayed.
8873         * org.el (org-get-property-block): Find blocks before the first
8874         headline.
8875         (org-entry-properties): Minor code cleanup.
8876         (org-entry-get, org-entry-get-with-inheritance): Get property
8877         before the first headline.
8879         * org-mobile.el (org-mobile-create-index-file): Use `files-alist'.
8881         * org.el (org-make-link): Delete.
8882         (org-store-link, org-insert-link)
8883         (org-file-complete-link): Don't use `org-make-link'.
8885         * org-wl.el (org-wl-store-link-folder)
8886         (org-wl-store-link-message): Ditto.
8888         * org-vm.el (org-vm-store-link): Ditto.
8890         * org-rmail.el (org-rmail-store-link): Ditto.
8892         * org-mhe.el (org-mhe-store-link): Ditto.
8894         * org-mew.el (org-mew-store-link): Ditto.
8896         * org-irc.el (org-irc-erc-store-link): Ditto.
8898         * org-info.el (org-info-store-link): Ditto.
8900         * org-id.el (org-id-store-link): Ditto.
8902         * org-gnus.el (org-gnus-group-link, org-gnus-article-link): Ditto.
8904         * org-eshell.el (org-eshell-store-link): Ditto.
8906         * org-bbdb.el (org-bbdb-store-link): Ditto.
8908         * org.el (org-url-hexify-p): New option.  When non-nil (the
8909         default), hexify URLs when creating a link.
8911         * org.el (org-insert-link): Make sure point is at the beginning of
8912         the buffer.
8914         * org.el (clean-buffer-list-kill-buffer-names): Declare.
8915         (org-open-at-point): Allow opening multiple shell links by
8916         creating a new output buffer for each shell process.  The new
8917         buffer is added to `clean-buffer-list-kill-buffer-names'.
8919         * org-mobile.el (org-mobile-create-index-file):
8920         Use `org-global-tags-completion-table' instead of
8921         `org-tag-alist-for-agenda' to get the tags for the index file.
8923         * org.el (org-global-tags-completion-table): Fix typo in
8924         docstring.
8926         * org.el (org-link-to-org-use-id): Use `org-capture' instead of
8927         `org-remember' in the docstring.
8928         (org-link-fontify-links-to-this-file): New function to fontify
8929         links to the current buffer in `org-stored-links'.
8930         (org-store-link): Small code simplification.
8931         (org-link-prettify): Enclose literal links into <...> instead of
8932         [[...]].
8933         (org-insert-link): Use `org-link-fontify-links-to-this-file'.
8934         Also allow completion over links' descriptions, as well as links
8935         destinations.  When the user uses the description for completion,
8936         don't prompt again for a description.
8938         * org-capture.el (org-capture-templates): Fix docstring by adding
8939         Gnus to the list of mail clients.
8941         * org.el (org-log-repeat): Enhance docstring.
8943         * org.el (org-mode-map): Don't bind C-<up> and C-<down> to
8944         `org-element-backward/forward' as these functions stops when there
8945         is no element of the same type before/after point.  It is useful
8946         to navigate with `forward/backward-paragraph' with no stop in most
8947         cases.
8949         * org-capture.el (org-capture-templates): New template %l to
8950         insert the literal link pointing at the current buffer.
8952         * org.el (org-todo-keywords): Ditto.
8954         * org.el (org-fill-paragraph): Falls back on
8955         `message-fill-paragraph' if required in `message-mode'.
8957         * org-pcomplete.el (pcomplete/org-mode/file-option/x): New macro.
8958         (pcomplete/org-mode/file-option/options)
8959         (pcomplete/org-mode/file-option/title)
8960         (pcomplete/org-mode/file-option/author)
8961         (pcomplete/org-mode/file-option/email)
8962         (pcomplete/org-mode/file-option/date): Use the new macro to offer
8963         completion over default values for #+OPTIONS, #+TITLE, #+AUTHOR,
8964         #+EMAIL and #+DATE.
8966         * org-agenda.el (org-agenda-write): Fix bug when writing agenda to
8967         an external file while `org-agenda-sticky' is non-nil.
8969         * org.el (org-speed-commands-default): New speedy command to
8970         quickly add the :APPT_WARNTIME: property.
8972         * org-agenda.el (org-agenda-to-appt): Use the :APPT_WARNTIME:
8973         property to override `appt-message-warning-time' when adding an
8974         appointment from an entry.
8976         * org.el (org-version): Improve docstring.
8977         (org-self-insert-cluster-for-undo): The default value should be
8978         nil for Emacs >=24.1.  See bug#11774.
8980         * org.el (org-fontify-meta-lines-and-blocks-1): Fix previous
8981         commit.
8983         * org.el (org-options-keywords): New constant.
8984         (org-additional-option-like-keywords): Remove duplicates with
8985         keywords in the new constant.
8986         (org-additional-option-like-keywords-for-flyspell): Use the new
8987         constant.
8988         (org-mode-flyspell-verify): Exclude keywords from the new
8989         constant.
8991         * org-pcomplete.el (pcomplete/org-mode/file-option):
8992         Use `org-options-keywords'.
8994         * org.el (org-toggle-heading): Bugfix: use
8995         `org-element-mark-element' instead of `org-mark-list'.
8997         * org-list.el (org-mark-list): Delete.
8999         * org.el: Update a few keybindings.
9001         * org-element.el (org-element-down): Throw an error when the
9002         element has no content.
9004         * org-table.el (orgtbl-radio-table-templates): Add a template for
9005         org-mode.
9006         (orgtbl-to-orgtbl): Complete and align the table created with
9007         orgtbl-to-orgtbl, in case the user use the function for radio
9008         tables.
9009         (orgtbl-to-table.el): New function to export a table to another
9010         one using the table.el format.
9011         (orgtbl-to-unicode): New function to export a table using unicode
9012         characters.
9014         * org-exp.el (org-export-language-setup): Use "Sommaire" for the
9015         french translation of "Table of contents", to avoid a possible bug
9016         when exporting to ODT.
9018         * org.el (org-additional-option-like-keywords): Add keywords.
9019         (org-additional-option-like-keywords-for-flyspell): New constant
9020         to use with flyspell.
9021         (org-mode-flyspell-verify): Use the dedicated constant and don't
9022         check `org-startup-options'.
9024         * org-agenda.el (org-batch-store-agenda-views): Use the sticky
9025         agenda buffer name, if required.
9026         (org-agenda-write): New parameter `agenda-bufname' to allow
9027         setting the agenda buffer name.
9029         * org.el (org-mode-map): Add keybindings for
9030         `org-element-forward', `org-element-backward', `org-element-up'
9031         and `org-element-down'.
9033         * org.el (org-auto-fill-function): Don't call `do-auto-fill'
9034         within (org-let org-fb-vars ...) as `do-auto-fill' should do the
9035         right thing whether orgstruct++-mode is turned on or off.
9037         * org.el (org-sparse-tree-default-date-type): New option.
9038         (org-ts-type): New variable.
9039         (org-sparse-tree): New argument `type'.  Use the new option
9040         `org-sparse-tree-default-date-type' as the default value for
9041         `type'.  Fix docstring.
9042         (org-re-timestamp): New function.
9043         (org-check-before-date, org-check-after-date)
9044         (org-check-dates-range): Use `org-ts-type' and `org-re-timestamp'
9045         to tell compute the date regexp.
9047         * org.el (orgstruct++-mode, org-get-local-variables): Also set
9048         `normal-auto-fill-function' when turning on/off orgstruct++-mode.
9050         * org-agenda.el (org-agenda-start-with-log-mode): Add relevant
9051         customization types.
9053         * org-faces.el (org-document-title): Use the normal height.
9055         * org-clock.el (org-x11idle-exists-p): New variable.
9056         (org-user-idle-seconds): Use it.
9058         * org.el (org-mode-map): Rebind `org-insert-all-links' to `C-c
9059         C-M-l'.
9061         * org.el (org-insert-all-links): New command.
9062         (org-insert-link): `org-keep-stored-link-after-insertion' is now
9063         checked when the link to insert has been defined, regardless on
9064         how it has been defined.  Also don't read the description
9065         interactively when the `default-description' parameter was given.
9066         (org-mode-map): Bind `org-insert-all-links' to `C-c C-L'.
9068         * org.el (org-inc-effort): New command to increment the effort
9069         property.
9070         (org-set-effort): Use it.
9071         (org-mode-map): Bind it to `C-c C-x E'.
9072         (org-speed-commands-default): Use `E' as a speed command for it.
9074         * org.el (org-re-property-keyword): New function.
9075         (org-entry-put): Use it to fix a bug with respect to setting the
9076         value of a property when a property line with no value already
9077         exists.
9079         * org.el (org-timestamp-change): Adjust clock in other org files
9080         correctly.
9082         * org-clock.el (org-user-idle-seconds): Simplify.
9084         * org.el (org-mode-map): Bind `org-resolve-clocks' to `C-c C-x
9085         C-z'.
9087         * org.el (org-mode-map): Add keybindings to
9088         `org-element-transpose' and `org-narrow-to-element'.
9089         (org-metaup): Fall back on `org-element-drag-backward'.
9090         (org-metadown): Fall back on `org-element-drag-forward'.
9091         Also move chunks of declarations and require statements to get rid of
9092         compiler warnings.
9094         * org-exp-blocks.el (org): Don't require org.  Add declarations.
9096         * org-clock.el (org): Don't require org.
9098         * ob-exp.el (org-list-forbidden-blocks): Add declarations.
9100         * org.el (org-timestamp-change): Don't use the `position'.
9102         * org.el (org-clock-history, org-clock-adjust-closest):
9103         New variables.
9104         (org-timestamp-change): Maybe adjust the next or previous clock in
9105         `org-clock-history'.
9106         (org-shiftmetaup, org-shiftmetadown): On clock logs, update the
9107         timestamp at point and adjust the next or previous clock in
9108         `org-clock-history', when possible.
9110         * org-clock.el (org-clock-in): Set the marker for
9111         `org-clock-history' at a safer position.
9113         * org-timer.el (org-timer-pause-or-continue, org-timer-stop):
9114         Autoload.
9116         * org-mobile.el (org-mobile-post-pull-hook): Fix docstring.
9118         * org.el (org-indent-line): Fix indentation of a property line
9119         starting at the beginning of a line.
9121         * org-odt.el (org-odt-cleanup-xml-buffers): Use the new alias.
9123         * org-compat.el: Alias `org-condition-case-unless-debug' to
9124         `condition-case-unless-debug' or `condition-case-no-debug'.
9126         * org.el (org-todo-keywords): Ditto.
9128         * org.el (org-use-fast-todo-selection): Reformat docstring.
9130         * org.el (org-flag-drawer): Add a docstring.
9131         (org-mode-map): Bind ̀org-clock-cancel' to "C-cC-xC-q" and
9132         `org-clock-in-last' to "C-cC-xC-x".  This fixes a bug in the
9133         previous keybinding for `org-clock-in-last', which would override
9134         the one for `org-clock-in'.
9136         * org-clock.el (org-clock-in-last): Prevent errors when there is
9137         no clocking history.
9138         (org-clock-cancel): Fix bug when checking against a clock log in a
9139         folded drawer.
9141         * org.el (org-link-expand-abbrev): Implement "%(my-function)" as a
9142         new specifier.  Update the docstring.
9144         * org.el (org-startup-options): Fix docstring formatting.
9146         * org.el (org-use-sub-superscripts): Fix typo in docstring.
9148         * org.el (org-refile): Fix bug: prevent looping when calling
9149         `org-set-tags' internally.
9151         * org.el (org-mode-map): Add `C-c C-x C-I' as a keybinding for
9152         `org-clock-in-last'.
9154         * org-clock.el (org-clock-continuously): New option.
9155         (org-clock-in): Three universal prefix arguments set
9156         `org-clock-continuously' to `t' temporarily.
9157         (org-clock-in-last): Fix call to `org-clock-select-task' and
9158         support continuous clocking.
9159         (org-clock-out-time): New variable.
9160         (org-clock-out): Set `org-clock-out-time' when clocking out.
9161         Small docstring rewriting.
9162         (org-clock-remove-empty-clock-drawer): Fix "invalid search bound"
9163         bug when trying to delete empty logbook drawer.
9164         (org-clock-cancel): If the clock log is gone, send a warning
9165         instead of deleting the region that is supposed to contain it.
9167         * org.el (org-move-line-down, org-move-line-up): Remove.
9168         (org-metaup, org-metadown): When the region is active, move it
9169         up/down by one line, with no regard to the context.
9171         * org-odt.el (org-odt-cleanup-xml-buffers): Use the new alias.
9173         * org-compat.el: Alias `org-condition-case-unless-debug' to
9174         `condition-case-unless-debug' or `condition-case-no-debug'.
9176         * org-pcomplete.el (org-thing-at-point): Ignore trailing
9177         whitespaces while looking-back at properties.
9179         * org.el (org-mode): Set `indent-region-function'.
9180         (org-indent-region): New function.
9181         (org-fill-paragraph): When in a src block, use `indent-region' to
9182         indent the whole source code instead of falling back on
9183         `fill-paragraph', as this function messes up the code.
9185         * org-src.el (org-edit-src-code): Fix docstring formatting.
9187         * ob.el (org-babel-do-key-sequence-in-edit-buffer): Ditto.
9189         * org.el (org-mode, org-add-log-setup)
9190         (org-get-property-block, org-entry-put)
9191         (org-property-next-allowed-value, org-return)
9192         (org-indent-line): Rename `org-indent-line-function' to
9193         `org-indent-line'.
9195         * org-timer.el (org-timer-item): Ditto.
9197         * org-table.el (org-table-store-formulas): Ditto.
9199         * org-clock.el (org-clock-in, org-clock-find-position): Ditto.
9201         * org-src.el (org-src-font-lock-fontify-block)
9202         (org-src-strip-leading-and-trailing-blank-lines)
9203         (org-src-ask-before-returning-to-edit-buffer)
9204         (org-edit-src-code, org-edit-src-continue)
9205         (org-edit-fixed-width-region)
9206         (org-src-do-key-sequence-at-code-block)
9207         (org-src-font-lock-fontify-block, org-src-fontify-buffer):
9208         Fix typos in docstrings.
9210         * org-docbook.el (org-export-docbook-emphasis-alist): Fix typo:
9211         use "format string" instead of "formatting string".
9213         * org-latex.el (org-export-latex-emphasis-alist)
9214         (org-export-latex-title-command, org-export-latex-tables): Ditto.
9216         * org-html.el (org-export-html-postamble): Ditto.
9218         * org-latex.el (org-export-latex-hyperref-options-format):
9219         New option.
9220         (org-export-latex-make-header): Use it.
9222         * ob.el (org-babel-confirm-evaluate): Prevent errors when
9223         `org-current-export-file' is void.
9225         * org-table.el (org-table-export): Use the file name extension to
9226         suggest the right conversion format.  Also amend the docstring.
9228         * org.el (org-speed-commands-default): Two new speed commands.
9229         Use `:' for `org-columns' and ̀#' for `org-toggle-comment'.
9231         * org.el (org-time-stamp): With two universal arguments, insert an
9232         active timestamp with the current time without prompting the user.
9234         * org-clock.el (org-clock-in-last): New command.
9236         * org-clock.el (org-clock-in): Fix typo in docstring.
9238         * org-mobile.el (org-mobile-edit): Fix reference to a free
9239         variable.
9241         * org.el (org-doi-server-url): Update :group.
9243         * ob-lob.el (org-babel-lob-execute): Fix reference to non-existent
9244         variable.
9246         * org.el (org-doi-server-url): New option.
9247         (org-open-at-point): Use it.
9249         * org.el (org-at-comment-p): New function.
9250         (org-toggle-heading): Use `org-at-comment-p' to skip comments.
9252         * org-html.el (org-export-as-html): Add links to the Org mode and
9253         GNU Emacs websites When :html-postamble is set to 't.
9255         * org-export.el (org-export-creator-string): Add links to the Org
9256         mode and GNU Emacs websites.
9258         * org-special-blocks.el
9259         (org-special-blocks-convert-html-special-cookies): Prevent errors
9260         by first checking `org-line' is not nil.
9262         * org-clock.el (org-clock-string-limit)
9263         (org-clock-modeline-total, org-clock-task-overrun-text)
9264         (org-clock-mode-line-entry): Doc fix, "modeline" -> "mode line".
9266         * org.el (org-at-timestamp-p): Set ̀org-ts-what' to 'after when the
9267         point is right after the timestamp.  `org-at-timestamp-p' still
9268         returns `t' in this case, as this is more practical.
9269         (org-return): Check against ̀org-ts-what' to verify that point is
9270         really within the timestamp (if any).
9272         * org.el (org-return): Follow time-stamp links when point is an a
9273         time-stamp.
9275         * org-capture.el (org-capture-bookmark): New option.
9276         (org-capture-finalize): Use it.
9278         * org-publish.el (org-publish-cache-file-needs-publishing):
9279         Make the column mandatory after #+include:.
9281         * org-exp.el (org-export-handle-include-files): Ditto.
9283         * org-bibtex.el (org-bibtex-entries): Rename from
9284         (org-bibtex-read, org-bibtex-write): Use the new name.
9286         * org-exp.el (org-export-handle-include-files): Allow to use
9287         #+include with no column.
9289         * org-publish.el (org-publish-cache-file-needs-publishing):
9290         Make quotes mandatory around the file name and allow spaces in it.
9292         * org-html.el (org-export-as-html): Add link to Org's and Emacs's
9293         websites.
9295         * org-latex.el
9296         (org-export-latex-link-with-unknown-path-format): New option.
9297         (org-export-latex-links): Use it.
9299         * org-agenda.el (org-agenda-get-timestamps): Remove any active
9300         timestamp from the headline text, not only those for the current
9301         date.
9303         * org.el (org-set-tags): Allow setting tags for headlines in the
9304         region when `org-loop-over-headlines-in-active-region' is non-nil.
9306         * org.el (org-allow-promoting-top-level-subtree): New option to
9307         allow promoting a top-level subtree.
9308         (org-called-with-limited-levels): New variable, dynamically bound
9309         within the `org-with-limited-levels' macro.
9310         (org-promote): Use the new option to allow promoting a top-level
9311         subtree.
9313         * org-macs.el (org-with-limited-levels): Let-bind
9314         `org-called-interactively-p' to t.
9316         * org.el (org-create-formula-image-with-dvipng)
9317         (org-create-formula-image-with-imagemagick): Make sure a file
9318         exists before trying to delete it.
9320         * org.el (org-scan-tags): Correctly match TODO keywords.
9322         * org-agenda.el (org-agenda-bulk-action): Fix bug: use
9323         `org-agenda-bulk-unmark-all'.
9325         * org.el (orgstruct++-mode): Fix docstring.
9326         (org-fill-paragraph): Use the 'justify parameter when falling back
9327         on `fill-paragraph'.
9329         * org.el (org-indent-line-function): Use `org-let' instead of
9330         `orgstruct++-ignore-org-filling'.
9331         (org-fill-paragraph, org-auto-fill-function): Ditto.
9333         * org-macs.el (orgstruct++-ignore-org-filling): Delete.
9335         * org-table.el (org-table-time-string-to-seconds): Return the
9336         empty string if provided.
9337         (org-table-eval-formula): When assigning a duration string, handle
9338         it correctly -- i.e. don't make any computation on it, except the
9339         one to insert it using the correct duration format.
9341         * org.el (org-indent-line-function): Fix bug.
9343         * org-clock.el (org-frame-title-format-backup): New variable to
9344         store the value of `frame-title-format' before `org-clock' might
9345         replace it by `org-clock-frame-title-format'.
9346         (org-clock-frame-title-format): New option.
9347         (org-frame-title-string): Delete.
9348         (org-clock-update-mode-line): Minor code reformatting.
9349         (org-clock-in, org-clock-out, org-clock-cancel):
9350         Use `org-clock-frame-title-format'.
9352         * org-clock.el (org-clock-get-clock-string): Add a space.
9354         * org-list.el (org-mark-list): Return an error when there is no
9355         list at point.
9357         * org.el (org-toggle-heading): Allow `C-u C-c *' to mark the list
9358         at point before converting items to headings.  With a simple
9359         universal-argument, set `current-prefix-arg' to 1, otherwise keep
9360         the numeric value.
9362         * org-agenda.el (org-agenda-view-mode-dispatch): Make the message
9363         more readable.
9365         * org-agenda.el (org-agenda-mode-map): New keybinding ̀*' to mark
9366         all entries for bulk action.
9367         (org-agenda-menu): New menu item for marking all entries.
9368         (org-agenda-bulk-mark-all): New function to mark all entries.
9369         (org-agenda-bulk-mark-regexp): Minor docstring fix.
9370         (org-agenda-bulk-unmark): With a prefix argument, unmark all.
9371         Also send a better message.
9372         (org-agenda-bulk-remove-all-marks): Rename to
9373         `org-agenda-bulk-unmark-all'.  Check against
9374         `org-agenda-bulk-marked-entries' before trying to unmark entries.
9375         Minor docstring fix.
9376         (org-agenda-bulk-unmark-all): Rename from
9377         ̀org-agenda-bulk-remove-all-marks'.
9379         * org-agenda.el (org-agenda-bulk-mark-char): New option.
9380         (org-agenda-bulk-mark): Use the new option.
9382         * org.el (org-src-prevent-auto-filling): New option to prevent
9383         auto-filling in src blocks.  This defaults to nil to avoid people
9384         being surprised that no auto-fill occurs in Org buffers where they
9385         use `auto-fill-mode'.
9386         (org-auto-fill-function): Use the new option.
9388         * org.el (org-properties-postprocess-alist): Better customization
9389         type.
9390         (org-set-property): Fix the check against
9391         `org-properties-postprocess-alist'.
9393         * org-macs.el (orgstruct++-ignore-org-filling):
9394         Set `def-edebug-spec' correctly.
9396         * org-colview.el (org-columns-string-to-number): When computing
9397         the values for the colview, match durations and convert them to
9398         HH:MM values.
9400         * org.el (org-duration-string-to-minutes): Match non-round
9401         numbers.  Add a new optional parameter to allow returning the
9402         output as a string.
9404         * org.el (org-auto-fill-fallback-function)
9405         (org-indent-line-fallback-function)
9406         (org-fill-paragraph-fallback-function)
9407         (org-auto-fill-fallback-function)
9408         (org-indent-line-fallback-function)
9409         (org-fill-paragraph-fallback-function): Remove.
9410         (org-fb-vars): New buffer-local variable.
9411         (orgstruct++-mode): Use the fallback variable `org-fb-vars' to
9412         store, use and restore variables if needed.
9413         (org-fill-paragraph): Ignore `orgstruct++-mode' filling variables
9414         when needed.
9415         (org-auto-fill-function, org-indent-line-function): Ditto.
9417         * org-macs.el (orgstruct++-ignore-org-filling): New macro.
9419         * org-exp-blocks.el: Use `org-find-library-name' instead of
9420         `find-library-name'.
9422         * org-compat.el (org-find-library-name): Convert into a macro to
9423         avoid compilation of a function from XEmacs in Emacs and vice
9424         versa.
9426         * org-table.el (org-table-store-formulas): Fix typo.
9427         (org-table-maybe-eval-formula): Fix the regexp to only match
9428         formulas, which never end with the `=' character.  If the field
9429         only contain this character, don't eval either.
9431         * org.el (org-set-property): Perform the correct check against
9432         `org-properties-postprocess-alist'.
9434         * org-bbdb.el (org-bbdb-anniversary-format-alist): Update the
9435         customization type.
9436         (name): Suppress (defvar 'name) as name is not eval'ed when
9437         setting `org-bbdb-anniversary-format-alist'.
9439         * org.el (org-version): When called non-interactively, insert the
9440         short version string, otherwise send a message with the complete
9441         version string.
9443         * org-odt.el (org-odt-update-meta-file): Use (org-version) and
9444         delegate checking whether `org-version' is known as a variable
9445         there.
9447         * org-html.el (org-export-as-html): Use (org-version).
9449         * org-docbook.el (org-export-as-docbook): Ditto.
9451         * org-latex.el (org-export-latex-make-header): Ditto.
9453         * org-clock.el (org-clocktable-write-default): Temporarily disable
9454         `delete-active-region' so that we don't accidently delete an
9455         active region when exporting a subtree/region.
9457         * org-clock.el (org-program-exists): Remove.
9458         (org-show-notification, org-clock-play-sound):
9459         Use `executable-find' instead of `org-program-exists'.
9461         * org-agenda.el (org-diary): Prevent failure from
9462         `org-compile-prefix-format' when there is no agenda buffer.
9464         * org-agenda.el (org-agenda-mode): Replace obsolete variable
9465         `buffer-substring-filters'.
9467         * org-indent.el (org-indent-mode): Ditto.
9469         * org-compat.el (org-find-library-name): Silent the byte-compiler
9470         about a warning related to XEmacs support.
9472         * org-special-blocks.el
9473         (org-special-blocks-convert-html-special-cookies): Use `org-line'
9474         instead of `line'.
9476         * org-html.el (org-html-handle-links, org-export-as-html)
9477         (org-format-org-table-html, org-format-table-table-html)
9478         (org-html-export-list-line): Use `org-line' instead of `line' as
9479         the free variable name.
9481         * org-latex.el (org-export-latex-tables): Let-bind `hfmt'.
9483         * org-faces.el (org-list-dt): New face.
9485         * org.el (org-set-font-lock-defaults): Use `org-list-dt' as the
9486         face for definition terms in definition lists.
9488         * org.el (org-fill-paragraph): Pass the `justify' argument to
9489         `org-fill-paragraph-fallback-function'.
9491         * org.el (org-eval-in-calendar): Fix docstring to mention the
9492         KEEPDATE parameter.
9494         * org.el (org-refresh-category-properties): Let-bind
9495         `inhibit-read-only' to t.
9497         * org.el (org-auto-fill-fallback-function)
9498         (org-indent-line-fallback-function)
9499         (org-fill-paragraph-fallback-function): New variables to store
9500         some fall-back functions when turning `orgstruct++-mode' on.
9501         (orgstruct++-mode): Set the new variables.
9502         (org-indent-line-function, org-fill-paragraph)
9503         (org-auto-fill-function): Use them.
9505         * org.el (org-read-date): Bugfix: call `org-eval-in-calendar' with
9506         the 'keepdate parameter set to t when setting the cursor type.
9508         * org-agenda.el (org-agenda-persistent-marks): New option to keep
9509         marks after a bulk action.  The option defaults to nil.
9510         (org-agenda-bulk-action): Use the new option.
9512         * org-capture.el (org-capture-fill-template): Use %\n instead of
9513         %n as a template element to be replaced with the nth prompted
9514         string.
9515         (org-capture-templates): Update docstring.
9517         * org.el (org-goto): Fix docstring and document what C-u does.
9519         * org-publish.el (org-publish-cache-file-needs-publishing):
9520         Use (case-fold-search t) when looking for #+INCLUDE:.
9522         * org.el: Use (case-fold-search t).
9523         (org-edit-special, org-ctrl-c-ctrl-c): Ditto.
9525         * org-table.el:
9526         (org-table-store-formulas, org-table-get-stored-formulas)
9527         (org-table-fix-formulas, org-table-edit-formulas)
9528         (org-old-auto-fill-inhibit-regexp, orgtbl-ctrl-c-ctrl-c)
9529         (orgtbl-toggle-comment, org-table-get-remote-range): Ditto.
9531         * org-footnote.el:
9532         (org-footnote-goto-local-insertion-point): Ditto.
9534         * org-exp.el: Ditto.
9536         * org-colview.el:
9537         (org-dblock-write:columnview, org-dblock-write:columnview): Ditto.
9539         * org-clock.el (org-clocktable-write-default): Ditto.
9541         * org-capture.el (org-capture-place-table-line): Ditto.
9543         * ob.el (org-babel-data-names, org-babel-goto-named-src-block)
9544         (org-babel-src-block-names)
9545         (org-babel-where-is-src-block-result, org-babel-result-end)
9546         (org-babel-where-is-src-block-head)
9547         (org-babel-find-named-result, org-babel-result-names): Ditto.
9549         * org-table.el (orgtbl-send-table): Escape special characters.
9550         Introduce a new parameter :no-escape to prevent escaping.
9552         * org-agenda.el (org-toggle-sticky-agenda): Only shout a message
9553         when called interactively.
9554         (org-agenda-get-restriction-and-command):
9555         Call `org-toggle-sticky-agenda' interactively.
9557         * org-agenda.el (org-agenda-top-category-filter): New variable for
9558         storing the current top-category filter.
9559         (org-agenda-redo): Apply a top-category filter, if any.
9560         (org-agenda-filter-by-top-category)
9561         (org-agenda-filter-top-category-apply):
9562         Set `org-agenda-top-category-filter' to the right value.
9564         * org-clock.el (org-clock-out, org-clock-cancel)
9565         (org-clock-in): Don't modify `frame-title-format' if it is a
9566         string.
9568         * org-latex.el (org-export-latex-special-chars): Fix bug when
9569         escaping special characters in a table.
9571         * org.el (org-read-date): Set cursor-type to nil in the calendar.
9573         * org-faces.el (org-date-selected): Use inverse video.
9574         Don't explicitly set bold to nil as it causes `customize-face' to show
9575         the weight property and thus encourage the user to change it.
9576         Warn in the docstring that using bold might cause problems when
9577         displaying the calendar.
9579         * org-id.el (org-id-update-id-locations): New parameter to silent
9580         `org-id-find'.
9581         (org-id-find): Use the new parameter.
9583         * org.el (org-show-hierarchy-above, org-cycle)
9584         (org-global-cycle, org-files-list, org-store-link)
9585         (org-link-search, org-open-file, org-display-outline-path)
9586         (org-refile-get-location, org-update-all-dblocks)
9587         (org-change-tag-in-region, org-entry-properties)
9588         (org-save-all-org-buffers, org-revert-all-org-buffers)
9589         (org-buffer-list, org-cdlatex-mode)
9590         (org-install-agenda-files-menu, org-end-of-subtree)
9591         (org-speedbar-set-agenda-restriction): Use (derived-mode-p
9592         'org-mode) instead of (eq major-mode 'org-mode).
9594         * org-timer.el (org-timer-set-timer): Ditto.
9596         * org-table.el (orgtbl-mode, org-table-align, orgtbl-mode): Ditto.
9598         * org-src.el (org-edit-src-exit, org-edit-src-code)
9599         (org-edit-fixed-width-region, org-edit-src-exit): Ditto.
9601         * org-remember.el (org-remember-handler): Ditto.
9603         * org-mouse.el (dnd-open-file, org-mouse-insert-item): Ditto.
9605         * org-macs.el (org-get-limited-outline-regexp): Ditto.
9607         * org-lparse.el (org-replace-region-by): Ditto.
9609         * org-latex.el (org-latex-to-pdf-process)
9610         (org-replace-region-by-latex): Ditto.
9612         * org-indent.el (org-indent-indent-buffer): Ditto.
9614         * org-id.el (org-id-store-link, org-id-update-id-locations)
9615         (org-id-store-link): Ditto.
9617         * org-html.el (org-export-html-preprocess)
9618         (org-replace-region-by-html): Ditto.
9620         * org-footnote.el (org-footnote-normalize)
9621         (org-footnote-goto-definition)
9622         (org-footnote-create-definition, org-footnote-normalize): Ditto.
9624         * org-docbook.el (org-replace-region-by-docbook): Ditto.
9626         * org-ctags.el (find-tag): Ditto.
9628         * org-colview.el (org-columns-redo)
9629         (org-columns-display-here, org-columns-edit-value)
9630         (org-columns-redo): Ditto.
9632         * org-capture.el (org-capture-insert-template-here)
9633         (org-capture, org-capture-finalize)
9634         (org-capture-set-target-location)
9635         (org-capture-insert-template-here): Ditto.
9637         * org-ascii.el (org-replace-region-by-ascii): Ditto.
9639         * org-archive.el (org-archive-subtree): Ditto.
9641         * org-agenda.el (org-agenda)
9642         (org-agenda-get-restriction-and-command)
9643         (org-agenda-get-some-entry-text, org-search-view)
9644         (org-tags-view, org-agenda-get-day-entries)
9645         (org-agenda-format-item, org-agenda-goto, org-agenda-kill)
9646         (org-agenda-archive-with, org-agenda-switch-to): Ditto.
9648         * org.el (org-repeat-re)
9649         (org-clone-subtree-with-time-shift, org-auto-repeat-maybe)
9650         (org-deadline, org-schedule, org-matcher-time)
9651         (org-time-stamp, org-read-date, org-read-date-get-relative)
9652         (org-display-custom-time, org-get-wdays)
9653         (org-time-string-to-absolute, org-closest-date)
9654         (org-timestamp-change): Allow to set hourly repeat cookie.
9655         Send an error when an hourly repeat cookie is set and no hour is
9656         specified in the timestamp.
9658         * org-icalendar.el (org-print-icalendar-entries): Handle hourly
9659         repeat cookies.
9661         * org-clock.el (org-program-exists): Fix docstring.
9663         * org-clock.el (org-clock-file-time-cell-format): New option.
9664         (org-clocktable-write-default): Use it.
9666         * org-faces.el (org-date-selected): New face.
9668         * org.el (org-date-ovl): Use `org-date-selected'.
9670         * org.el (org-mode): Don't use `buffer-face-mode' by default.
9672         * org-agenda.el (org-agenda-mode-map): Bind `^' to
9673         `org-agenda-filter-by-top-category'.
9675         * org-ascii.el (org-export-ascii-underline): Change the default
9676         underlining characters for headlines of level 1 and 2.
9677         Also introduce \. as the underline character for headlines of level 5.
9679         * org-table.el (org-table-recalculate-buffer-tables)
9680         (org-table-iterate-buffer-tables): Add autoload cookie.
9682         * org.el (org-table-map-tables): Exclude tables in src and example
9683         blocks.
9685         * org.el (org-fill-paragraph): Leave scheduled/deadline lines
9686         untouched when filling an adjacent paragraph.
9688         * org-html.el (org-export-html-preamble-format)
9689         (org-export-html-postamble-format): Improve the docstring.
9691         * org.el (org-todo): Fix regression: rename `state' to
9692         `org-state'.
9694         * org-clock.el (org-show-notification): Use `fboundp' instead of
9695         `featurep' and the additional `require'.
9697         * org-clock.el (org-clock-in-prepare-hook): New option to format
9698         the total time cells.
9699         (org-clocktable-write-default): Use the new option.
9701         * org.el (org-open-at-point): Allow to open the agenda from an
9702         active or inactive timestamp in a headline.
9704         * org-html.el (org-export-html-date-format-string): Make a
9705         defcustom.
9707         * org-latex.el (org-export-as-latex): Fix TeX-master declaration.
9709 2012-09-30  Carsten Dominik  <carsten.dominik@gmail.com>
9711         * org-table.el (org-table-expand-lhs-ranges): Allow hline
9712         references to be expanded correctly in LHS of formulas.
9714         * org-beamer.el (org-beamer-inherited-properties): New option.
9715         (org-beamer-after-initial-vars): Use new option to look for
9716         inherited properties.
9718         * org.el (org-ts-regexp0): Allow time stamps without name of day.
9720         * org-agenda.el (org-toggle-sticky-agenda):
9721         (org-agenda-sticky): Improve :set property.
9723         * org-agenda.el (org-agenda-local-vars): Clean up the variable
9724         list.
9725         (org-agenda-get-restriction-and-command): Add a key for toggling
9726         sticky agenda views.
9728         * org-agenda.el (org-agenda-local-vars): Final decisions about
9729         global/local
9731         * org-agenda.el (org-agenda-force-single-file): Variable removed.
9732         (org-prepare-agenda-window): Store pre-agenda window config
9733         locally.
9734         (org-timeline): Introduce a scoped version of
9735         `org-agenda-show-log'.
9736         (org-agenda-list): Introduce a scoped version of
9737         `org-agenda-show-log'.
9738         (org-agenda-get-progress): Use the scoped version of
9739         `org-agenda-show-log'.
9740         (org-agenda-local-vars): Write the analysis result as a comment -
9741         to be cleaned up in the next iteration.
9743         * org-agenda.el (org-toggle-sticky-agenda): Kill all agenda
9744         buffers when toggling sticky-agendas.
9745         (org-agenda-get-restriction-and-command): Add `C-c a C-k' as a key
9746         to explicitly kill all agenda buffers.
9747         (org-agenda-run-series): Remove any old agenda markers in the
9748         buffer that is going to take the new block agenda.
9749         (org-prepare-agenda): Reset markers before erasing the buffer anc
9750         running `org-agenda-mode', because after that the local variable
9751         `org-agenda-markers' will have gone away.
9752         (org-agenda-Quit):
9753         (org-finalize-agenda): Install the marker resetter into the
9754         `kill-buffer-hook'.
9755         (org-agenda-save-markers-for-cut-and-paste): Look for markers in
9756         all agenda buffers.
9757         (org-agenda-kill-all-agenda-buffers): New function.
9759 2012-09-30  Chris Gray  <chrismgray@gmail.com>
9761         * org-html.el (org-export-as-html): Remove the check for body-only
9762         in the code for generating tables of contents.
9764 2012-09-30  Christoph Dittmann  <github@christoph-d.de>  (tiny change)
9766         * org-beamer.el (org-beamer-auto-fragile-frames):
9767         Make [fragile] work with overlay specifications.
9769 2012-09-30  Christophe Junke  <christophe.junke@inria.fr>  (tiny change)
9771         * org-agenda.el (org-agenda-list): Ensures that the list returned
9772         by `org-agenda-add-time-grid-maybe' is appended to ̀rtnall' before
9773         checking if the latter is empty.
9775 2012-09-30  Christophe Rhodes  <csr21@cantab.net>  (tiny change)
9777         * org-latex.el (org-export-latex-tables): Support setting the
9778         :hfmt parameter from #+ATTR_LaTeX.
9780 2012-09-30  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>  (tiny change)
9782         * org-exp.el (org-export-handle-include-files)
9783         (org-get-file-contents): Handle new parameter :addlevel.
9785 2012-09-30  Dave Abrahams  <dave@boostpro.com>  (tiny change)
9787         * org.el (org-link-prettify): New function to prettify links while
9788         displaying them with `org-insert-link'.
9789         (org-insert-link): Use the new function.
9791 2012-09-30  David Maus  <dmaus@ictsoc.de>
9793         * org-exp.el (org-export-language-setup): Use numeric character
9794         entities for proper rendering of non-UTF8 documents.
9796         * org-exp.el (org-export-language-setup): Add japanese
9797         translation.
9799 2012-09-30  Eric Schulte  <eric.schulte@gmx.com>
9801         * ob-sh.el (org-babel-sh-evaluate): Don't could 0-length shebangs.
9803         * ob.el (org-babel-insert-result): Replace key sequence with
9804         function call.  Use a more informative flag to the local function.
9805         (org-add-protective-commas): Declare a new external function.
9807         * org-src.el (org-add-protective-commas): This should be its own
9808         function.
9809         (org-edit-src-exit): Use the new function.
9811         * org-compat.el (org-labels): Remove.
9813         * org-bibtex.el (org-bibtex-headline): Don't use `org-labels'.
9815         * ob.el (org-babel-sha1-hash, org-babel-noweb-p): Ditto.
9817         * ob.el (org-babel-string-read): Don't automatically evaluate code
9818         block results which look like elisp.
9819         (org-babel-import-elisp-from-file): Raise a warning message when
9820         the process of reading code block results raises an error.
9822         * ob-tangle.el (org-babel-with-temp-filebuffer): Don't execute
9823         macro argument multiple times.
9825         * org.el (org-compat): Require org-compat before we first use one
9826         of its functions (a macro actually).
9828         * ob-comint.el (org-babel-comint-with-output): Don't name the
9829         filter function, but rather pass through the anonymous lambda
9830         directly.
9832         * org.el (org-babel-load-languages): Common lisp should be
9833         mentioned as a supported babel language.
9835         * org-clock.el (org-clock-special-range): "concat 'string" ->
9836         "concat"
9837         (org-clocktable-shift): "concat 'string" -> "concat"
9839         * org-bibtex.el (org-bibtex-headline): Replacing org-flet with
9840         org-labels.
9842         * ob-calc.el (org-babel-execute:calc): Strip single quotes from
9843         calc internal representations.
9845         * org-clock.el (org-clock-special-range): Replacing cl concatenate
9846         with concat.
9847         (org-clocktable-shift): Replacing cl concatenate with concat.
9849         * ob.el (org-babel-edit-distance): Remove use of map at runtime.
9851         * org-compat.el (org-flet): Compatibility function now that flet
9852         has been removed from cl-macs.
9853         (org-labels): Compatibility function now that labels has been
9854         removed from cl-macs.
9856         * ob-R.el (org-compat): Require org-compat.
9858         * ob-comint.el: Require org-compat.
9860         * ob-exp.el (org-babel-exp-do-export): Switch to compatibility
9861         function.
9863         * ob-gnuplot.el (org-babel-expand-body:gnuplot): Switch to
9864         compatibility function.
9866         * ob-lob.el (org-babel-lob-get-info): Switch to compatibility
9867         function.
9868         (org-babel-lob-execute): Switch to compatibility function.
9870         * ob-python.el (org-babel-python-evaluate-session): Switch to
9871         compatibility function.
9873         * ob-ref.el (org-babel-ref-index-list): Switch to compatibility
9874         function.
9876         * ob-sh.el (org-babel-sh-var-to-string): Switch to compatibility
9877         function.
9879         * ob-tangle.el (org-babel-load-file): Switch to compatibility
9880         function.
9881         (org-babel-tangle): Switch to compatibility function.
9882         (org-babel-spec-to-string): Switch to compatibility function.
9884         * ob.el (org-babel-view-src-block-info): Switch to compatibility
9885         function.
9886         (org-babel-execute-src-block): Switch to compatibility function.
9887         (org-babel-edit-distance): Switch to compatibility function.
9888         (org-babel-switch-to-session-with-code): Switch to compatibility
9889         function.
9890         (org-babel-sha1-hash): Switch to compatibility function.
9891         (org-babel-balanced-split): Switch to compatibility function.
9892         (org-babel-join-splits-near-ch): Switch to compatibility function.
9893         (org-babel-get-rownames): Switch to compatibility function.
9894         (org-babel-format-result): Switch to compatibility function.
9895         (org-babel-insert-result): Switch to compatibility function.
9896         (org-babel-examplize-region): Switch to compatibility function.
9897         (org-babel-merge-params): Switch to compatibility function.
9898         (org-babel-noweb-p): Switch to compatibility function.
9899         (org-babel-expand-noweb-references): Switch to compatibility
9900         function.
9902         * org-bibtex.el (org-bibtex-headline): Switch to compatibility
9903         function.
9904         (org-bibtex-fleshout): Switch to compatibility function.
9905         (org-bibtex-read): Switch to compatibility function.
9906         (org-bibtex-write): Switch to compatibility function.
9908         * org-exp-blocks.el (org-export-blocks-preprocess): Switch to
9909         compatibility function.
9911         * org-exp.el (org-export-format-source-code-or-example): Switch to
9912         compatibility function.
9914         * org-macs.el (org-called-interactively-p): Indentation fix.
9916         * org-mouse.el (org-mouse-timestamp-today): Switch to
9917         compatibility function.
9918         (org-mouse-set-priority): Switch to compatibility function.
9919         (org-mouse-popup-global-menu): Switch to compatibility function.
9920         (org-mouse-context-menu): Switch to compatibility function.
9922         * org-plot.el (org-plot/gnuplot-to-grid-data): Switch to
9923         compatibility function.
9924         (org-plot/gnuplot-script): Switch to compatibility function.
9926         * org.el (org-entry-get): Switch to compatibility function.
9927         (org-fill-paragraph): Switch to compatibility function.
9928         (org-auto-fill-function): Switch to compatibility function.
9930         * ob-lob.el (org-babel-lob-execute): Only try to insert extant
9931         hashes.
9933         * ob-R.el (org-babel-R-command): From a defvar to a defcustom.
9935         * ob.el (org-babel-set-current-result-hash): Change the hash of
9936         the results for the current code block.
9937         (org-babel-current-result-hash): Fix documentation.
9939         * ob-lob.el (org-babel-lob-execute): Don't re-execute the called
9940         function if the current call line hash matches that in its
9941         results.
9943         * ob-R.el (org-babel-R-assign-elisp): Can't assume every entry in
9944         a table is a sequence.
9946         * ob-R.el (org-babel-R-assign-elisp): Clean up the code
9947         implementing reads of irregular data into R.
9949         * ob.el (org-babel-header-arg-expand): In new buffers
9950         (char-before) may return nil so use equal rather than =.
9952         * ob-R.el (org-babel-header-args:R): Adding values.
9954         * ob-clojure.el (org-babel-header-args:clojure): Adding values.
9956         * ob-lisp.el (org-babel-header-args:lisp): Adding values.
9958         * ob-sql.el (org-babel-header-args:sql): Adding values.
9960         * ob-sqlite.el (org-babel-header-args:sqlite): Adding values.
9962         * ob.el (org-babel-combine-header-arg-lists): Combine lists of
9963         arguments and values.
9964         (org-babel-insert-header-arg): Use new combined header argument
9965         lists.
9966         (org-babel-header-arg-expand): Add support for completing-read
9967         insertion of header arguments after ":"
9968         (org-babel-enter-header-arg-w-completion): Completing read
9969         insertion of header arguments
9970         (org-tab-first-hook): Adding header argument completion.
9971         (org-babel-params-from-properties): Combining header argument
9972         lists.
9974         * ob-exp.el (org-babel-exp-results): Ensure noweb expanded body is
9975         used on export.
9977         * ob.el (org-babel-result-to-file): New optional description
9978         argument.
9979         (org-babel-insert-result): Move description logic to another
9980         function.
9982         * ob.el (org-babel-insert-result): Change name of filelinkdescr to
9983         file-desc.
9984         (org-babel-common-header-args-w-values): Change name of
9985         filelinkdescr to file-desc.
9987         * ob-C.el (org-babel-C-execute): Add .exe to the end of compiled C
9988         files on windows.
9990         * ob-exp.el (org-babel-exp-code): Escape all lines when exporting
9991         Org-mode blocks.
9993         * ob.el (org-babel-parse-src-block-match): Make use of the new
9994         language argument to org-babel-strip-protective-commas.
9995         (org-babel-parse-inline-src-block-match): Make use of the new
9996         language argument to org-babel-strip-protective-commas.
9997         (org-babel-strip-protective-commas): Now accepts a language
9998         argument.
10000 2012-09-30  Fabrice Niessen  <fniessen-TA4HMoP+1wHrZ44/DZwexQ@public.gmane.org>  (tiny change)
10002         * org-agenda.el (org-agenda-write-buffer-name): Remove the test
10003         for the presence of <style> tag.
10005 2012-09-30  Feng Shu  <tumashu@gmail.com>
10007         * org.el (org-create-formula-image-with-imagemagick):
10008         Use 'call-process to launch latex so that no shell output buffer will
10009         be shown when previewing formulas.
10011         * org.el (org-create-formula-image-with-imagemagick): Fix typo.
10013         * org.el (org-latex-create-formula-image-program): New option to
10014         use either dvipng or imagemagick to convert and preview LaTeX
10015         fragments.
10016         (org-preview-latex-fragment, org-format-latex): Handle the new
10017         option.
10018         (org-create-formula-image-with-dvipng): Rename from
10019         `org-create-formula-image'.
10020         (org-create-formula-image-with-imagemagick): New defun to handle
10021         LaTeX preview with imagemagick.
10022         (org-latex-color, org-latex-color-format): New defuns to handle
10023         color conversions.
10025         * org-latex.el (org-latex-to-pdf-process, org-export-as-pdf):
10026         Allow to use imagemagick to convert LaTeX fragments.
10028         * org-html.el (org-export-html-preprocess): Ditto.
10030         * org-exp.el (org-export-with-LaTeX-fragments): Ditto.
10032 2012-09-30  George Kettleborough  <g.kettleborough@member.fsf.org>
10034         * org-clock.el: New option `org-clock-clocked-in-display' to
10035         control whether the current clock is displayed in the mode line
10036         and/or frame title.
10038         * org-timer.el: New option `org-timer-display' to control whether
10039         the current timer is displayed in the mode line and/or frame
10040         title.
10042 2012-09-30  Hans-Peter Deifel  <hpdeifel@gmx.de>  (tiny change)
10044         * ob.el (org-babel-execute-src-block): Allow the :dir header
10045         argument to take relative file names.
10047 2012-09-30  Harri Kiiskinen  <harri@pp-kaitue.(none)>  (tiny change)
10049         * org-protocol.el: New option.
10050         (org-protocol-store-link, org-protocol-do-capture): Use it.
10052 2012-09-30  Henning Weiss  <hdweiss@gmail.com>
10054         * org-mobile.el (org-mobile-edit): Add handling of addheading,
10055         refile, archive, archive-sibling and delete edit nodes.
10056         (org-mobile-locate-entry): Olp links containing only a file are
10057         now be located correctly.
10058         (org-mobile-apply): Instead of finding the location of all target
10059         headings for edit nodes in a separate loop, they will be found
10060         immediately before applying edits.
10062         * org-mobile.el (org-mobile-sumo-agenda-command): Use a shorter
10063         title.
10065 2012-09-30  Ilya Shlyakhter  <ilya_shl@alum.mit.edu>  (tiny change)
10067         * org.el (org-parse-time-string): Allow strings supported by
10068         tags/properties matcher (eg <now>, <yesterday>, <-7d>) if the time
10069         starts with < and ends with >.  This means that e.g. in the
10070         clocktable parameters you can specify :tstart "<-1w>" :tend
10071         "<now>".
10073 2012-09-30  Ippei FURUHASHI  <top.tuna+orgmode@gmail.com>  (tiny change)
10075         * org-colview.el (org-columns): New argument `columns-fmt-string'.
10077         * org-colview.el (org-columns-get-format-end-top-level):
10078         Split into `org-columns-get-format' and `org-columns-goto-top-level'.
10080         * org-colview.el (org-dblock-write:columnview): Add a new
10081         parameter :format which specifies the column view format for the
10082         output of the columnview dynamic block.
10084 2012-09-30  Jambunathan K  <kjambunathan@gmail.com>
10086         * org-lparse.el (org-lparse-and-open)
10087         (org-lparse-do-convert): Open exported files with system-specific
10088         application.
10090         * org-odt.el: Don't meddle with `org-file-apps'.
10092         * org-compat.el (org-condition-case-unless-debug): Alias to
10093         `condition-case' when both `condition-case-no-debug' and
10094         `condition-case-unless-debug' is unavailable.
10096         * org-odt.el (org-odt-do-image-size): Replace `flet' with
10097         equivalent construct.
10099         * org-odt.el (org-odt-cleanup-xml-buffers):
10100         Use `condition-case-no-debug' instead of
10101         `condition-case-unless-debug'.  This ensures backward
10102         compatibility with Emacs versions < 24.1.
10104         * org-odt.el (org-odt-zip-dir)
10105         (org-odt-cleanup-xml-buffers): New.
10106         (org-export-as-odt-and-open, org-export-as-odt)
10107         (org-odt-init-outfile, org-odt-save-as-outfile)
10108         (org-export-as-odf, org-export-as-odf-and-open):
10109         Use `org-odt-cleanup-xml-buffers'.
10111         * org-odt.el (org-export-odt-default-org-styles-alist):
10112         Add default character style.
10114         * org-odt.el (org-export-odt-default-org-styles-alist):
10115         Add default character style.
10117         * org-lparse.el (org-do-lparse): Remove stray call to
10118         `org-export-html-after-blockquotes-hook'.
10120         * org-bbdb.el (org-bbdb-export): Add support for ODT format.
10122         * org-odt.el (org-odt-update-meta-file): Check for `org-version'
10123         is bound before accessing it.
10125         * org-odt.el (org-odt-schema-dir-list): OD Schema files have been
10126         moved away from $(git-root)/contrib/odt/etc/schema/ to
10127         $(git-root)/etc/schema/.
10129         * org-odt.el (org-odt-format-org-link): Pay no heed to whether the
10130         internal links destined for headlines provide a description or
10131         not.  In fact, the `org-store-link' and `org-insert-link' create
10132         internal links which do have a description.
10134         * org-lparse.el (org-lparse-insert-org-table): Consider short
10135         caption as plain text and not as org text.
10137         * org-odt.el (org-export-odt-format-formula)
10138         (org-export-odt-format-image): Ditto.
10140         * org-odt.el (org-odt-begin-table)
10141         (org-export-odt-format-formula, org-export-odt-format-image)
10142         (org-odt-format-entity): Handle short caption.
10144         * org-lparse.el (org-lparse-insert-org-table)
10145         (org-lparse-insert-list-table, org-lparse-insert-table-table):
10146         Ditto.
10148 2012-09-30  Jay McCarthy  <jay.mccarthy@gmail.com>  (tiny change)
10150         * org-colview.el (org-columns-new-overlay): Make sure to add a
10151         face to a string that has no face.
10153 2012-09-30  Jérémie Courrèges-Anglas  <jca@wxcvbn.org>  (tiny change)
10155         * org-latex.el: Ensure a final newline is appended to the export
10156         buffer.
10158 2012-09-30  Levin Du  <zslevin@gmail.com>  (tiny change)
10160         * org-clock.el (org-clock-in): Fix bug in setting the clock
10161         heading.
10163 2012-09-30  Madan Ramakrishnan  <madanr79@gmail.com>  (tiny change)
10165         * org-agenda.el (org-agenda-bulk-mark): Truly make arg optional as
10166         advertised by the function.
10168 2012-09-30  Mark E. Shoulson  <mark@kli.org>  (tiny change)
10170         * org.el (org-fontify-entities): Hide {} when prettifying
10171         entities.
10173 2012-09-30  Mark Shoulson  <mark@kli.org>  (tiny change)
10175         * org-entities.el (org-entities): Add new entities for characters
10176         which could cause formatting changes if typed directly.
10178         * org-entities.el (org-entities): Add \asciicirc entity for ^;
10179         also fixed \circ expansion in latex.
10181         * org.el (org-fontify-entities): Fix bug: The entities \sup[123]
10182         and \there4 were not "prettified" when org-pretty-entities was
10183         enabled.
10185 2012-09-30  Mats Lidell  <matsl@xemacs.org>  (tiny change)
10187         * org-element.el (org-element-paragraph-separate):
10188         Remove redundant and misplaced t clause in case.
10190 2012-09-30  Matt Lundin  <mdl@imapmail.org>
10192         * org-datetree.el: Fix regexp to allow datetree to find headings
10193         with trailing whitespace.  This fixes a bug in which an existing
10194         datetree heading (e.g., "* 2012 ") would not be found by
10195         org-datetree-find-year-create if it had trailing whitespace.
10196         This can cause problems, for instance, if one is using column view on
10197         the date tree, since editing subheadings with column view adds
10198         whitespace at the end of the top heading.
10200         * org-footnote.el (org-footnote-new): Don't call
10201         org-footnote-unique-label if org-footnote-auto-label is set to
10202         random.
10204         * org-gnus.el (org-gnus-follow-link): Fix argument to
10205         gnus-group-read-group so that following a link does not result in
10206         unread article being selected.
10208         * org-bbdb.el (org-bbdb-anniv-extract-date)
10209         (org-bbdb-make-anniv-hash): Fix org-bbdb anniversary functionality
10210         to accommodate BBDB 3.x.  There are two major changes in BBDB 3.x
10211         that need to be taken into account.  The first is that
10212         `bbdb-split' reverses the order of its parameters in 3.x.
10213         The second is that `bbdb-record-getprop' is replaced by
10214         bbdb-record-note in 3.x.
10216 2012-09-30  Max Mikhanosha  <max@openchat.com>
10218         * org-agenda.el (org-agenda-change-all-lines): Speedup refresh of
10219         a single line of agenda by narrowing the agenda buffer to just
10220         that line before calling `org-agenda-finalize'.
10222         * org.el (org-mode): Don't set org-hide's foreground to
10223         "invisible-bg".
10224         (org-find-invisible-foreground): New function.
10226         * org-agenda.el (defvar org-habit-show-all-today): New variable
10227         (org-agenda-get-scheduled): Show all habits if user wants it
10229         * org-habit.el (defcustom org-habit-show-all-today): New variable
10231         * org-agenda.el (org-agenda-quit): Copy the code for optionally
10232         restoring window configuration after burying the sticky agenda
10233         buffer.
10235         * org-agenda.el (org-agenda-new-marker): Check for NIL
10236         org-agenda-buffer
10237         (org-agenda-to-appt): Bind org-agenda-buffer to NIL
10239         * org-agenda.el (org-agenda-change-all-lines): Move accessing of
10240         'extra text property outside of with-current-buffer for original
10241         buffer
10243         * org-agenda.el (defvar org-habit-show-habits-only-for-today):
10244         initialize to nil
10246 2012-09-30  Michael Brand  <michael.ch.brand@gmail.com>
10248         * org-id.el (org-id-link-to-org-use-id): Align the doc string to
10249         the changed default.
10251         * ob-tangle.el (org-babel-tangle-collect-blocks): Use dummy string
10252         when heading has no text.
10254         * org-capture.el (org-capture-inside-embedded-elisp-p):
10255         Improve parsing.
10257         * org-feed.el (org-feed-format-entry): Require `org-capture'.
10258         Expand Elisp %(...) templates.
10259         (org-feed-default-template): Update docstring.
10261         * org-capture.el (org-capture-expand-embedded-elisp):
10262         New function.
10263         (org-capture-fill-template): Use it.
10264         (org-capture-inside-embedded-elisp-p): New function to tell if we
10265         are within an Elisp %(...) template.
10267         * org-list.el (org-at-item-description-p)
10268         (org-list-item-body-column): Make the inline regexp more
10269         consistent with `org-list-full-item-re', the inline regexp
10270         "Description list items" from `org-set-font-lock-defaults and
10271         others'.
10273 2012-09-30  Mike Sperber  <sperber@deinprogramm.de>
10275         * org.el (org-fill-paragraph): Pass optional argument to
10276         `fill-paragraph' to fix compatibility with XEmacs.
10278         * org.el (org-self-insert-cluster-for-undo):
10279         Default `org-self-insert-cluster-for-undo' also on XEmacs.
10281         * org.el (org-kill-line): Access `visual-line-mode' only if it's
10282         bound.
10284 2012-09-30  Muchenxuan Tong  <demon386@gmail.com>  (tiny change)
10286         * org-timer.el (org-timer-set-mode-line):
10287         Check `org-timer-display' when value is 'off.
10289 2012-09-30  Nicolas Calderon Asselin  <nicolas.calderon.asselin@gmail.com>  (tiny change)
10291         * org-clock.el (org-clock-idle-time): Org-mode assumed that
10292         x11idle was an available command, and returned an idle time of 0
10293         if it was not
10294         (never idle): Added checks so that org-idle-time will come from
10295         emacs' own current-idle-time if x11idle cannot be found or if it
10296         cannot retrieve the idle time from X11
10298 2012-09-30  Nicolas Goaziou  <n.goaziou@gmail.com>
10300         * org-element.el: Properly remove COMMENT and QUOTE keywords from
10301         title in parser.
10303         * org-element.el (org-element-headline-parser): Fix parsing for
10304         headlines with a single COMMENT or QUOTE keyword.
10306         * ob-org.el (org-babel-default-header-args:org): By default,
10307         export code from Org src blocks.
10309         * org-element.el (org-element-inline-src-block-successor):
10310         Fix inline-src-block parsing at the beginning of an item.
10312         * org-element.el (org-element--collect-affiliated-keywords):
10313         Fix caption parsing.
10315         * org-element.el (org-element--current-element): At the very
10316         beginning of a footnote definition or an item, next element is
10317         always a paragraph.
10319         * org-element.el (org-element-headline-parser): Handle nil titles.
10320         (org-element-inlinetask-parser): Add :raw-value property.
10321         Also handle nil titles.
10323         * org.el (org-set-regexps-and-options): Don't consider tags as a
10324         replacement for a missing title in an headline.
10326         * org.el (org-setup-filling): Remove duplicate code.
10328         * org.el (org-adaptive-fill-function): Make sure fill prefix is
10329         computed from beginning of line.
10331         * org-element.el (org-element-section-parser): Make sure section
10332         cannot contain an headline.
10333         (org-element--current-element): Fix bug requiring to parse a quote
10334         section even when point is at an headline.
10336         * org.el (org-adaptive-fill-function): Remove occasional spurious
10337         space character when auto-filling.
10339         * org.el (org-mode): Call external initalizers.  Now both filling
10340         code and comments code have their own independant part in org.el.
10341         (org-setup-filling): Rename from `org-set-autofill-regexps'.
10342         (org-setup-comments-handling): New function.
10344         * org.el (org-fill-paragraph): Refine filling in comments and in
10345         paragraphs.  Allow commented blank lines.  Take into consideration
10346         the indentation of the second line of the paragraph being filled.
10347         (org-comment-or-uncomment-region): Rewrite function.  Now comment
10348         region at a fixed column: the minimal indentation of the region.
10349         (org-fill-context-prefix): Rename function into
10350         `org-adaptive-fill-function'.  Also, In a paragraph, choose the
10351         same prefix as the current line.
10353         * org-exp.el (org-export-handle-comments): Also remove comments at
10354         column 0.
10356         * org-exp.el (org-export-handle-comments): Handle inline comments
10357         with new syntax.
10359         * org.el (org-structure-template-alist): Add missing colon to
10360         #+INCLUDE.
10362         * org.el (org-backward-element): When called at the beginning of
10363         first element in section, the function shouldn't return an error
10364         but move point to headline or point-min instead.
10366         * org-element.el (org-element-paragraph-parser): Tiny refactoring.
10368         * org-element.el (org-element-paragraph-parser): Remove trailing
10369         code comments.
10371         * org.el (org-fill-context-prefix): Fix incorrect output when
10372         called at the beginning of a plain list with an affiliated
10373         keyword.
10374         (org-fill-paragraph): Remove useless variable.
10376         * org-element.el (org-element-paragraph-parser): Fix parsing of
10377         paragraph at the beginning of an item.
10379         * org.el (org-mode): Set back comment-start-skip so comment-dwim
10380         can tell a keyword from a comment.
10382         * org.el (org-set-autofill-regexps): Install new comment line
10383         break function.
10384         (org-comment-line-break-function): New function.
10385         (org-mode): Remove unnecessary line.
10387         * org.el (org-fill-context-prefix, org-fill-paragraph): Do not
10388         fill verse blocks contents.  Verse blocks can be used to format
10389         free-form poetry, so filling has to be done manually.
10391         * org.el (org-fill-paragraph-separate-nobreak-p): New function.
10392         (org-set-autofill-regexps): Introduce new predicate.
10393         (org-fill-item-nobreak-p): Remove function.
10395         * org-element.el (org-element-paragraph-separate): Since this
10396         variable is meant to be searched forward, \end{...} shouldn't
10397         trigger the end of a paragraph before checking if it is the end of
10398         a complete environment.
10399         (org-element-latex-environment-parser): Slight change to the
10400         regexp matching the beginning of a latex environment.
10401         (org-element-paragraph-parser): Paragraphs don't end at incomplete
10402         latex environments.
10403         (org-element-latex-or-entity-successor): Remove paragraph
10404         environments from latex fragment search.
10406         * org-table.el (org-table-number-regexp): By default, accept comma
10407         as a decimal mark to represent numbers.
10409         * org-element.el (org-element-map): Fix comment typo.
10411         * org.el (org-fill-paragraph): Add a `save-excursion' to avoid
10412         returning funny results.
10414         * org.el (org-fill-paragraph): Try not to include message header
10415         and citation lines in a paragraph when filling it.
10417         * org.el (org-fill-paragraph): Fix filling in a narrowed buffer.
10418         (org-fill-context-prefix): Fill prefix doesn't depend on current
10419         narrowing.
10421         * org.el (org-mode): Line with a single hash sign on it is a
10422         comment.
10424         * org.el (org-set-font-lock-defaults): Fix comment fontification.
10426         * org-element.el (org-element-item-parser): Do not remove tag from
10427         body if list isn't descriptive.
10429         * org-list.el (org-insert-item): Only ask about a term for
10430         descriptive lists.
10431         (org-list-struct, org-list-insert-item): Do not recognize a tag in
10432         an ordered list.
10434         * org-element.el (org-element-set-element): Rewrite function.
10435         (org-element-adopt-elements): New function.
10436         (org-element-adopt-element): Remove function.
10437         (org-element--parse-elements, org-element--parse-objects): Use new
10438         function.
10440         * org-list.el (org-list-automatic-rules): Remove `bullet' rule,
10441         which is now hard-coded.
10442         (org-cycle-list-bullet): Hard code `bullet' rule.
10443         (org-list-get-list-type): Make sure a list with numbered bullets
10444         cannot have `descriptive' type.
10446         * org-element.el (org-element-paragraph-parser): Fix previous
10447         patch.
10449         * org.el (org-fill-paragraph): No need to use
10450         `org-element-paragraph-separate' in a verse block since blank
10451         lines only can end a "paragraph".
10453         * org-element.el (org-element-paragraph-separate): Apply changes
10454         to comments.
10455         (org-element-paragraph-parser): Correctly find end of paragraphs.
10456         (org-element--current-element): Require colons for Babel calls.
10457         (org-element-center-block-parser)
10458         (org-element-dynamic-block-parser, org-element-quote-block-parser)
10459         (org-element-special-block-parser)
10460         (org-element-comment-block-parser)
10461         (org-element-example-block-parser)
10462         (org-element-export-block-parser, org-element-src-block-parser)
10463         (org-element-verse-block-parser): Fall-back to paragraph parsing
10464         when incomplete or ill-formed.
10466         * org-element.el (org-element-swap-A-B): Small refactoring.
10468         * org-element.el (org-element-text-markup-successor): Fix typo in
10469         docstring.
10471         * org-element.el (org-element-at-point): Return consistent value
10472         when function is called on a blank line within a plain list.
10474         * org-element.el (org-element-paragraph-separate): Fix comments in
10475         paragraph separator regexp.  Optimize it.
10477         * org-element.el: Update code commets.
10479         * org.el (org-mark-subtree): Fix bug when marking subtree with
10480         point on an inlinetask.  Refactor code.
10482         * org.el (org-mark-subtree): Do not make a special case for
10483         inlinetasks when marking a subtree.  These are handled by
10484         `org-element-mark-element'.
10486         * org-element.el (org-element-comment-parser): Consider first "+"
10487         as a comment when parsing an ill-defined keyword.
10489         * org-element.el (org-element-item-interpreter): Simplify bullet
10490         creation.
10491         (org-element-plain-list-interpreter): Fix wrong bullets, if
10492         needed.
10494         * org-element.el (org-element-comment-parser): Fix parsing when a
10495         keyword follows the commented line.
10497         * org.el (org-fill-context-prefix): Auto-fill first paragraph in
10498         footnote definitions.
10500         * org.el (org-mode): Define new comment syntax.
10501         (org-fontify-meta-lines-and-blocks-1, org-strip-protective-commas)
10502         (org-fill-context-prefix, org-insert-comment)
10503         (org-comment-or-uncomment-region): Use new comment syntax.
10505         * org-element.el (org-element-comment-parser)
10506         (org-element-comment-interpreter, org-element--current-element):
10507         Use new comment syntax.
10509         * org.el (org-fill-paragraph): When at an item or a footnote
10510         definition, fill first paragraph instead.
10512         * org.el (org-fill-paragraph): Fix filling when point is at the
10513         very end of a paragraph.
10515         * org.el (org-mode): Set comments related variables.
10516         (org-insert-comment, org-comment-or-uncomment-region):
10517         New functions.
10519         * org.el (org-fill-context-prefix): Small refactoring.
10520         (org-fill-paragraph): Add code comments.
10522         * org-element.el (org-element-at-point): Add :parent property to
10523         output.
10524         (org-element-context): Add :parent property to output.
10525         Also return a single element or object instead of a list of parents.
10526         (org-element-forward, org-element-up): Apply changes.
10528         * org.el (org-fill-context-prefix): New function.
10529         (org-fill-paragraph, org-auto-fill-function): Use new function.
10530         Also handle comments.
10531         (org-adaptive-fill-function): Remove function.
10532         (org-get-local-variables, orgstruct++-mode): Don't store now
10533         unused adaptive-fill* functions.
10535         * org-element.el (org-element-at-point): Fix function when buffer
10536         starts with an inlinetask.  Also fix it when called on the last
10537         element in a greater element or the buffer.
10539         * org-element.el (org-element-center-block-parser)
10540         (org-element-dynamic-block-parser)
10541         (org-element-footnote-definition-parser)
10542         (org-element-headline-parser, org-element-inlinetask-parser)
10543         (org-element-quote-block-parser, org-element-special-block-parser)
10544         (org-element-plain-list-parser): Refactor code.
10545         (org-element-drawer-parser): Fall-back to paragraph parser when
10546         drawer is incomplete.
10548         * org-macs.el (org-with-limited-levels): Fix typo.
10550         * org-element.el (org-element-paragraph-separate): Refactor.
10551         (org-element-paragraph-parser): Fix paragraph parsing.
10553         * org.el (org-fill-paragraph): Rewrite function using
10554         `org-element-at-point'.
10556         * org-element.el (org-element-fill-paragraph): Remove function.
10558         * org.el (org-planning-or-clock-line-re): Make it a defconst.
10559         It's no use to make it a buffer-local variable since variables on
10560         which it depends are not buffer-local anyway.
10562         * org.el (org-drawer-regexp): Provide default value for
10563         `org-drawer-regexp' in non-Org buffers.
10565         * org-entities.el (org-entities-create-table): Function chokes
10566         when CAR of `org-entities' is a string.
10568         * org-list.el (org-list-automatic-rules): Allow check-boxes in
10569         description lists.
10570         (org-list-struct-apply-struct, org-insert-item): Remove rule
10571         check.
10573         * org-footnote.el (org-footnote-normalize): Fix positionning in
10574         HTML export without a footnote section.
10576         * org-list.el (org-list-struct-indent):
10577         Follow `org-list-demote-modify-bullet' specifications for ordered
10578         bullets.
10579         (org-list-indent-item-generic, org-indent-item-tree)
10580         (org-outdent-item-tree): Fix bug when operating on a region.
10581         (org-outdent-item, org-indent-item): Allow to operate on a region.
10583         * org.el (org-shiftmetaleft, org-shiftmetaright): Allow to operate
10584         on a region.
10586         * org-footnote.el (org-footnote-delete-definitions): Remove blank
10587         lines before the footnote definition instead of removing those
10588         after it.
10590         * org-footnote.el (org-footnote-at-definition-p): Don't grab
10591         trailing blank lines in a footnote definition.
10592         (org-footnote-delete-definitions): Remove both footnote definition
10593         and trailing blank lines.
10595 2012-09-30  Rick Frankel  <rick@rickster.com>
10597         * ob-sql.el: Add dbi engine type and pre/post processing.
10599 2012-09-30  Sean O'Halpin  <sean.ohalpin@gmail.com>  (tiny change)
10601         * ob.el (org-babel-expand-noweb-references): Capture current noweb
10602         start and end patterns then use to set buffer locals in
10603         (with-temp-buffer) form.
10605 2012-09-30  Sebastien Vauban  <sva@mygooglest.com>  (tiny change)
10607         * org.el (org-update-all-dblocks): Autoload function.
10609 2012-09-30  Simon Thum  <simon.thum@gmx.de>  (tiny change)
10611         * ob-maxima.el (org-babel-execute:maxima): Let cmdline always
10612         return a string.
10614 2012-09-30  Stephen Eglen  <S.J.Eglen@damtp.cam.ac.uk>  (tiny change)
10616         * org-icalendar.el (org-icalendar-timezone): Fix typo and clarify
10617         meaning.
10619 2012-09-30  Stuart Hickinbottom  <stuart@hickinbottom.com>  (tiny change)
10621         * org-clock.el (org-x11idle-exists-p): Only shell out when running
10622         on X.
10624 2012-09-30  Suhail Shergill  <suhailshergill@gmail.com>  (tiny change)
10626         * org-html.el (org-export-as-html): If possible, use the
10627         :CUSTOM_ID: property to assign unique ids to footnotes.
10629 2012-09-30  T.F. Torrey  <tftorrey@tftorrey.com>  (tiny change)
10631         * org-exp.el (org-export-remember-html-container-classes):
10632         Allow exporting a single subtree with HTML_CONTAINER_CLASS property.
10634         * org-rmail.el (org-rmail-follow-link): Use `rmail-widen' instead
10635         of `widen' and don't toggle header as `rmail-widen' already takes
10636         care of this.
10638 2012-09-30  Tim Howe  <vsync@quadium.net>  (tiny change)
10640         * org-clock.el (org-clocktable-defaults): Revert extra layer of
10641         quoting.
10643 2012-09-30  Toby S. Cubitt  <tsc25@cantab.net>
10645         * org-capture.el (org-capture-fill-template): Expand %<num> escape
10646         sequences into text entered for <num>'th %^{PROMPT} escape.
10648         * org-capture.el (org-capture-fill-template): Fix regexp for
10649         %<n> expandos to match any positive integer.
10650         (org-capture-templates): Update docstring accordingly.
10652         * org-agenda.el (org-agenda-skip-timestamp-if-deadline-is-shown):
10653         Skip timestamp items in agenda view if item is already shown as a
10654         deadline item.
10655         (org-agenda-skip-deadline-if-done): Pass deadline results to
10656         org-agenda-get-timestamps.
10657         (org-agenda-get-timestamps): Optionally take list of deadline
10658         results, so that timestamp results can be skipped if already
10659         included in deadline results.
10661         * org-agenda.el (org-agenda-diary-sexp-prefix): Regexp matching
10662         deadline/scheduling information to be displayed in diary sexp
10663         agenda items.
10664         (org-agenda-get-sexps): Extract deadline/scheduling information
10665         from diary sexp entries.
10667         * org-capture.el (org-capture-place-entry): Place captured entry
10668         immediately after last subheading of target, instead of just
10669         before next heading at same level as target.
10671         * org-capture.el (org-capture-templates): Document new capture
10672         template properties.
10674         * org-capture.el (org-capture-place-entry)
10675         (org-capture-empty-lines-before): Make new :empty-lines-before
10676         property override :empty-lines when inserting empty lines before
10677         captured captured entry.
10679         * org-capture.el (org-capture-finalize)
10680         (org-capture-empty-lines-after): Make new :empty-lines-after
10681         property override :empty-lines when inserting empty lines after
10682         captured captured entry.
10684         * org-agenda.el (org-agenda-skip-if, org-agenda-skip-if-todo):
10685         Add new todo-unblocked and nottodo-unblocked skip conditions.
10686         These match as for todo and nottodo, but only for unblocked todo items.
10688 2012-09-30  Zachary Kanfer  <zkanfer@gmail.com>  (tiny change)
10690         * org.el (org-read-date-display): Fix bug when displaying the
10691         overlay.
10693 2012-09-30  Niels Giesen  <niels.giesen@gmail.com>
10695         * org-table.el (orgtbl-to-generic): Add check for :skipheadrule.
10696         When present, the :hline following the head will be skipped.
10697         This is necessary to avoid doubling of horizontal rules in LaTeX
10698         longtable environments and consequent width problems.
10700         * org-latex.el (org-export-latex-tables-tstart)
10701         (org-export-latex-tables-hline)
10702         (org-export-latex-tables-tend): New options.
10703         (org-export-latex-tables): Use the new options.
10705 2012-09-30  Feng Shu  <tumashu@gmail.com>  (tiny change)
10707         * org-exp.el (org-export-language-setup): Add simplified chinese
10708         translation.
10710 2012-09-01  Paul Eggert  <eggert@cs.ucla.edu>
10712         Better seed support for (random).
10713         * org-id.el (org-id-uuid):
10714         Change (random t) to (random), now that the latter is more random.
10716 2012-07-29  Paul Eggert  <eggert@cs.ucla.edu>
10718         Don't use the abbreviation "win" to refer to Windows (Bug#10421).
10719         * ob-lilypond.el (ly-w32-ly-path): Rename from ly-win32-ly-path.
10720         (ly-w32-pdf-path): Rename from ly-win32-pdf-path.
10721         (ly-w32-midi-path): Rename from ly-win32-midi-path.
10722         (ly-determine-ly-path, ly-determine-pdf-path, ly-determine-midi-path):
10723         Check for "windows-nt", not "win32", in system-type.
10725 2012-06-02  Chong Yidong  <cyd@gnu.org>
10727         * org-clock.el (org-clock-string-limit)
10728         (org-clock-modeline-total, org-clock-task-overrun-text)
10729         (org-clock-mode-line-entry): Doc fix, "modeline" -> "mode line".
10731 2012-05-27  Mark Shoulson  <mark@kli.org>  (tiny change)
10733         * org.el (org-fontify-entities): Fix bug: The entities \sup[123] and
10734         \there4 were not "prettified" when org-pretty-entities was enabled.
10736 2012-05-27  Nicolas Goaziou  <n.goaziou@gmail.com>
10738         * org.el (org-font-lock-add-priority-faces):
10739         Restrict priorities fontification to headlines and inlinetasks.
10741 2012-05-27  Jambunathan K  <kjambunathan@gmail.com>
10743         * org-odt.el (org-odt-init-outfile)
10744         (org-odt-write-manifest-file):
10745         Disable `nxml-auto-insert-xml-declaration-flag'.
10747         * org-lparse.el (org-do-lparse): Don't trigger auto-mode processing.
10749 2012-05-27  Bastien Guerry  <bzg@gnu.org>
10751         * org.el (org-scan-tags): Fix bug when building the scanner regexp.
10753 2012-05-27  Eric Schulte  <eric.schulte@gmx.com>
10755         * ob.el (org-babel-capitalize-examplize-region-markers):
10756         Controls the capitalization of begin and end example blocks.
10757         (org-babel-examplize-region):
10758         Optionally capitalize example block delimiters.
10760         * ob-plantuml.el (org-babel-execute:plantuml):
10761         Add a :java header argument to plantuml.
10763         * org-exp-blocks.el (org-export-blocks-preprocess):
10764         Even when the body of a block is not indented the boundary markers
10765         should be indented to their original positions so things like list
10766         indentation still work.
10768         * ob.el (org-babel-parse-src-block-match):
10769         Save match data during indentation check.
10771 2012-05-27  Bastien Guerry  <bzg@gnu.org>
10773         * org.el (org-scan-tags): Correctly match TODO keywords.
10775 2012-05-27  Nicolas Goaziou  <n.goaziou@gmail.com>
10777         * org-list.el (org-list-struct): Fix white spaces.
10778         (org-list-swap-items, org-list-send-item): Fix visibility preservation.
10780         * org-list.el (org-list-swap-items, org-list-send-item):
10781         Preserve visibility when moving items.
10783 2012-05-27  Mark E. Shoulson  <mark@kli.org>  (tiny change)
10785         * org.el (org-fontify-entities): Hide {} when prettifying entities.
10787 2012-05-27  Bastien Guerry  <bzg@gnu.org>
10789         * org.el (org-cycle-internal-global): Prevent the display of
10790         messages when cycling from with a Gnus article buffer.
10792         * org-table.el (org-table-time-seconds-to-string):
10793         Fix bug about handling a negative duration value.
10795 2012-05-27  Nicolas Goaziou  <n.goaziou@gmail.com>
10797         * org.el (org-link-expand-abbrev): Fix docstring.
10799         * org.el (org-translate-link): Fix bug.
10801 2012-05-27  Bastien Guerry  <bzg@gnu.org>
10803         * org-agenda.el (org-agenda-bulk-mark-regexp):
10804         Fix bug when setting the number of marked entries.
10806         * org-table.el (org-tbl-calc-modes): Rename from `org-table-modes'.
10807         (org-set-calc-mode, org-table-eval-formula): Use it.
10809 2012-05-27  Eric Schulte  <eric.schulte@gmx.com>
10811         * ob.el (org-babel-find-named-result):
10812         Fix bug finding empty named results.
10814 2012-05-27  Nicolas Goaziou  <n.goaziou@gmail.com>
10816         * org.el (org-set-regexps-and-options):
10817         Fix `org-planning-or-clock-line-re' regexp.  Indeed "\\>" will never
10818         match since time keywords must end with colons, which are not word
10819         constituents.
10821 2012-05-27  Bastien Guerry  <bzg@gnu.org>
10823         * org-ctags.el (org-ctags-new-topic-template):
10824         Fix the option default value back again.
10826 2012-05-27  Eric Schulte  <eric.schulte@gmx.com>
10828         * org-bibtex.el (org-bibtex-export-to-kill-ring):
10829         Don't rely on kill-new to return a string.
10831         * org-bibtex.el (org-bibtex-headline):
10832         Remove call to bibtex-reformat which often hangs.
10834 2012-04-27  Glenn Morris  <rgm@gnu.org>
10836         * org-ctags.el (org-ctags-new-topic-template):
10837         Revert 2012-04-09 removal of * from defcustom value, not doc.
10839 2012-04-27  Nicolas Goaziou  <n.goaziou@gmail.com>
10841         * org-table.el (org-table-number-fraction): Fix typo.
10843 2012-04-27  Eric Schulte  <eric.schulte@gmx.com>
10845         * ob-python.el (org-babel-execute:python): Ensure newline precedes
10846         automatically-added returns.
10848 2012-04-27  Nicolas Goaziou  <n.goaziou@gmail.com>
10850         * org-mouse.el (org-mode-hook): Do not move point when clicking on
10851         a footnote reference.
10853 2012-04-27  Bastien Guerry  <bzg@gnu.org>
10855         * org-faces.el (org-date-selected): Fix docstring.
10857 2012-04-27  Nicolas Goaziou  <n.goaziou@gmail.com>
10859         * org-list.el (org-list-struct-indent):
10860         Follow `org-list-demote-modify-bullet' specifications for ordered
10861         bullets.
10862         (org-list-indent-item-generic, org-indent-item-tree)
10863         (org-outdent-item-tree): Fix bug when operating on a region.
10864         (org-outdent-item, org-indent-item): Allow to operate on a region.
10866         * org.el (org-shiftmetaleft, org-shiftmetaright): Allow to operate
10867         on a region.
10869 2012-04-27  Nicolas Goaziou  <n.goaziou@gmail.com>
10871         * org-footnote.el (org-footnote-normalize): Fix positioning in
10872         HTML export without a footnote section.
10874 2012-04-27  Madan Ramakrishnan  <madanr79@gmail.com>  (tiny change)
10876         * org-agenda.el (org-agenda-bulk-mark): Truly make arg optional as
10877         advertised by the function.
10879 2012-04-27  Zachary Kanfer  <zkanfer@gmail.com>  (tiny change)
10881         * org.el (org-read-date-display): Fix bug when displaying the
10882         overlay.
10884 2012-04-27  Bastien Guerry  <bzg@gnu.org>
10886         * org.el (org-mode): Don't use `buffer-face-mode' by default.
10888 2012-04-27  Bastien Guerry  <bzg@gnu.org>
10890         * org-faces.el (org-date-selected): New face.
10892 2012-04-27  Jambunathan K  <kjambunathan@gmail.com>
10894         * org-odt.el (org-odt-format-org-link): Pay no heed to whether the
10895         internal links destined for headlines provide a description or
10896         not.  In fact, the `org-store-link' and `org-insert-link' create
10897         internal links which do have a description.
10899 2012-04-27  Bastien Guerry  <bzg@gnu.org>
10901         * org-clock.el (org-program-exists): Fix docstring.
10903 2012-04-14  Bastien Guerry  <bzg@gnu.org>
10905         * org.el (org-point-at-end-of-empty-headline): Only try to match
10906         `org-todo-line-regexp' when the value is non-nil, e.g. in non-org
10907         modes.
10908         (org-fontify-meta-lines-and-blocks-1): Prevent errors when trying
10909         to fontify beyond (point-max).
10911         * org-clock.el (org-clock-task-overrun-text)
10912         (org-task-overrun, org-clock-get-clock-string)
10913         (org-clock-update-mode-line)
10914         (org-clock-notify-once-if-expired): Rename `org-task-overrun'
10915         and `org-task-overrun-text' to `org-clock-task-overrun' and
10916         `org-clock-task-overrun-text' respectively.
10917         (org-task-overrun-text): New alias.
10919         * org-table.el (org-table-eval-formula): Fix bug about handling
10920         remote references as durations.
10921         (org-table-get-range): Fix bug: make sure references to $0 are
10922         correctly handled.
10924         * org-pcomplete.el (pcomplete/org-mode/file-option):
10925         Fix bug in `pcomplete/org-mode/file-option'.
10926         (org-thing-at-point): Also match line options like LATEX_CLASS
10927         when pcompleting from LATEX_.
10929         * org-agenda.el (org-agenda-filter-make-matcher)
10930         (org-agenda-filter-apply): Allow filtering entries out by
10931         category.  Using `C-u <' from the agenda view will redisplay
10932         the agenda without entries from categories of the current line.
10934 2012-04-14  Eric Schulte  <eric.schulte@gmx.com>
10936         * ob-C.el (org-babel-C-ensure-main-wrap):
10937         Add an explicit return to automatically generated main methods.
10939 2012-04-14  Matt Lundin  <mdl@imapmail.org>
10941         * org.el (org-after-todo-state-change-hook):
10942         Fix docstring to reflect name change of state to `org-state'.
10944 2012-04-14  Mike Sperber  <sperber@deinprogramm.de>  (tiny change)
10946         * org-footnote.el (org-footnote-normalize):
10947         Correctly pass keyword arguments to `org-export-preprocess-string'.
10949 2012-04-03  Bastien Guerry  <bzg@gnu.org>
10951         * org.el (org-todo): Fix regression: rename `state' to
10952         `org-state'.
10953         (org-use-effective-time): Fix group and type.
10955 2012-04-02  Bastien Guerry  <bzg@gnu.org>
10957         * org-clock.el (org-clock-out-if-current): Fix regression: rename
10958         `org-clock-state' to `org-state' to match the name of the
10959         dynamically-scoped variable in `org-todo'.
10961         * org-agenda.el (entry, org-diary, org-class): Fix regression:
10962         rename `org-entry' to `entry'.
10964 2012-04-01  Bastien Guerry  <bzg@gnu.org>
10966         * org.el (org-todo): Fix regression in `org-todo'.
10968 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
10970         * ob-C.el (org-babel-C-execute): Add .exe to the end of compiled
10971         C files on windows.
10973 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
10975         * ob-exp.el (org-babel-exp-code): Escape all lines when exporting
10976         Org-mode blocks.
10978         * ob.el (org-babel-parse-src-block-match): Make use of the new
10979         language argument to org-babel-strip-protective-commas.
10980         (org-babel-parse-inline-src-block-match): Make use of the new
10981         language argument to org-babel-strip-protective-commas.
10982         (org-babel-strip-protective-commas): Now accepts a language
10983         argument.
10985 2012-04-01  Bastien Guerry  <bzg@gnu.org>
10987         * org.el (org-fast-tag-selection): Fix an bug when listing tags
10988         for completion.
10990 2012-04-01  Ilya Shlyakhter  <ilya_shl@alum.mit.edu>  (tiny change)
10992         * org.el (org-delete-property-globally): Fix a bug that left
10993         blank line in place of the property, instead of removing the line.
10995 2012-04-01  Bastien Guerry  <bzg@gnu.org>
10997         * ob-maxima.el (org-babel-maxima-command): Add group information
10998         to the defcustom.
11000 2012-04-01  Bastien Guerry  <bzg@gnu.org>
11002         * org.el (org-mode): Use `buffer-face-mode' to remap the 'default
11003         face to 'org-default.
11005 2012-04-01  Bastien Guerry  <bzg@gnu.org>
11007         * org-ascii.el (org-export-as-ascii): Fix escaping of underscores
11008         in links.
11010 2012-04-01  Bastien Guerry  <bzg@gnu.org>
11012         * org.el: Prevent a bug while defining the menu by requiring
11013         `org-beamer' when necessary.
11015 2012-04-01  Bastien Guerry  <bzg@gnu.org>
11017         * org-table.el (orgtbl-self-insert-command):
11018         Use `backward-delete-char' instead of `delete-backward-char' as this
11019         last command gets caught by the compiler which says to not use it
11020         in programs.  `backward-delete-char' is just an alias for
11021         `delete-backward-char' which is internally remapped to
11022         `org-delete-backward-char' for optimization purpose.
11024 2012-04-01  Bastien Guerry  <bzg@gnu.org>
11026         * org-latex.el (org-export-latex-subcontent): Bugfix: when
11027         `org-export-latex-low-levels' is nil, do not export low levels.
11029 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
11031         * ob.el (org-babel-insert-result): Fix bug in indented wrapped
11032         results insertion.
11034 2012-04-01  Bastien Guerry  <bzg@gnu.org>
11036         * org.el (org-set-tags): Include `org-tag-alist' in the list of
11037         possible completions, even when there are tags defined in the
11038         buffer.
11040 2012-04-01  Bastien Guerry  <bzg@gnu.org>
11042         * org.el (org-set-tags): Don't add a column when there is only one
11043         tag offered for completion.
11045 2012-04-01  Bastien Guerry  <bzg@gnu.org>
11047         * org.el (org-fast-tag-selection): Include tags from
11048         `org-tag-alist' when completing with the TAB key.
11050 2012-04-01  Shoji Nishimura  <nishimura.shoji@gmail.com>  (tiny change)
11052         * org.el (org-display-inline-images): Honor the ̀beg' parameter.
11054 2012-04-01  Bastien Guerry  <bzg@gnu.org>
11056         * org-latex.el (org-export-latex-subcontent): Don't insert a
11057         linebreak when itemizing a subtree that is just a headline.
11059 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
11061         * ob-lob.el (org-babel-lob-get-info): Remove extra []s when
11062         parsing inline call_foo lines.
11064 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
11066         * ob-maxima.el (org-babel-maxima-command): The maxima command used
11067         should be configurable (defaults to maxima-command if defined).
11068         (org-babel-execute:maxima): The maxima command used should be
11069         configurable (defaults to maxima-command if defined).
11071 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
11073         * ob-C.el (org-babel-C-execute): Add the local directory to the
11074         library search path for C/C++ block compilation.
11076 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
11078         * ob.el (org-babel-where-is-src-block-result): Don't truncate
11079         results name on call line execution.
11081 2012-04-01  Ilya Shlyakhter  <ilya_shl@alum.mit.edu>  (tiny change)
11083         * org-colview.el (org-columns-cleanup-item): Handle case of empty
11084         headline.
11086 2012-04-01  Nicolas Goaziou  <n.goaziou@gmail.com>
11088         * org-footnote.el (org-footnote-delete-definitions): Fix LaTeX
11089         export error when a src block produces fake footnotes.
11091 2012-04-01  Bastien Guerry  <bzg@gnu.org>
11093         * org.el (org-read-date): Don't mention `parse-time-weekdays' and
11094         `parse-time-months' in the docstring.
11096 2012-04-01  Bastien Guerry  <bzg@gnu.org>
11098         * org-agenda.el (org-agenda-filter-apply): Bugfix: Add let
11099         binding.
11101 2012-04-01  Bastien Guerry  <bzg@gnu.org>  (tiny change)
11103         * org-colview.el (org-columns-compute): Also consider inline tasks
11104         when computing the sum.
11106 2012-04-01  Thomas Morgan  <tlm@ziiuu.com>  (tiny change)
11108         * org-habit.el (org-habit-insert-consistency-graphs):
11109         Fix alignment of consistency graph in filtered agenda view.
11111 2012-04-01  Bastien Guerry  <bzg@gnu.org>
11113         * org-latex.el (org-export-as-latex): Fix bug in setting the
11114         export directory according to the LaTeX options.
11116 2012-04-01  K.Nagashima  <uni.naga@gmail.com>  (tiny change)
11118         * org.el (org-show-subtree): Make interactive.
11120 2012-04-01  Ilya Shlyakhter  <ilya_shl@alum.mit.edu>
11122         * org-clock.el (org-clock-get-table-data): Make sure todo-only
11123         does not leak when it is set by make-org-tags-macher.
11125 2012-04-01  Bastien Guerry  <bzg@gnu.org>
11127         * org.el (org-cycle-internal-local): Don't try to hide drawers
11128         within subtrees in this function, it slows cycling down.
11130 2012-04-01  Bastien Guerry  <bzg@gnu.org>
11132         * org-agenda.el (org-agenda-custom-commands-local-options):
11133         Fix incorrect custom option definition.
11135 2012-04-01  Bastien Guerry  <bzg@gnu.org>
11137         * org-colview.el (org-columns-display-here): Bugfix: use the date
11138         as the value for the ITEM column when displaying a summary.
11140 2012-04-01  Martyn Jago  <martyn.jago@btinternet.com>
11142         * ob-lilypond.el: Re-direct homepage to Worg.
11144 2012-04-01  Martyn Jago  <martyn.jago@btinternet.com>
11146         * ob-lilypond.el: Leave versioning to Org.
11148 2012-04-01  Martyn Jago  <martyn.jago@btinternet.com>
11150         * ob-lilypond.el: Fix compiler warning.
11152 2012-04-01  Jambunathan K  <kjambunathan@gmail.com>
11154         * org-odt.el (org-odt-format-entity-caption): Enumerate entities
11155         that have either a caption or a label.
11156         (org-odt-label-styles, org-odt-category-map-alist): Add a
11157         separator between sequence number and caption.  Introduced two
11158         new label styles for handling of math formula and math label.
11159         (org-odt-format-label-definition)
11160         (org-export-odt-format-formula): Propagate above changes.
11162 2012-04-01  Bastien Guerry  <bzg@gnu.org>
11164         * org.el (org-enforce-todo-dependencies): Fix docstring.
11166 2012-04-01  Jambunathan K  <kjambunathan@gmail.com>
11168         * org-odt.el (org-export-odt-category-strings): New custom
11169         variable.
11170         (org-odt-category-map-alist): Modify interpretation.
11171         Don't use the same field to double up as both a OpenDocument
11172         variable and a category string.  Entries in this list now
11173         specify only the OpenDocument variable.  Category strings are
11174         obtained through an indirect lookup of
11175         `org-export-odt-category-strings'.  Use same OpenDocument
11176         variables as what LibreOffice uses for various entities.
11177         Fix docstring.
11178         (org-odt-add-label-definition)
11179         (org-odt-format-label-definition)
11180         (org-odt-format-label-reference): Propagate above changes.
11182 2012-04-01  Bastien Guerry  <bzg@gnu.org>  (tiny change)
11184         * org-latex.el (org-export-as-latex): Check TeX-master correctly.
11186 2012-04-01  Jambunathan K  <kjambunathan@gmail.com>
11188         * org-odt.el (org-odt-category-map-alist): Update docstring.
11189         (org-export-odt-user-categories)
11190         (org-export-odt-get-category-from-label)
11191         (org-odt-get-label-category-and-style): Remove.
11192         (org-odt-add-label-definition): Propagate above changes.
11194 2012-04-01  Bastien Guerry  <bzg@gnu.org>  (tiny change)
11196         * org.el (org-refile): Don't allow creation of parents when using
11197         the refile command to go to a headline.
11199 2012-04-01  Jambunathan K  <kjambunathan@gmail.com>
11201         * org-odt.el (org-odt-format-org-link): Resolve links to headlines
11202         as section numbers only if section numbering is on.
11204 2012-04-01  Bastien Guerry  <bzg@gnu.org>
11206         * org.el (format-spec): Require 'format-spec.
11208 2012-04-01  Bastien Guerry  <bzg@gnu.org>  (tiny change)
11210         * org-latex.el (org-export-as-latex): Fix TeX-master declaration.
11212 2012-04-01  Ilya Shlyakhter  <ilya_shl@alum.mit.edu>  (tiny change)
11214         * org.el (org-imenu-get-tree): Check that looking-at succeeds
11215         before using match results.
11217 2012-04-01  Bastien Guerry  <bzg@gnu.org>
11219         * org-exp-blocks.el (org-ditaa-jar-path): Make a defcustom.
11221 2012-04-01  Jambunathan K  <kjambunathan@gmail.com>
11223         * org-lparse.el (org-do-lparse): Make effective setting of
11224         `org-export-headline-levels' available to the ODT exporter.
11225         Also remove some stale comments.
11227 2012-04-01  Jambunathan K  <kjambunathan@gmail.com>
11229         * org-odt.el (org-odt-begin-toc): Handle named HTML entities in
11230         per-language string for "Table Of Contents".
11232 2012-04-01  Bastien Guerry  <bzg@gnu.org>
11234         * org-exp-blocks.el (org-ditaa-jar-path): Fix merge conflict.
11236 2012-04-01  Shaun Johnson  <shaun@slugfest.demon.co.uk>  (tiny change)
11238         * org-exp-blocks.el (org-ditaa-jar-path): Better heuristic to find
11239         the libary name.
11241 2012-04-01  Suvayu Ali  <fatkasuvayu+linux@gmail.com>
11243         * org-src.el (org-edit-src-code): Change let bind to let*, e.g. if
11244         case-fold-search is bound to nil globally, the
11245         (case-fold-search t) doesn't work until we get to the body.
11247 2012-04-01  Bastien Guerry  <bzg@gnu.org>  (tiny change)
11249         * org-latex.el (org-export-latex-tables): Allow to use
11250         sidewaystable.
11252 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
11254         * ob.el (org-babel-expand-noweb-references): Fix bug in src name
11255         regexp when using *org-babel-use-quick-and-dirty-noweb-expansion*.
11257 2012-04-01  David Maus  <dmaus@ictsoc.de>
11259         * org.el (org-scan-tags): Require one or more spaces (+) between
11260         keyword and headline.
11262 2012-04-01  David Maus  <dmaus@ictsoc.de>
11264         * org-agenda.el (org-prepare-agenda): Don't reset
11265         `org-done-keywords-for-agenda' when `org-agenda-multi'.
11267 2012-04-01  Thomas Morgan  <tlm@ziiuu.com>  (tiny change)
11269         * org-habit.el (org-habit-insert-consistency-graphs): Fix bug
11270         while inserting habit graph in the agenda buffer.
11272 2012-04-01  Bastien Guerry  <bzg@gnu.org>  (tiny change)
11274         * org-src.el (org-src-edit-buffer-p): New function.
11276 2012-04-01  Bastien Guerry  <bzg@gnu.org>  (tiny change)
11278         * org-agenda.el (org-agenda-skip-if): Fix the order conditions are
11279         being checked.  Also enhance the docstring a bit.
11281 2012-04-01  Bastien Guerry  <bzg@gnu.org>  (tiny change)
11283         * org-agenda.el (org-agenda-tree-to-indirect-buffer): Fix the
11284         display of indirect agenda window.
11286 2012-04-01  Bastien Guerry  <bzg@gnu.org>  (tiny change)
11288         * org.el (org-create-formula-image, org-dvipng-color): Fix XEmacs
11289         compatibility bug.
11291 2012-04-01  Carsten Dominik  <carsten.dominik@gmail.com>  (tiny change)
11293         * org-clock.el (org-clock-get-table-data): Bind org-scanner-tags
11294         to tags-list and org-trust-scanner-tags to t while evaluating the
11295         matcher, since the matcher is always evaluated at the current
11296         entry.
11298 2012-04-01  Ilya Shlyakhter  <ilya_shl@alum.mit.edu>  (tiny change)
11300         * org.el (org-scan-tags): Bind org-trust-scanner-tags to t while
11301         evaluating the matcher, since the matcher is always evaluated at
11302         the current entry.
11304 2012-04-01  Ilya Shlyakhter  <ilya_shl@alum.mit.edu>  (tiny change)
11306         * ob-lilypond.el (ly-compile-lilyfile): Fix misplaced comma in a
11307         quoting expression.
11309 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
11311         * ob.el (org-babel-merge-params): Add "eval" as acceptable noweb
11312         argument.
11313         (org-babel-noweb-p): The "eval" argument only expands during
11314         evaluation.
11316 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
11318         * ob.el (org-strip-protective-commas): Declared.
11320         * org-agenda.el (org-agenda-filtered-by-category): Declared.
11321         (org-agenda-filter-apply): Capture free variable.
11323         * org-footnote.el (org-skip-whitespace): Declared.
11325         * org-mobile.el (org-agenda-filter): Declared.
11327         * org-src.el (org-strip-protective-commas): Declared.
11329 2012-04-01  Sebastien Vauban  <sva@mygooglest.com>  (tiny change)
11331         * org.el (org-version): Add autoload cookie.
11333 2012-04-01  David Maus  <dmaus@ictsoc.de>
11335         * org-attach.el (org-attach-store-link-p): Remove spurious quote
11336         in customization form choice.
11338 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
11340         * ob-sh.el (org-babel-execute:sh): Pass all params to subroutine.
11341         (org-babel-sh-evaluate): Apply :shebang and :padline to shell script
11342         execution.
11344 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
11346         * ob.el (org-babel-insert-result): Ensure correct order for empty
11347         result wrapping blocks.
11349 2012-04-01  Martyn Jago  <martyn.jago@btinternet.com>
11351         * ob-lilypond.el: Make auditioning of midi and pdf asynchronous,
11352         and add easy pdf generation in the form of `ly-gen-pdf' variable.
11354 2012-04-01  Deech  <deech@deech-ThinkPad-X200.none>  (tiny change)
11356         * ob-tangle.el (org-babel-spec-to-string): The link generated by
11357         org-store-link is escaped twice when tangling with ":comments yes"
11358         flag.
11360 2012-04-01  Bastien Guerry  <bzg@gnu.org>
11362         * org-html.el (org-export-as-html): Remove another useless space
11363         before tag.
11365 2012-04-01  Bastien Guerry  <bzg@gnu.org>
11367         * org-html.el (org-export-as-html): Remove another useless space
11368         before tag.
11370 2012-04-01  Bastien Guerry  <bzg@gnu.org>
11372         * org-html.el (org-export-as-html): Remove useless space before
11373         tag.
11375 2012-04-01  Sebastien Vauban  <sva@mygooglest.com>  (tiny change)
11377         * org.el (org-version): Add autoload cookie.
11379 2012-04-01  Bastien Guerry  <bzg@gnu.org>
11381         * org.el (org-get-category): Save match data.
11383 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
11385         * ob-tangle.el (org-babel-tangle): Don't prompt for a file name if
11386         :tangle is specified.
11388         * ob.el (org-babel-expand-noweb-references): Widen buffer when
11389         expanding noweb references.
11391 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
11393         * ob-table.el (sbe): Don't accidentally leave a `t' value when
11394         variables are force interpreted as strings.
11396 2012-04-01  David Maus  <dmaus@ictsoc.de>
11398         * org-bbdb.el (org-bbdb-open, org-bbdb-open-old)
11399         (org-bbdb-open-new): Pass record name to avoid dynamic scoping.
11401 2012-04-01  David Maus  <dmaus@ictsoc.de>
11403         * org-bbdb.el (bbdb-record-get-field, bbdb-search-name)
11404         (bbdb-search-organization): Declare functions to silence byte
11405         compiler.
11407 2012-04-01  Bernt Hansen  <bernt@norang.ca>
11409         * org.el (org-clone-subtree-with-time-shift): Fix task cloning for
11410         repeating tasks using .+n and ++n syntax.
11412 2012-04-01  Karl Fogel  <kfogel@red-bean.com>  (tiny change)
11414         * org-agenda.el (org-agenda-highlight-todo): Handle the case of a
11415         heading that has a date but no todo keyword.
11417 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
11419         * ob.el (org-babel-find-named-result): Fix code block replacement
11420         with results.
11422 2012-04-01  Nicolas Goaziou  <n.goaziou@gmail.com>
11424         * org-footnote.el (org-footnote-normalize): Do not normalize
11425         labels when sort-only is non-nil.
11427 2012-04-01  Nicolas Goaziou  <n.goaziou@gmail.com>
11429         * org-footnote.el (org-footnote-normalize): Remove an useless part
11430         of the function.
11431         (org-insert-footnote-reference-near-definition): Remove function.
11433 2012-04-01  Nicolas Goaziou  <n.goaziou@gmail.com>
11435         * org-footnote.el (org-footnote-normalize): Fix normalization of
11436         inline footnotes with no footnote section.
11438 2012-04-01  David Maus  <dmaus@ictsoc.de>
11440         * org-bbdb.el (org-bbdb-old): Replace `defvar' after loading 'bbdb
11441         to check for old or new version by a check for the required
11442         function in `org-bbdb-open' and `org-bbdb-store-link'.
11443         (org-bbdb-store-link, org-bbdb-open): Check which version of bbdb is
11444         to be used.
11446 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
11448         * ob.el (org-babel-find-named-result): Don't miss a code block
11449         when there are confounding spaces after the result name.
11451 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
11453         * ob-lob.el (org-babel-block-lob-one-liner-regexp): Less greedy
11454         regular expressions.
11455         (org-babel-inline-lob-one-liner-regexp): Less greedy regular
11456         expressions.
11458 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
11460         * ob.el (org-babel-examplize-region): Fix bug in examplization.
11462 2012-04-01  Nicolas Goaziou  <n.goaziou@gmail.com>
11464         * org.el (org-link-search): Search for #+name affiliated keywords
11465         and invisible targets.
11467 2012-04-01  Jambunathan K  <kjambunathan@gmail.com>
11469         * org-lparse.el (org-lparse-end-footnote-definition): Cleanup
11470         newlines in a transcoded footnote definition.  This ensures that
11471         the line that is currently being processed by `org-do-lparse' loop
11472         doesn't get broken up into multiple lines.  Fix for the following
11473         bug -
11475 2012-04-01  Jambunathan K  <kjambunathan@gmail.com>
11477         * org-footnote.el (org-footnote-normalize): Force a paragraph
11478         break after the last footnote definition.  This is an an implicit
11479         assumption made by the org-lparse.el library.  With this change,
11480         footnote definitions can reliably be exported with ODT backend.
11481         See http://lists.gnu.org/archive/html/emacs-orgmode/2012-02/msg01013.html.
11483 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
11485         * ob-ditaa.el (org-ditaa-jar-path): Fix a recursive load error.
11487 2012-04-01  Nicolas Goaziou  <n.goaziou@gmail.com>
11489         * org-list.el (org-list-struct): Fix small bug introduced by
11490         commit 8b7a3f249803aba612f9ad3ae50c2fc986247da4 in Org's git repo.
11492 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
11494         * ob-ditaa.el (org-ditaa-jar-path): Already defined in
11495         org-exp-blocks.el.
11497         * org-exp-blocks.el (org-ditaa-jar-path): Declare appropriately
11498         for the fact that this is really now a Babel thing -- even if it
11499         is used here and the definition should remain here for reasons of
11500         load dependencies.
11502 2012-04-01  David Maus  <dmaus@ictsoc.de>
11504         * org-bbdb.el (org-bbdb-old): Wrap `defvar' so the variable gets
11505         defined after bbdb was loaded.
11507 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
11509         * org-latex.el (org-export-latex-tables): Don't add spurious
11510         preceding newline if caption is not above a longtable.
11512 2012-04-01  Jambunathan K  <kjambunathan@gmail.com>
11514         * org-odt.el (org-odt-insert-toc): Remove this stray,
11515         dysfunctional routine.  This possibly has crept in because of the
11516         broken merges between "maint" and "origin" branches.
11517         (org-odt-begin-table): Don't emit an empty paragraph when a table is
11518         neither labeled nor captioned.
11519         (org-odt-init-outfile): Remove reference to an unused variable.
11521 2012-04-01  Viktor Rosenfeld  <listuser36@googlemail.com>
11523         * ob-sql.el (org-babel-execute:sql): Add support for MonetDB to
11524         SQL code blocks.
11526 2012-04-01  Andreas Leha  <andreas.leha@med.uni-goettingen.de>
11528         * ob.el (org-babel-goto-named-src-block): Pushing the point to the
11529         org-mark-ring and guessing at the code block name to jump to.
11531 2012-04-01  David Maus  <dmaus@ictsoc.de>
11533         * org-agenda.el (org-agenda-tree-to-indirect-buffer): Fix handling
11534         of indirect buffer and window.
11536 2012-04-01  Nicolas Goaziou  <n.goaziou@gmail.com>
11538         * org-footnote.el (org-footnote-forbidden-blocks): Allow footnotes
11539         in verse blocks.
11541 2012-04-01  Nicolas Goaziou  <n.goaziou@gmail.com>
11543         * org-footnote.el (org-footnote-forbidden-blocks): Allow footnotes
11544         in verse blocks.
11546 2012-04-01  Nicolas Goaziou  <n.goaziou@gmail.com>
11548         * org-exp.el (org-table-clean-before-export): Ignore table rows
11549         defining parameters for formulas during export.
11551 2012-04-01  Nicolas Goaziou  <n.goaziou@gmail.com>
11553         * org-list.el (org-list-get-item-number): New function.
11555 2012-04-01  Nicolas Goaziou  <n.goaziou@gmail.com>
11557         * org-list.el (org-list-ending-method, org-list-end-regexp):
11558         Remove variables.
11559         (org-in-item-p, org-list-separating-blank-lines-number)
11560         (org-list-parse-list, org-list-struct): Apply changes.
11562         * org-exp.el (org-export-mark-list-end)
11563         (org-export-mark-list-properties): Apply changes.
11565         * org-latex.el (org-export-latex-lists): Apply changes.
11567 2012-04-01  Nicolas Goaziou  <n.goaziou@gmail.com>
11569         * org.el (org-cycle-internal-local): Correctly unfold headlines
11570         containing an inlinetask.
11572 2012-04-01  Bastien Guerry  <bzg@gnu.org>
11574         * org.el (org-structure-template-alist): Fix missing angle
11575         brackets for muse export style.
11577 2012-04-01  David Maus  <dmaus@ictsoc.de>
11579         * org.el (org-recenter-calendar): Use `with-selected-window' to
11580         select calendar window and save currently selected window and
11581         current buffer.
11583 2012-04-01  Toby S. Cubitt  <tsc25@cantab.net>  (tiny change)
11585         * org.el (org-goto): Call org-refile-get-location with NO-EXCLUDE
11586         argument set, otherwise not only are headlines in the current
11587         subtree excluded, but it throws an error if point happens not to
11588         be within a subtree (e.g. at start of buffer).
11590 2012-04-01  David Maus  <dmaus@ictsoc.de>
11592         * org.el (org-scan-tags): Fix highlighting in sparse-tree.
11594 2012-04-01  David Maus  <dmaus@ictsoc.de>
11596         * org-clock.el (org-in-clocktable-p): Move to org.el.
11598         * org.el (org-in-clocktable-p): New function.  Moved from
11599         org-clock.el.
11601 2012-04-01  David Maus  <dmaus@ictsoc.de>
11603         * org-exp.el (org-export-get-title-from-subtree): Don't format
11604         tags in title if title headline does not have tags.
11606 2012-04-01  Bastien Guerry  <bzg@gnu.org>
11608         * org.el (org-cycle-internal-local): Fix bug: hide drawers in
11609         inline tasks too.
11611 2012-04-01  Jambunathan K  <kjambunathan@gmail.com>
11613         * org-odt.el (org-odt-format-preamble): Don't insert TOC here.
11614         Delay it till the end of export.
11615         (org-odt-begin-document-body): Make a note of the default
11616         position of TOC in `org-lparse-dyn-first-heading-pos'.
11617         (org-odt-insert-toc): Insert TOC as directed by
11618         [TABLE-OF-CONTENTS] line or at the default position.
11619         (org-odt-end-export): Call `org-odt-insert-toc'.
11621 2012-04-01  Bastien Guerry  <bzg@gnu.org>
11623         * org.el (org-preview-latex-fragment): Throw an error when called
11624         from a non-file buffer.
11626 2012-04-01  David Maus  <dmaus@ictsoc.de>
11628         * org-capture.el (org-capture-place-item): Don't search for
11629         position in existing list if :exact-position was supplied.
11631 2012-04-01  Bastien Guerry  <bzg@gnu.org>
11633         * org.el (org-set-font-lock-defaults): Fix bug in done headline
11634         fontification.
11636 2012-04-01  Jambunathan K  <kjambunathan@gmail.com>
11638         * org-odt.el (org-odt-format-textbox): Honor user-specified width
11639         in captioned images.
11641 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
11643         * org.el (org-update-property-plist): Fix bug in property list
11644         updates.
11646 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
11648         * ob.el (org-babel-balanced-split): Explicit checking if list
11649         before calling member.
11651 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
11653         * ob-sqlite.el (org-babel-execute:sqlite): Specify the use of ","
11654         as the separator to `org-table-convert-region'.  Fixes errors when
11655         only one result per line of output.
11657 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
11659         * ob.el (org-babel-strip-protective-commas):
11660         Use `org-strip-protective-commas'.
11662         * org-exp.el (org-export-select-backend-specific-text):
11663         Use `org-strip-protective-commas'.
11665         * org-src.el (org-edit-src-code):
11666         Use `org-strip-protective-commas'.
11668         * org.el (org-strip-protective-commas): Single definition for this
11669         functionality.
11671 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
11673         * ob-sql.el: Mention ob-sqlite in the comments of ob-sql.
11675 2012-04-01  David Maus  <dmaus@ictsoc.de>
11677         * org-capture.el (org-capture-prepare-finalize-hook): New hook.
11678         Run before the finalization process starts.
11679         (org-capture-finalize): Run new hook.
11681 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
11683         * org.el (org-entry-get): Generalize to multiple "prop+"
11684         properties.
11686 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
11688         * org-src.el (org-src-mode-map): Rebinding `org-edit-src-save' in
11689         the `org-src-mode-map'.
11691 2012-04-01  David Maus  <dmaus@ictsoc.de>
11693         * org.el (org-recenter-calendar): Use `with-selected-window' to
11694         select calendar window and save currently selected window and
11695         current buffer.
11697 2012-04-01  Nicolas Goaziou  <n.goaziou@gmail.com>
11699         * org-list.el (org-list-ending-method, org-list-end-regexp):
11700         Remove variables.
11701         (org-in-item-p, org-list-separating-blank-lines-number)
11702         (org-list-parse-list, org-list-struct): Apply changes.
11704         * org-exp.el (org-export-mark-list-end)
11705         (org-export-mark-list-properties): Apply changes.
11707         * org-latex.el (org-export-latex-lists): Apply changes.
11709 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
11711         * org.el (org-entry-get): Accumulate properties from subtree
11712         property drawers.
11714 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
11716         * org.el (org-entry-get): Accumulate properties from subtree
11717         property drawers.
11719 2012-04-01  Jambunathan K  <kjambunathan@gmail.com>
11721         * org-odt.el (org-export-odt-image-size-probe-method)
11722         (org-odt-do-image-size): Use imagemagick preferentially to
11723         determine image sizes.
11725 2012-04-01  Jambunathan K  <kjambunathan@gmail.com>
11727         * org-odt.el (org-export-as-odt-to-buffer)
11728         (org-replace-region-by-odt, org-export-region-as-odt):
11729         Remove these interactive functions.  They are of questionable value.
11731 2012-04-01  Toby S. Cubitt  <tsc25@cantab.net>  (tiny change)
11733         * org.el (org-goto): Call org-refile-get-location with NO-EXCLUDE
11734         argument set, otherwise not only are headlines in the current
11735         subtree excluded, but it throws an error if point happens not to
11736         be within a subtree (e.g. at start of buffer).
11738 2012-04-01  Bastien Guerry  <bzg@gnu.org>
11740         * org-exp.el (org-export-kill-product-buffer-when-displayed)
11741         (org-export-initial-scope, org-export-date-timestamp-format)
11742         (org-export-with-tasks, org-export-email-info)
11743         (org-export-table-remove-empty-lines): Add version tag.
11745 2012-04-01  Nicolas Goaziou  <n.goaziou@gmail.com>
11747         * org.el (org-cycle-internal-local): Correctly unfold headlines
11748         containing an inlinetask.
11750 2012-04-01  Bernt Hansen  <bernt@norang.ca>
11752         * org-clock.el (org-clock-out): Do not delete the current clocking
11753         task when org-clock-out-hook clocks in another task.
11755 2012-04-01  David Maus  <dmaus@ictsoc.de>
11757         * org.el (org-scan-tags): Fix highlighting in sparse-tree.
11759 2012-04-01  Jambunathan K  <kjambunathan@gmail.com>
11761         * org-odt.el (org-export-odt-convert-processes): Re-define
11762         (org-export-odt-convert-capabilities): Fix an accidental
11763         regression.
11765 2012-04-01  Jambunathan K  <kjambunathan@gmail.com>
11767         * org-odt.el (org-export-odt-convert-capabilities): Change the
11768         default value.
11770 2012-04-01  David Maus  <dmaus@ictsoc.de>
11772         * org-clock.el (org-in-clocktable-p): Move to org.el.
11774         * org.el (org-in-clocktable-p): New function.  Moved from org-clock.el.
11776 2012-04-01  David Maus  <dmaus@ictsoc.de>
11778         * org-exp.el (org-export-get-title-from-subtree): Don't format
11779         tags in title if title headline does not have tags.
11781 2012-04-01  Nicolas Goaziou  <n.goaziou@gmail.com>
11783         * org-footnote.el (org-blank-before-new-entry)
11784         (org-export-footnotes-seen, org-export-footnotes-data): Fix bogus
11785         declarations.
11787 2012-04-01  Nicolas Goaziou  <n.goaziou@gmail.com>
11789         * org.el (org-beginning-of-line, org-end-of-line): Fix special C-a
11790         and C-e behavior with visual lines.
11792 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
11794         * org-exp-blocks.el (org-export-blocks): Change the name of
11795         exporting comment blocks given that it seems regular comment
11796         blocks no longer export.
11798 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
11800         * ob-exp.el (org-babel-exp-get-export-buffer): Access current
11801         export buffer.
11802         (org-babel-exp-in-export-file): Access current export buffer.
11803         (org-babel-exp-src-block): Access current export buffer.
11804         (org-babel-exp-inline-src-blocks): Access current export buffer.
11806 2012-04-01  Nicolas Goaziou  <n.goaziou@gmail.com>
11808         * ob-exp.el (org-babel-exp-in-export-file)
11809         (org-babel-exp-src-block, org-babel-exp-inline-src-blocks):
11810         Allow org-current-export-file to contain a buffer.
11812 2012-04-01  Jambunathan K  <kjambunathan@gmail.com>
11814         * org-lparse.el (org-lparse-do-convert): Replace `call-process'
11815         with `shell-command-to-string'.
11817 2012-04-01  Nicolas Goaziou  <n.goaziou@gmail.com>
11819         * org-footnote.el (org-footnote-create-definition): Fix space
11820         insertion when creating a new footnote.  This fixes newline
11821         munching when `org-footnote-section' is nil and blank lines
11822         stacking when it isn't nil.
11824 2012-04-01  Nicolas Goaziou  <n.goaziou@gmail.com>
11826         * org-footnote.el (org-footnote-normalize): Make sure that
11827         footnotes are moved to a single place during export.
11829 2012-04-01  Nicolas Goaziou  <n.goaziou@gmail.com>
11831         * org-footnote.el (org-footnote-normalize): Ensure footnote
11832         definition will be inserted at the end of the section
11833         corresponding to to its first reference.
11835 2012-04-01  Nicolas Goaziou  <n.goaziou@gmail.com>
11837         * org-footnote.el (org-footnote-at-definition-p): Make sure to
11838         move point at the beginning of the separator before skiping white
11839         spaces.  Refactor code.
11841 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
11843         * ob-exp.el (org-babel-exp-src-block): Strip noweb references on
11844         export when "strip-export".
11846         * ob.el (org-babel-common-header-args-w-values): New noweb
11847         header value.
11848         (org-babel-merge-params): New noweb header value.
11849         (org-babel-noweb-p): New noweb header value.
11851 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
11853         * ob-tangle.el (org-babel-tangle-clean): Just use default value.
11855         * ob.el (org-babel-noweb-wrap): Add default value.
11856         (org-babel-expand-noweb-references): Just use default value.
11858 2012-04-01  Nicolas Goaziou  <n.goaziou@gmail.com>
11860         * org-exp.el (org-export-select-backend-specific-text): Always
11861         preserve original indentation as a text property so that lists do
11862         not get broken by indentation at column 0.
11864 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
11866         * ob.el (org-babel-expand-noweb-references): Don't allow newlines
11867         in source names in noweb references.
11869 2012-04-01  Nicolas Goaziou  <n.goaziou@gmail.com>
11871         * org.el (org-fill-line-break-nobreak-p): New function.
11872         (org-set-autofill-regexps): Add previous function to
11873         `fill-nobreak-predicate'.
11875 2012-04-01  Vitalie Spinu  <spinuvit@gmail.com>  (tiny change)
11877         * ob-R.el (org-babel-R-evaluate-session): Inhibit R evaluation
11878         visibility regardless of local user customization.
11880 2012-04-01  Carsten Dominik  <carsten.dominik@gmail.com>
11882         * org-inlinetask.el (org-inlinetask-show-first-star): New option.
11883         (org-inlinetask-fontify): Honor `org-inlinetask-show-first-star'.
11885         * org-indent.el (org-indent-set-line-properties):
11886         Honor `org-inlinetask-show-first-star'.
11888 2012-04-01  Bastien Guerry  <bzg@gnu.org>
11890         * org.el (org-set-regexps-and-options): Ensure `org-drawers'
11891         doesn't contain duplicates.
11893 2012-04-01  Bastien Guerry  <bzg@gnu.org>
11895         * org.el (org-at-drawer-p): Normalize the docstring to match other
11896         `org-at-*-p' docstrings.
11897         (org-indent-block, org-indent-drawer, org-at-block-p):
11898         New functions.
11899         (org-metaright): Use the new functions to indent a drawer or a
11900         block depending on the context.  Also update the docstring.
11902 2012-04-01  Bastien Guerry  <bzg@gnu.org>
11904         * org.el (org-set-regexps-and-options): Set the value of
11905         `org-drawers' by adding the value of the infile #+DRAWERS option
11906         to that of the existing `org-drawers'.
11908 2012-04-01  Bastien Guerry  <bzg@gnu.org>
11910         * org.el (org-cycle-internal-local): Fix bug: hide drawers in
11911         inline tasks too.
11913 2012-04-01  Bastien Guerry  <bzg@gnu.org>
11915         * org-inlinetask.el (org-inlinetask-toggle-visibility):
11916         Use `org-show-entry' instead of `outline-flag-region' to keep the
11917         drawers folded when unfolding an inline task.
11919 2012-04-01  Torsten Anders  <torsten.anders@beds.ac.uk>  (tiny change)
11921         * org-beamer.el (org-beamer-environments-default): Add support and
11922         keybinding for the `exampleblock' environment.
11924 2012-04-01  Michael Brand  <michael.ch.brand@gmail.com>
11926         * org.el (org-open-link-from-string): Regard `reference-buffer'
11927         when setting `org-inhibit-startup'.
11929 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
11931         * ob-exp.el (org-babel-exp-non-block-elements): Don't insert extra
11932         space between inline src block and results on export.
11934 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
11936         * ob.el (org-babel-get-inline-src-block-matches): Allow *any*
11937         punctuation to proceed an inline src block.
11939 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
11941         * ob.el (org-babel-get-inline-src-block-matches): Add ( to the
11942         list of characters allowed to proceed an inline src block.
11944 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
11946         * ob-tangle.el (org-babel-tangle-clean): Use the customizable
11947         noweb wrappers.
11949         * ob.el (org-babel-noweb-wrap-start): Begin a noweb reference.
11950         (org-babel-noweb-wrap-end): End a noweb reference.
11951         (org-babel-noweb-wrap): Apply the customizable noweb wrappers.
11952         (org-babel-expand-noweb-references): Use the customizable noweb
11953         wrappers.
11955 2012-04-01  Nicolas Goaziou  <n.goaziou@gmail.com>
11957         * org.el (org-beginning-of-line): Handle case when there's no
11958         character after box.
11960 2012-04-01  Jambunathan K  <kjambunathan@gmail.com>
11962         * org-odt.el (org-odt-format-preamble): Don't insert TOC here.
11963         Delay it till the end of export.
11964         (org-odt-begin-document-body): Make a note of the default
11965         position of TOC in `org-lparse-dyn-first-heading-pos'.
11966         (org-odt-insert-toc): Insert TOC as directed by
11967         [TABLE-OF-CONTENTS] line or at the default position.
11968         (org-odt-end-export): Call `org-odt-insert-toc'.
11970 2012-04-01  Bastien Guerry  <bzg@gnu.org>
11972         * org.el (org-preview-latex-fragment): Throw an error when called
11973         from a non-file buffer.
11975 2012-04-01  Bastien Guerry  <bzg@gnu.org>
11977         * org.el (org-insert-property-drawer): Not an interactive
11978         command anymore.
11979         (org-insert-drawer): With a prefix argument, insert a property
11980         drawer.  Check for headline within the region before inserting the
11981         drawer.  Don't include special drawers in the completion table.
11982         (org-mode-map): New keybinding `C-c C-x d' for
11983         `org-insert-drawer'.
11985 2012-04-01  Bastien Guerry  <bzg@gnu.org>
11987         * org.el (org-insert-drawer): Support completion over known drawer
11988         names and inserting a drawer around the current region.
11990 2012-04-01  Bastien Guerry  <bzg@gnu.org>
11992         * org.el (org-insert-drawer): New function.
11993         (org-insert-property-drawer): Use it.
11995 2012-04-01  Bastien Guerry  <bzg@gnu.org>
11997         * org-list.el (org-mark-list): New function.
11999 2012-04-01  Bastien Guerry  <bzg@gnu.org>
12001         * org-pcomplete.el (pcomplete/org-mode/drawer): New function to
12002         complete drawer at point.
12003         (org-thing-at-point): Use it.
12005 2012-04-01  Bastien Guerry  <bzg@gnu.org>
12007         * org.el (org-meta-return): Use `newline-and-indent' when in a
12008         property drawer.
12010 2012-04-01  Bastien Guerry  <bzg@gnu.org>
12012         * org.el (org-structure-template-alist): Fix docstring: the
12013         feature is not experimental anymore.
12015 2012-04-01  Bastien Guerry  <bzg@gnu.org>
12017         * org-agenda.el (org-agenda-show-and-scroll-up): Allow `C-u' to
12018         display the item without unfolding drawers and logbooks.
12020 2012-04-01  Bastien Guerry  <bzg@gnu.org>
12022         * org-src.el (org-edit-src-code): Make sure `buffer-file-name' is
12023         always nil.
12025 2012-04-01  Bastien Guerry  <bzg@gnu.org>
12027         * org.el (org-structure-template-alist): Fix missing angle
12028         brackets for muse export style.
12030 2012-04-01  Bastien Guerry  <bzg@gnu.org>
12032         * org.el (org-read-date): New parameter `inactive' when reading
12033         for insertion of inactive timestamps.
12034         (org-time-stamp, org-read-date-display): Use the new
12035         parameter.
12037 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
12039         * ob.el (org-babel-expand-noweb-references): Only allow
12040         reference names which start and end with non-whitespace characters.
12041         Also, raise errors as appropriate given org-babel-noweb-error-langs.
12043 2012-04-01  Bastien Guerry  <bzg@gnu.org>
12045         * org-src.el (org-src-in-org-buffer): Save and restore
12046         `buffer-undo-list' after editing.
12048 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
12050         * ob.el (org-babel-common-header-args-w-values): Add new header
12051         argument.
12052         (org-babel-expand-noweb-references): Use header argument rather than
12053         customization variable.
12055 2012-04-01  David Maus  <dmaus@ictsoc.de>
12057         * org-capture.el (org-capture-place-item): Don't search for
12058         position in existing list if :exact-position was supplied.
12060 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
12062         * ob.el (org-babel-noweb-separator): Custom variable for
12063         accumulated noweb references.
12064         (org-babel-expand-noweb-references): Allow separator for noweb
12065         references.
12067 2012-04-01  Nicolas Goaziou  <n.goaziou@gmail.com>
12069         * org.el (org-beginning-of-line): In an item, special position
12070         for C-a is after check-box, if any.
12071         (org-special-ctrl-a/e): Modify doc-string accordingly.
12073 2012-04-01  Jambunathan K  <kjambunathan@gmail.com>
12075         * org-odt.el (org-export-odt-format-formula): Use :style
12076         property to specify custom table styles.
12078 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
12080         * ob-exp.el (org-babel-exp-call-line-template): Control export of
12081         additional call line information.
12082         (org-babel-exp-non-block-elements): Fancier call line export.
12084 2012-04-01  Jambunathan K  <kjambunathan@gmail.com>
12086         * org-odt.el (org-odt-entity-frame-styles): Add frame params
12087         for images that are anchored as character.
12088         (org-export-odt-format-image): Handle new anchor type
12089         "as-char".
12090         (org-export-odt-default-image-sizes-alist): Misc. change.
12091         (org-export-odt-format-formula): Misc. change.
12093 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
12095         * ob.el (org-babel-check-src-block): Don't report valid header
12096         arguments as suspicious.
12098 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
12100         * ob-exp.el (org-babel-exp-non-block-elements): Map over both
12101         inline src blocks and call lines on export.
12103 2012-04-01  Jambunathan K  <kjambunathan@gmail.com>
12105         * org-odt.el (org-odt-label-styles): Add a new style.
12106         (org-odt-category-map-alist): Use it.
12108 2012-04-01  Jambunathan K  <kjambunathan@gmail.com>
12110         * org-odt.el (org-odt-table-style-format): New.  Template for
12111         auto-generated table styles.
12112         (org-odt-automatic-styles, org-odt-object-counters):
12113         New variables.
12114         (org-odt-add-automatic-style): New function.
12115         (org-odt-write-automatic-styles): New function.
12116         Create automatic styles for tables that have custom :rel-width.
12117         (org-odt-begin-table): Parse attributes specified with
12118         "#+ATTR_ODT: " option and use it to create an automatic table
12119         style.
12120         (org-odt-save-as-outfile):
12121         Call `org-odt-add-write-automatic-styles'.
12122         (org-odt-init-outfile): Init newly add variables.
12123         (org-odt-section-count): Remove it.
12124         (org-odt-begin-section): Use `org-odt-add-automatic-style' to
12125         generate an automatic section name.
12127 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
12129         * ob.el (org-babel-map-executables): Correctly position point when
12130         mapping hits an inline code block.
12132 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
12134         * ob.el (org-babel-execute-src-block): Ensure params are
12135         incorporated *before* checking if evaluation is legal.
12137 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
12139         * ob-exp.el (org-babel-exp-lob-one-liners): Ensure `end' is a
12140         marker so it is updated as required during export.
12142 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
12144         * org-src.el (org-src-in-org-buffer): Run commands in the parent
12145         buffer.
12146         (org-edit-src-save): Use new macro.
12147         (org-src-tangle): Tangle the parent buffer.
12149 2012-04-01  Bastien Guerry  <bzg@gnu.org>
12151         * org.el (org-set-font-lock-defaults): Fix bug in done
12152         headline fontification.
12154 2012-04-01  Bastien Guerry  <bzg@gnu.org>
12156         * org.el (org-set-font-lock-defaults): Fix bug in done
12157         headline fontification.
12159 2012-04-01  Bastien Guerry  <bzg@gnu.org>
12161         * org.el (org-return): Act normally when in code blocks.
12163 2012-04-01  Bastien Guerry  <bzg@gnu.org>
12165         * org.el (org-in-src-block-p): New function.
12166         (org-context): Return new contexts :clocktable and :src-block.
12168 2012-04-01  Bastien Guerry  <bzg@gnu.org>
12170         * org.el (org-set-tags-command, org-set-tags): Make ̀C-u C-c
12171         C-q' do the right thing even when point is before the first
12172         heading.
12174 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
12176         * ob.el (org-babel-noweb-p): Disambiguate intersection name.
12178 2012-04-01  Jambunathan K  <kjambunathan@gmail.com>
12180         * org-odt.el (org-odt-format-textbox): Honor user-specified
12181         width in captioned images.
12183 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
12185         * ob.el (org-babel-map-src-blocks): Replace gensym with make-symbol.
12186         (org-babel-map-inline-src-blocks): Replace gensym with make-symbol.
12187         (org-babel-map-call-lines): Replace gensym with make-symbol.
12188         (org-babel-map-executables): Replace gensym with make-symbol.
12190 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
12192         * ob-exp.el (org-babel-exp-results): Alter a copy of info.
12194 2012-04-01  Bastien Guerry  <bzg@gnu.org>
12196         * org-html.el (org-export-as-html):
12197         Initialize `html-pre-real-contents' correctly.
12199 2012-04-01  Bastien Guerry  <bzg@gnu.org>
12201         * org-html.el (org-export-as-html):
12202         Initialize `html-pre-real-contents' correctly.
12204 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
12206         * ob-exp.el (org-babel-exp-code): Ensure code block name is a
12207         string on export.
12209 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
12211         * ob-exp.el (org-babel-exp-code-template): Customizable code
12212         block export format string.
12213         (org-babel-exp-code): Customizable code block export.
12215 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
12217         * ob-clojure.el (org-babel-execute:clojure): Remove dependency
12218         on deprecated swank-clojure.
12220 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
12222         * ob.el (org-babel-map-src-blocks): Don't pollute symbol space.
12223         (org-babel-map-inline-src-blocks): Don't pollute symbol space.
12224         (org-babel-map-call-lines): Don't pollute symbol space.
12225         (org-babel-map-executables): Map over *all* executable Org-mode
12226         elements.
12227         (org-babel-execute-buffer): Execute elements in buffer order instead
12228         of arbitrarily.
12230 2012-04-01  Nicolas Goaziou  <n.goaziou@gmail.com>
12232         * org.el (org-ctrl-c-ctrl-c): Fix a naive structure backup.
12233         Those must be done with `copy-tree'.
12235 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
12237         * org-src.el (org-edit-src-code): Referenced code block should
12238         not be evaluated on code block edit.
12240 2012-04-01  Bastien Guerry  <bzg@gnu.org>
12242         * org.el (org-structure-template-alist): Use uppercase for
12243         keywords.
12245 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
12247         * ob.el (org-babel-insert-result): Capitalize RESULTS in :wrap'd
12248         code block results.
12250 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
12252         * ob.el (org-babel-results-keyword): New user-configurable
12253         results keyword.
12254         (org-babel-where-is-src-block-result): Use new user-configurable
12255         results keyword.
12257 2012-04-01  Nicolas Goaziou  <n.goaziou@gmail.com>
12259         * org-indent.el (org-indent-refresh-maybe): Check for new
12260         headlines from the beginning of the line to be sure to catch
12261         any newly inserted headline there.
12263 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
12265         * ob-exp.el (org-babel-exp-src-block): Use `org-babel-noweb-p'.
12266         (org-babel-exp-inline-src-blocks): Use `org-babel-noweb-p'.
12268         * ob-tangle.el (org-babel-tangle-collect-blocks):
12269         Use `org-babel-noweb-p'.
12271         * ob.el (org-babel-execute-src-block): Use `org-babel-noweb-p'.
12272         (org-babel-expand-src-block): Use `org-babel-noweb-p'.
12273         (org-babel-load-in-session): Use `org-babel-noweb-p'.
12274         (org-babel-merge-params): Use `org-babel-noweb-p'.
12275         (org-babel-noweb-p): New function used to determine if noweb
12276         expansion should be carried out in a given context.
12278 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
12280         * org.el (org-update-property-plist): Fix bug in property list
12281         updates.
12283 2012-04-01  François Pinard  <pinard@iro.umontreal.ca>  (tiny change)
12285         * org.el (org-kill-line): Use `kill-visual-line' in
12286         `visual-line-mode'.
12288 2012-04-01  Bernt Hansen  <bernt@norang.ca>
12290         * org-agenda.el (org-agenda-switch-to): Widen org buffer only if point
12291         is outside the current restriction.
12293 2012-04-01  Bernt Hansen  <bernt@norang.ca>
12295         * org-agenda.el (org-agenda-clock-in): Save restriction when clocking
12296         in from the agenda.
12298 2012-04-01  Bernt Hansen  <bernt@norang.ca>
12300         * org.el: Honor existing restrictions when regenerating the agenda.
12302 2012-04-01  Bastien Guerry  <bzg@gnu.org>
12304         * org-agenda.el: New alias for `list-diary-entries-hook'.
12306 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
12308         * ob.el (org-babel-common-header-args-w-values): Add the new
12309         header argument name.
12310         (org-babel-insert-result): Respect the value of the :wrap header
12311         argument when inserting results.
12312         (org-babel-result-end): Find the end of arbitrarily named result
12313         blocks.
12315 2012-04-01  Nicolas Goaziou  <n.goaziou@gmail.com>
12317         * org-indent.el (org-indent-refresh-maybe): Check for new
12318         headlines from the beginning of the line to be sure to catch
12319         any newly inserted headline there.
12321 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
12323         * org.el (org-update-property-plist): Remove old instances of
12324         property when adding a new value for property.
12326 2012-04-01  Martyn Jago  <martyn.jago@btinternet.com>
12328         * ob-emacs-lisp.el: A comment on the last line of an emacs-lisp
12329         code block would cause an error when the block is was executed.
12330         This fix cures this behavior.
12332 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
12334         * ob.el (org-babel-expand-noweb-references): Resurrect dropped
12335         pieces of a previous patch.
12337 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
12339         * ob-maxima.el (org-babel-execute:maxima): Fix compiler warning.
12341 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
12343         * ob.el (org-babel-expand-noweb-references): Resurrect dropped
12344         pieces of a previous patch.
12346 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
12348         * ob-maxima.el (org-babel-execute:maxima): Fix compiler warning.
12350 2012-04-01  Bastien Guerry  <bzg@gnu.org>
12352         * org-eshell.el (org-eshell-open): Use (goto-char (point-max))
12353         instead of (end-of-buffer).
12355 2012-04-01  Bastien Guerry  <bzg@gnu.org>
12357         * org-bbdb.el (name): Declare variable.
12358         (bbdb-record-get-field, bbdb-search-name)
12359         (bbdb-search-organization): Declare as part of ext:bbdb.
12361 2012-04-01  Bastien Guerry  <bzg@gnu.org>
12363         * org-mobile.el (org-mobile-push): Use `org-agenda-tag-filter'
12364         instead of the obsolete `org-agenda-filter'.
12366 2012-04-01  Bastien Guerry  <bzg@gnu.org>
12368         * org-agenda.el: Add an alias for `org-agenda-filter'.
12369         (diary-list-entries-hook): Use the non-obsolete hook.
12370         (org-agenda-filter-apply): Silent compiler warning.
12372 2012-04-01  Bastien Guerry  <bzg@gnu.org>
12374         * ob-ditaa.el (org-ditaa-jar-path): Make a defcustom.
12375         (org-ditaa-jar-option): New option.
12376         (org-babel-execute:ditaa): Use it.
12378 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
12380         * ob.el (org-babel-balanced-split): Explicit checking if list
12381         before calling member.
12383 2012-04-01  Eric Schulte  <eric.schulte@gmx.com>
12385         * ob.el (org-babel-balanced-split): Explicit checking if list
12386         before calling member.
12388 2012-02-14  Chong Yidong  <cyd@gnu.org>
12390         * org-footnote.el: Remove bogus defvar values (Bug#10745).
12392 2012-01-05  Eric Schulte  <eric.schulte@gmx.com>
12394         * ob.el (org-babel-expand-noweb-references): Resurrect dropped
12395         pieces of a previous patch.
12397         * ob-maxima.el (org-babel-execute:maxima): Fix compiler warning.
12399 2012-01-05  Bastien Guerry  <bzg@gnu.org>
12401         * org-eshell.el (org-eshell-open): Use (goto-char (point-max))
12402         instead of (end-of-buffer).
12404         * org-bbdb.el (name): Declare variable.
12405         (bbdb-record-get-field, bbdb-search-name)
12406         (bbdb-search-organization): Declare as part of ext:bbdb.
12408         * org-agenda.el: Add an alias for `org-agenda-filter'.
12409         (diary-list-entries-hook): Use the non-obsolete hook.
12410         (org-agenda-filter-apply): Silent compiler warnings.
12412         * org-mobile.el (org-mobile-push): Use `org-agenda-tag-filter'
12413         instead of the obsolete `org-agenda-filter'.
12415 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12417         * org.el (org-ctrl-c-ctrl-c): Preserve symmetry when adding
12418         and removing checkboxes with `C-u C-c C-c' on the first item
12419         of a list.  Also, don't reinitialize checkboxes that are
12420         already ticked.
12422 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12424         * org.el (org-ts-regexp0, org-ts-regexp1): Also match a time
12425         value with only one digit for the hours.
12427 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12429         * org-agenda.el (org-batch-agenda, org-batch-agenda-csv):
12430         Remove deleted function `org-encode-for-stdout'.
12432 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12434         * org.el (org-show-context): Complete docstring.
12436 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12438         * org-agenda.el (org-agenda-filter-by-tag):
12439         Use `read-char-exclusive' instead of `read-char'.
12441 2012-01-03  Carsten Dominik  <carsten.dominik@gmail.com>  (tiny change)
12443         * org-clock.el (org-clock-in, org-clock-find-position):
12444         Remove erraneous space in regexp.
12446 2012-01-03  Eric Schulte  <eric.schulte@gmx.com>
12448         * ob.el (org-babel-expand-noweb-references): Rather than using
12449         a pure regexp solution to resolve noweb references, actually
12450         check the information of every code block in the buffer.
12451         This will cause a slowdown in noweb reference expansion, but is
12452         necessary for correct behavior.
12454 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12456         * org.el (org-map-continue-from): Fix typo in docstring.
12458 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12460         * org.el (org-property-re): Also match cumulating properties
12461         like ":prop+:".
12463 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12465         * org-exp-blocks.el (org-export-blocks-preprocess): Fix regexp for
12466         matching the end of a block.
12468 2012-01-03  David Maus  <dmaus@ictsoc.de>
12470         * org.el (org-open-at-point): Escape link path for http:,
12471         https:, ftp:, news:, and doi: links only if the path contains
12472         space or non-ascii character.
12474 2012-01-03  David Maus  <dmaus@ictsoc.de>
12476         * org.el (org-refile-get-targets): Ignore headlines without a
12477         true headline.
12479 2012-01-03  Eric Schulte  <eric.schulte@gmx.com>
12481         * ob.el (org-babel-map-call-lines): Move this file from
12482         ob-lob.el into ob.el to ease dependency pains.
12484 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12486         * org-publish.el (org-publish-index-generate-theindex):
12487         Use theindex.inc for storing index entries, and theindex.org for
12488         including theindex.inc.
12490 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12492         * org-publish.el (org-publish-index-generate-theindex):
12493         Create proper file target for index entries in subdirectories.
12495 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12497         * org-protocol.el (org-protocol-check-filename-for-protocol):
12498         Fix spelling mistake.
12500 2012-01-03  Jambunathan K  <kjambunathan@gmail.com>
12502         * org-odt.el (org-export-odt-default-org-styles-alist): Add styles
12503         for title and subtitle.
12504         (org-odt-format-toc): New.
12505         (org-odt-format-preamble): New.  Users can redefine this to
12506         customize what goes before the document body.  Currently it
12507         outputs title, author and email, date and toc.
12508         (org-odt-begin-document-body): Use `org-odt-format-preamble'.
12509         (org-odt-format-date): Rename from
12510         `org-odt-iso-date-from-org-timestamp'.  Also added an
12511         additional param for format string.
12512         (org-odt-begin-annotation, org-odt-update-meta-file):
12513         Use `org-odt-format-date'.
12515 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12517         * org.el (org-at-drawer-p): New function.
12518         (org-end-of-line): Use it.
12520 2012-01-03  Eric Schulte  <eric.schulte@gmx.com>
12522         * ob.el (*org-babel-use-quick-and-dirty-noweb-expansion*):
12523         Controls the method in which noweb references are expanded.
12524         (org-babel-expand-noweb-references): Bring back the option for
12525         regexp-based noweb expansion.
12527 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12529         * org.el (org-ts-regexp0, org-ts-regexp1): Also match a time value
12530         with only one digit for the hours.
12532 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12534         * org.el (org-ctrl-c-ctrl-c): Don't make `C-c C-c' special
12535         when ticking the checkbox of the first item.
12537 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
12539         * org-list.el (org-list-write-struct): Add an optional
12540         argument for structure changes happening outside the function.
12542         * org.el (org-ctrl-c-ctrl-c): Now, `C-u C-c C-c' on the first
12543         item of a sub-list should toggle check-box presence of every
12544         item in the same sub-list.  Also fix check-box insertion on a
12545         single item.
12547 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12549         * org-agenda.el (org-agenda-filter-preset): New alias.
12550         (org-agenda-filter-by-category): New command.
12551         (org-agenda-mode-map): Add the new command.
12552         (org-agenda-custom-commands-local-options): Add category
12553         filter preset.
12554         (org-agenda-mark-filtered-text): Mark both tag and filter
12555         overlays.
12556         (org-agenda-category-filter-preset): New variable.
12557         (org-finalize-agenda, org-agenda-redo)
12558         (org-agenda-filter-make-matcher, org-agenda-filter-apply):
12559         Handle both category and tag filters.
12560         (org-agenda-filter-show-all-tag): Rename from
12561         `org-agenda-filter-by-tag-show-all'.
12562         (org-agenda-filter-show-all-cat): New function.
12563         (org-agenda-set-mode-name): Show the category filter in the
12564         modeline.
12566 2012-01-03  Carsten Dominik  <carsten.dominik@gmail.com>
12568         * org-bbdb.el (org-bbdb-old): New variable.
12569         (org-bbdb-store-link, org-bbdb-open): Check for
12570         `org-bbdb-old'.
12571         (org-bbdb-open-old, org-bbdb-open-new): New functions.
12573 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12575         * org-agenda.el (org-batch-agenda, org-batch-agenda-csv):
12576         Remove deleted function `org-encode-for-stdout'.
12578 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12580         * org.el (org-check-dates-range): New command.
12581         (org-sparse-tree): Use it.
12583 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12585         * org-agenda.el (org-agenda-write): Rename from
12586         `org-write-agenda'.
12587         (org-agenda-mode-map, org-agenda-menu)
12588         (org-batch-store-agenda-views): Use new name
12589         `org-agenda-write'.
12591 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12593         * org.el (org-loop-over-headlines-in-active-region):
12594         Fix docstring.
12595         (org-todo, org-deadline, org-schedule): Honor the 'start-level
12596         value of `org-loop-over-headlines-in-active-region'.
12598 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12600         * org-archive.el (org-archive-subtree)
12601         (org-archive-to-archive-sibling, org-toggle-archive-tag):
12602         Bugfix: use 'region-start-level.
12604 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12606         * org.el (org-show-context): Complete docstring.
12608 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12610         * org-agenda.el (org-agenda-filter-by-tag):
12611         Use `read-char-exclusive' instead of `read-char'.
12613 2012-01-03  Carsten Dominik  <carsten.dominik@gmail.com>
12615         * org.el (org-scan-tags): Make sure `org-map-continue-from' is
12616         nil at each match.
12618 2012-01-03  Carsten Dominik  <carsten.dominik@gmail.com>  (tiny change)
12620         * org-clock.el (org-clock-in, org-clock-find-position):
12621         Remove erraneous space in regexp.
12623 2012-01-03  Jambunathan K  <kjambunathan@gmail.com>
12625         * org-odt.el (org-odt-lib-dir): Add docstring.
12626         (org-odt-data-dir): New variable.  Use this variable to
12627         control the locations from which the ODT exporter picks the
12628         OpenDocument styles and schema files from.  Set this variable
12629         explicitly only if the in-built heuristics for locating the
12630         above files fails.
12631         (org-odt-styles-dir-list, org-odt-schema-dir-list):
12632         New variables.  Pay specific attention to (eval-when-compile ...)
12633         form through which Makefile's $(datadir) - contained in
12634         `org-odt-data-dir' - gets compiled in as a "hard coded"
12635         constant.
12636         (org-odt-styles-dir, org-export-odt-schema-dir): Add messages to
12637         aid debugging.
12639 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12641         * org-archive.el (org-archive-subtree)
12642         (org-archive-to-archive-sibling, org-toggle-archive-tag)
12643         (org-archive-set-tag): Handle the 'start-level value for
12644         `org-loop-over-headlines-in-active-region'.
12646 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12648         * org.el (org-scan-tags): New parameter `start-level' to scan only
12649         through headlines of that level.
12650         (org-map-entries): New allowed value `region-start-level' for
12651         the `scope' parameter, to allow scanning through headlines of
12652         the same level than the first headline in the region.
12653         (org-loop-over-headlines-in-active-region): New allowed value
12654         'start-level.
12656 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12658         * org-archive.el (org-archive-subtree)
12659         (org-archive-to-archive-sibling, org-archive-set-tag)
12660         (org-toggle-archive-tag): Allow to loop over the active region by
12661         using `org-loop-over-headlines-in-active-region'.
12663 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12665         * org.el (org-todo): Allow to loop over the active region by
12666         using `org-loop-over-headlines-in-active-region'.
12668 2012-01-03  Eric Schulte  <eric.schulte@gmx.com>
12670         * ob.el (org-babel-expand-noweb-references): Rather than using
12671         a pure regexp solution to resolve noweb references, actually
12672         check the information of every code block in the buffer.
12673         This will cause a slowdown in noweb reference expansion, but is
12674         necessary for correct behavior.
12676 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12678         * org.el (org-map-continue-from): Fix typo in docstring.
12680 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12682         * org-agenda.el (org-agenda-write-buffer-name): New variable.
12683         (org-write-agenda): Use it.
12685 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12687         * org-exp.el (org-export-date-timestamp-format): New option to
12688         define the way a timestamp in #+DATE will be exported.
12689         (org-infile-export-plist): Use the new option.
12691 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12693         * org.el (org-property-re): Also match cumulating properties
12694         like ":prop+:".
12696 2012-01-03  Jambunathan K  <kjambunathan@gmail.com>
12698         * org-odt.el (org-odt-styles-dir): Assume that the styles
12699         files are located under `data-directory' of Emacs distribution
12700         as etc/org/OrgOdtStyles.xml and
12701         etc/org/OrgOdtContentTemplate.xml.  Also update docstring.
12702         (org-export-odt-schema-dir): Update docstring.
12704 2012-01-03  Jambunathan K  <kjambunathan@gmail.com>
12706         * org-odt.el (org-odt-format-preamble): Honor following user
12707         options: author, timestamp and email.
12709 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12711         * org-exp-blocks.el (org-export-blocks-preprocess): Fix regexp
12712         for matching the end of a block.
12714 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12716         * org-eshell.el: New file.
12718 2012-01-03  David Maus  <dmaus@ictsoc.de>
12720         * org.el (org-open-at-point): Escape link path for http:,
12721         https:, ftp:, news:, and doi: links only if the path contains
12722         space or non-ascii character.
12724 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12726         * org-beamer.el (org-beamer-fragile-re): Also recognize
12727         \lstinline and \verb as commands that make a frame fragile.
12729 2012-01-03  David Maus  <dmaus@ictsoc.de>
12731         * org.el (org-refile-get-targets): Ignore headlines without a
12732         true headline.
12734 2012-01-03  Litvinov Sergey  <slitvinov@gmail.com>
12736         * ob-octave.el: Add graphical output to png file.
12738 2012-01-03  Eric Schulte  <eric.schulte@gmx.com>
12740         * ob.el (org-babel-map-call-lines): Move this file from
12741         ob-lob.el into ob.el to ease dependency pains.
12743 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12745         * org-publish.el (org-publish-index-generate-theindex):
12746         Use theindex.inc for storing index entries, and theindex.org for
12747         including theindex.inc.
12749 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12751         * org-publish.el (org-publish-index-generate-theindex):
12752         Create proper file target for index entries in subdirectories.
12754 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12756         * org-protocol.el (org-protocol-check-filename-for-protocol):
12757         Fix spelling mistake.
12759 2012-01-03  Jambunathan K  <kjambunathan@gmail.com>
12761         * org-odt.el (org-export-odt-default-org-styles-alist):
12762         Add styles for title and subtitle.
12763         (org-odt-format-toc): New.
12764         (org-odt-format-preamble): New.  Users can redefine this to
12765         customize what goes before the document body.  Currently it
12766         outputs title, author and email, date and toc.
12767         (org-odt-begin-document-body): Use `org-odt-format-preamble'.
12768         (org-odt-format-date): Rename from
12769         `org-odt-iso-date-from-org-timestamp'.  Also added an
12770         additional param for format string.
12771         (org-odt-begin-annotation, org-odt-update-meta-file):
12772         Use `org-odt-format-date'.
12774 2012-01-03  Eric Schulte  <eric.schulte@gmx.com>
12776         * ob-ref.el (org-babel-ref-split-args): Now uses
12777         `org-babel-balanced-split'.
12779 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12781         * org-html.el (org-export-html-preamble)
12782         (org-export-html-postamble): Fix docstrings.
12783         (org-export-as-html): Insert the string used by a custom
12784         function for `org-export-html-pre/postamble'.
12786 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12788         * org.el (org-block-regexp)
12789         (org-heading-keyword-regexp-format)
12790         (org-heading-keyword-maybe-regexp-format): Move up to keep the
12791         byte-compiler happy.
12793 2012-01-03  Dave Abrahams  <dave@boostpro.com>  (tiny change)
12795         * org-agenda.el (org-agenda-do-tree-to-indirect-buffer):
12796         New function.
12797         (org-agenda-tree-to-indirect-buffer): Use the new function.
12799 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12801         * org-html.el (org-export-as-html): Fix bug when inserting the
12802         output of a custom function for the pre/postamble.
12804 2012-01-03  Jambunathan K  <kjambunathan@gmail.com>
12806         * org-odt.el (org-odt-format-source-code-or-example):
12807         Try loading htmlfontify safely.
12809 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12811         * org-odt.el (require): Require htmlfontify.el only if
12812         emacs-version is greater than 23.2.
12814 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12816         * org-faces.el (org-agenda-calendar-event)
12817         (org-agenda-calendar-sexp): Use the default face.
12819 2012-01-03  Eric Schulte  <eric.schulte@gmx.com>
12821         * ob.el (org-babel-expand-noweb-references): Fix regexp.
12823 2012-01-03  Michael Brand  <michael.ch.brand@gmail.com>
12825         * org.el (Key bindings): Remap the Outline functions from
12826         `outline-mode-prefix-map' where possible.
12828 2012-01-03  Christian Moe  <mail@christianmoe.com>  (tiny change)
12830         * org-html.el (org-export-as-html):
12831         Apply `org-export-html-get-todo-kwd-class-name' to the class
12832         attribute of the todo-keyword span tag, not to its text
12833         content.
12835 2012-01-03  Sebastien Vauban  <sva@mygooglest.com>
12837         * org-agenda.el (org-agenda-get-timestamps)
12838         (org-agenda-get-sexps): Use face for highlighting "calendar"
12839         events.
12841 2012-01-03  Peter Münster  <pmlists@free.fr>  (tiny change)
12843         * org.el (org-add-planning-info): Treat absolute time too.
12845 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12847         * org-table.el (org-table-transpose-table-at-point): Don't use
12848         ̀remove-if-not'.
12850 2012-01-03  Dave Abrahams  <dave@boostpro.com>  (tiny change)
12852         * org-clock.el (org-clock-out-if-current): Check the clock
12853         buffer is existing.
12855 2012-01-03  Bernt Hansen  <bernt@norang.ca>
12857         * org-clock.el (org-clock-out-if-current): Fix marker in no
12858         buffer error for task state change in an indirect buffer.
12860 2012-01-03  Michael Brand  <michael.ch.brand@gmail.com>
12862         * org.el (org-offer-links-in-entry): Make list when assigning
12863         a single link.
12865 2012-01-03  Eric Schulte  <eric.schulte@gmx.com>
12867         * ob.el (org-babel-expand-noweb-references): Rather than
12868         collect the info from *every* block in the current buffer,
12869         simply regexp search for those blocks which appear to match
12870         the continued source name.
12872 2012-01-03  Eric Schulte  <eric.schulte@gmx.com>
12874         * ob.el (org-babel-insert-result): Do not examplize wrapped
12875         scalar results, simply wrap them.
12876         (org-babel-result-end): Find the end of results wrapped in a
12877         RESULTS drawer.
12879 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12881         * org.el (org-todo-yesterday): When called from the agenda,
12882         use `org-agenda-todo-yesterday' instead.
12884 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12886         * org-table.el (org-table-transpose-table-at-point): New command.
12888 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12890         * org-html.el (org-export-html-headline-anchor-format):
12891         New option.
12892         (org-html-level-start): Use the new option.
12894 2012-01-03  Rob Giardina  <rob@giardina.us>  (tiny change)
12896         * org-agenda.el (org-agenda-with-point-at-orig-entry):
12897         Small bugfix.
12899 2012-01-03  Christian Moe  <mail@christianmoe.com>  (tiny change)
12901         * org-special-blocks.el
12902         (org-special-blocks-convert-html-special-cookies):
12903         Close paragraph before opening or closing the <div>, and open
12904         paragraph after.  Also changed newline placement to be the same
12905         as for other blocks.
12907 2012-01-03  Roberto Huelga  <rhuelga@gmail.com>
12909         * org-clock.el (org-program-exists): Make the function
12910         compatible with darwin systems.
12912 2012-01-03  David Maus  <dmaus@ictsoc.de>
12914         * org-exp.el (org-export-normalize-links): Mark bracket links
12915         before normalization to avoid erroneous normalization of
12916         bracket link parts.
12918 2012-01-03  Jambunathan K  <kjambunathan@gmail.com>
12920         * org-odt.el (org-odt-data-dir): Remove.
12921         (org-odt-styles-dir, org-export-odt-schema-dir):
12922         New variables.
12924         * org-odt.el, org-lparse.el: New files.
12926 2012-01-03  Carsten Dominik  <carsten.dominik@gmail.com>
12928         * org-capture.el (org-capture-set-target-location): Set the
12929         capture default time also to the prompt time.
12931 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
12933         * org-exp.el (org-export-res/src-name-cleanup): Remove #+name
12934         and #+results lines during preprocess.
12936 2012-01-03  Eric Schulte  <eric.schulte@gmx.com>
12938         * ob-picolisp.el (ob-comint): Required.
12939         (comint): Required.
12940         (cl): Required.
12941         (run-picolisp): Declared.
12942         (org-babel-execute:picolisp): Capture free variable, and replace
12943         function from cl-extra with core function.
12945 2012-01-03  Eric Schulte  <eric.schulte@gmx.com>
12947         * ob-picolisp.el: New file.
12949         * org.el (org-babel-load-languages): Add Pico Lisp to the list
12950         of supported code block languages.
12952 2012-01-03  Eric Schulte  <eric.schulte@gmx.com>
12954         * org-bibtex.el (org-bibtex): Now catches bibtex errors and
12955         directs the user to the location of the error.
12957 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12959         * org-agenda.el (org-agenda-dim-blocked-tasks): Fix typo.
12961 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12963         * ob.el (org-babel-execute-src-block): Fix typo.
12965 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12967         * org-freemind.el (org-freemind-write-mm-buffer): Fix typo.
12969 2012-01-03  Bastien Guerry  <bzg@gnu.org>
12971         * org.el (org-link-unescape, org-link-unescape-compound):
12972         Fix two typos in docstrings.
12974 2012-01-03  Thomas Dye  <dk@poto.local>
12976         * ob-R.el: Added tikzDevice support.
12978 2012-01-03  David Maus  <dmaus@ictsoc.de>
12980         * org.el (org-clone-subtree-with-time-shift): Remove clocking
12981         information and empty drawers when preparing a clone.
12983 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
12985         * ob-exp.el: Don't add `org-exp-res/src-name-cleanup' to
12986         `org-export-blocks-postblock-hook'.
12988 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
12990         * ob.el (org-babel-hide-result-toggle): Skip over header
12991         argument lines when toggling named code block visibility.
12993 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
12995         * org-exp.el (org-export-grab-title-from-buffer):
12996         Don't license to kill text inside blocks when getting a title.
12998 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13000         * ob.el (org-babel-confirm-evaluate): Adding support for new
13001         range of :eval header arguments.
13003 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13005         * ob.el (org-babel-confirm-evaluate): Inhibit evaluation
13006         during export when eval is set to "non-export".
13008 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13010         * ob-ref.el (org-babel-update-intermediate): New custom
13011         variable.
13012         (org-babel-ref-resolve): Optionally update the in-buffer results
13013         of code blocks which are evaluated to resolve references.
13015 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13017         * ob.el (org-babel-join-splits-near-ch): Rejoins a list of a
13018         split string when a character appears on either side of the
13019         split.
13020         (org-babel-parse-multiple-vars): Rejoin splits around "=" signs.
13022 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13024         * org.el (org-reduce): Add a less functional Org-mode copy of
13025         the cl reduce function.
13027 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
13029         * org.el (org-fontify-meta-lines-and-blocks-1):
13030         Recognize "name" as a valid keyword that can preceed a block.
13032 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13034         * ob-exp.el (org-babel-exp-lob-one-liners): Don't limit
13035         in-verbatim check to inline code blocks, do lob code blocks as
13036         well.
13038 2012-01-03  Carsten Dominik  <carsten.dominik@gmail.com>
13040         * org.el (org-todo): Interpret 0 prefix arg as note inhibitor.
13042 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13044         * ob.el (org-babel-named-src-block-regexp-for-name):
13045         Ensure that partial names are not matched.
13046         (org-babel-named-data-regexp-for-name): Ensure that partial names
13047         are not matched.
13049 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13051         * ob-ref.el (org-babel-ref-resolve): Search for named code
13052         blocks before named data.
13054         * ob.el (org-babel-named-data-regexp-for-name): New function for
13055         finding named data.
13057 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13059         * ob.el (org-babel-insert-result): Gracefully handle results
13060         which are neither lists nor strings.
13062 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13064         * ob-ref.el (org-babel-ref-resolve): Don't change location when
13065         looking at the contents.
13067 2012-01-03  Milan Zamazal  <pdm@zamazal.org>
13069         * org.el (org-set-outline-overlay-data):
13070         Use outline-flag-region to make a region invisible.  This ensures
13071         all necessary actions, especially adding
13072         isearch-open-invisible property, are applied.
13074 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13076         * ob-lob.el (org-babel-in-example-or-verbatim):
13077         Fix compilation warning.
13079 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13081         * ob.el (org-babel-find-named-result): Downcase "name" before
13082         comparison.
13084 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13086         * ob-lisp.el (org-babel-execute:lisp): Fix typo.
13087         (org-babel-lisp-vector-to-list): Fix typo.
13089 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13091         * ob-exp.el (org-babel-in-example-or-verbatim): Some valid
13092         execution contexts (e.g., call lines) look like commented
13093         lines.
13095         * ob.el (org-babel-get-src-block-info): Empty match string doesn't
13096         count.
13097         (org-babel-process-params): Always process parameters, even if
13098         you don't to table splitting.
13100 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13102         * ob-exp.el (org-exp-res/src-name-cleanup): Update Documentation.
13104         * ob-lob.el (org-babel-block-lob-one-liner-regexp):
13105         Update regular expression.
13106         (org-babel-inline-lob-one-liner-regexp): Update regular
13107         expression.
13109         * ob-ref.el (org-babel-ref-resolve): Notice when something that
13110         looks like a data results may actually be a code block.
13112         * ob-table.el: Updated documentation.
13114         * ob.el (org-babel-src-name-regexp): Simplify regexp.
13115         (org-babel-get-src-block-info): Update match strings.
13116         (org-babel-data-names): Simplify acceptable names.
13117         (org-babel-find-named-block): Indentation.
13118         (org-babel-find-named-result): Update to not return a code block
13119         as a result.
13121         * org.el (org-fontify-meta-lines-and-blocks-1):
13122         Removing references to old syntactic elements.
13123         (org-additional-option-like-keywords): Removing references to
13124         old syntactic elements.
13126 2012-01-03  Carsten Dominik  <carsten.dominik@gmail.com>
13128         * org-agenda.el (org-agenda-get-todos): Swap calls to `org-trim'
13129         and `buffer-substring'.
13131 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
13133         * org-agenda.el (org-agenda-get-todos): Prevent an error when
13134         encountering tasks with only the TODO keyword.
13136 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
13138         * org.el (org-try-cdlatex-tab): Don't try to expand a LaTeX
13139         environment when at an item or an headline, but allow LaTeX
13140         fragments.
13141         (org-cycle): Try to call `cdlatex-tab' before cycling item's or
13142         headline's visibility, in order to catch LaTeX fragments within.
13144 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13146         * org-exp-blocks.el (org-export-blocks-preprocess): Require a
13147         newline and spaces before a code block.
13149 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13151         * ob-lob.el (org-babel-map-call-lines): Allow mapping of code
13152         over all call lines in a buffer.
13154         * ob.el (org-babel-execute-buffer): Execute call lines when
13155         executing an entire buffer.
13157 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13159         * ob.el (org-babel-process-params): Don't disassemble tables
13160         twice.
13162 2012-01-03  Carsten Dominik  <carsten.dominik@gmail.com>
13164         * org-clock.el (org-clock-in, org-clock-find-position): Make space
13165         after date optional.
13167         * org.el (org-set-regexps-and-options)
13168         (org-ts-regexp, org-ts-regexp-both, org-ts-regexp1)
13169         (org-ctrl-c-ctrl-c): Make `C-c C-c' on date fix the time stamp.
13171 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13173         * ob-lob.el (org-babel-lob-execute-maybe): Don't execute a call
13174         inside a verbatim block.
13176         * ob-exp.el (org-babel-in-example-or-verbatim): Check for example
13177         blocks.
13179 2012-01-03  Litvinov Sergey  <slitvinov@gmail.com>
13181         * ob-maxima.el (org-babel-tangle-lang-exts): Maxima extension.
13182         (org-babel-maxima-expand): Add input variables and graphic output.
13183         (org-babel-execute:maxima): Add input variables and graphic output.
13184         (org-babel-maxima-var-to-maxima): Add input variables and graphic
13185         output.
13186         (org-babel-maxima-graphical-output-file): Add input variables and
13187         graphic output.
13188         (org-babel-maxima-elisp-to-maxima): Add input variables and graphic
13189         output.
13191 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13193         * ob-fortran.el: New file.  Adding support for Fortran code blocks.
13194         * org.el (org-babel-load-languages): Adding fortran to this list.
13196 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
13198         * org-footnote.el (org-footnote-new): Cannot insert an inline
13199         footnote at beginning of line anymore.
13200         (org-footnote-at-reference-p): Don't recognize inline footnotes at
13201         beginning of line.
13203 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
13205         * org.el (org-set-font-lock-defaults): Fix small error in matching
13206         group that prevented fontification of keywords like
13207         org-comment-string and stars in headlines.
13209 2012-01-03  Carsten Dominik  <carsten.dominik@gmail.com>
13211         * org.el (org-catch-invisible-edits): New option.
13212         (org-self-insert-command, org-delete-backward-char)
13213         (org-delete-char): Call `org-check-before-invisible-edit'.
13214         (org-check-before-invisible-edit): New function.
13216 2012-01-03  Suvayu Ali  <fatkasuvayu+linux@gmail.com>
13218         * org-exp.el (org-solidify-link-text): Respect
13219         org-export-with-tags when forming the export title during subtree
13220         export.
13222 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
13224         * org.el (org-heading-regexp, org-heading-keyword-regexp-format)
13225         (org-heading-keyword-maybe-regexp-format): Globalize variables so
13226         they are accessible even in buffers not in Org mode.
13228 2012-01-03  David Maus  <dmaus@ictsoc.de>
13230         * org.el (org-insert-link): Don't use default-description if a
13231         `org-make-link-description-function' is defined.
13233 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13235         * org.el (org-set-regexps-and-options): Use property blocks for
13236         multi-line properties.
13238 2012-01-03  Bastien Guerry  <bzg@gnu.org>
13240         * org.el (org-self-insert-command): Don't throw an error when
13241         editing takes place at the first point of the buffer.
13243 2012-01-03  Bastien Guerry  <bzg@gnu.org>
13245         * org.el (org-self-insert-command): Unfold invisible region at
13246         point or right before point when editing.
13248 2012-01-03  Bastien Guerry  <bzg@gnu.org>
13250         * org-faces.el (org-agenda-filter-tags): Use the 'modeline face as
13251         default.
13253 2012-01-03  Bastien Guerry  <bzg@gnu.org>
13255         * org-html.el (org-html-expand): Prevent a nil value for STRING to
13256         return an error, just return nil.
13258 2012-01-03  Bastien Guerry  <bzg@gnu.org>
13260         * org-latex.el (org-export-latex-set-initial-vars): Allow "/"
13261         character in the #+LaTeX_CLASS option.
13263 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
13265         * org-footnote.el (org-footnote-at-reference-p)
13266         (org-footnote-at-definition-p): Don't store text-properties of
13267         footnote definitions.
13269 2012-01-03  Bastien Guerry  <bzg@gnu.org>
13271         * org-html.el (org-export-as-html): Convert special characters in
13272         meta tag "author", "date", "keyword" and "description".
13274 2012-01-03  Bastien Guerry  <bzg@gnu.org>
13276         * org-capture.el (org-capture-before-finalize-hook): Docstring
13277         improvement: mention that the buffer is widened when this hook is
13278         run.
13280 2012-01-03  Sebastien Vauban  <sva@mygooglest.com>
13282         * org-html.el (org-export-as-html): Make sure the div for preamble
13283         is not inserted when the preamble is empty.
13285 2012-01-03  Sebastien Vauban  <sva@mygooglest.com>
13287         * org-agenda.el (org-agenda-set-mode-name): Highlight tags used
13288         for filtering (shown in the mode-line).
13290 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13292         * ob.el (org-babel-parse-multiple-vars): Trimming excess white
13293         space from split variables.
13295 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
13297         * org.el (org-link-search): Add an optional argument preventing
13298         function from revealing context around match.
13300 2012-01-03  Bastien Guerry  <bzg@gnu.org>
13302         * org-agenda.el (calendar-check-holidays): Declare function.
13304 2012-01-03  Bastien Guerry  <bzg@gnu.org>
13306         * org.el (org-return): Fix bug when matching the face property
13307         before following a link.
13309 2012-01-03  Matt Lundin  <mdl@imapmail.org>
13311         * org-agenda.el (org-class): Fix holidays symbol in org-class.
13312         This was resulting in an "Bad sexp..." warning.
13314 2012-01-03  Carsten Dominik  <carsten.dominik@gmail.com>
13316         * org.el (org-scan-tags): Also remember
13317         `org-complex-heading-regexp' in a property.
13319 2012-01-03  Carsten Dominik  <carsten.dominik@gmail.com>
13321         * org-latex.el (org-export-as-latex): Turn off auto-insert and set
13322         TeX-master to t when creating new TeX buffers.
13324         * org-docbook.el (org-export-as-docbook): Turn off auto-insert
13325         when creating new buffers.
13327         * org-html.el (org-export-as-html): Turn off auto-insert
13328         when creating new buffers.
13330 2012-01-03  Carsten Dominik  <carsten.dominik@gmail.com>
13332         * org-table.el (org-table-formula-handle-first/last-rc): Do not
13333         expand pointers to first/last row/column that are inside a call to
13334         `remote'.
13335         (org-table-get-remote-range): Expand pointers to first/last
13336         row/column.
13338 2012-01-03  Michael Sperber  <sperber@deinprogramm.de>  (tiny change)
13340         * org-capture.el (org-capture-get-indirect-buffer): Fix XEmacs
13341         compatibility issue when creating an indirect buffer.
13343 2012-01-03  Christophe Rhodes  <csr21@cantab.net>
13345         * org-exp.el (org-infile-export-plist): Handle LATEX_CLASS_OPTIONS
13346         the same way than LATEX_CLASS.
13348 2012-01-03  Bastien Guerry  <bzg@gnu.org>
13350         * org.el (org-return): Check the presence of the 'org-link face
13351         even in contexts where there is more than one face.
13353 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13355         * ob-sql.el (org-babel-header-arg-names:sql): SQL specific header
13356         argument names which should be inherited.
13358 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
13360         * org.el (org-in-block-p): Return matched name of block, if any.
13361         It can be useful when a list of block names is provided as
13362         an argument.
13364 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
13366         * org-docbook.el (org-export-as-docbook): Fix regexp.
13368         * org-html.el (org-export-as-html): Fix regexp.
13370 2012-01-03  Carsten Dominik  <carsten.dominik@gmail.com>
13372         * org-agenda.el (org-class): Allow holidays to be skipped.
13374 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13376         * ob-shen.el (org-babel-execute:shen): Fix two compilation errors.
13378 2012-01-03  Peter Münster  <pmrb@free.fr>  (tiny change)
13380         * org-agenda.el (org-agenda-to-appt): Make sure filter-items are
13381         strings before calling `string-match'.
13383 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
13385         * org-footnote.el (org-footnote-at-reference-p)
13386         (org-footnote-at-definition-p): Remove text-properties from label.
13388 2012-01-03  Bastien Guerry  <bzg@gnu.org>
13390         * org-html.el (org-export-as-html): Add a "title" meta tag.
13392 2012-01-03  Bastien Guerry  <bzg@gnu.org>
13394         * org-agenda.el (org-agenda-to-appt): Allow to refine the scope of
13395         entries to pass to `org-agenda-get-day-entries' and allow to
13396         filter out entries using a function.
13398 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
13400         * org-agenda.el: Fix small display bug.
13402 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
13404         * org.el (org-set-regexps-and-options): Fix small bug introduced
13405         by commit dfcb6faef11a2439b56b18a6289803361d402130.
13407 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
13409         * org-agenda.el (org-search-view): Simplify regexp.
13410         (org-agenda-get-todos): Use new format string.
13412         * org-archive.el (org-archive-all-done): Simplify regexp.
13414         * org-ascii.el (org-export-as-ascii): More accurate regexp.
13416         * org-colview.el (org-columns-capture-view): Use new format string
13417         and new string.
13419         * org-docbook.el (org-export-as-docbook): More accurate
13420         regexp.  Also use new regexp to match generic headlines.
13422         * org-exp.el (org-export-protect-quoted-subtrees): More accurate
13423         regexp.  Also use new regexp to match generic headlines.
13425         * org-html.el (org-export-as-html): More accurate regexp.
13426         Also use new regexp to match generic headlines.
13428         * org-mouse.el (org-mouse-match-todo-keyword): Remove unused
13429         and now erroneous function.
13431         * org.el (org-heading-regexp, org-heading-keyword-regexp-format):
13432         New variables.
13433         (org-set-regexps-and-options): Create regexps according to the
13434         following rule: use spaces only to separate elements from an headline,
13435         while allowing mixed tabs and spaces for any indentation job.
13436         (org-nl-done-regexp, org-looking-at-done-regexp): Remove variables.
13437         (org-set-font-lock-defaults): Fontify again headlines with a keyword
13438         and no other text.  Use new format strings.
13439         (org-get-heading, org-toggle-comment, org-prepare-agenda-buffers)
13440         (org-toggle-fixed-width-section): Use new format string.
13441         (org-todo): More accurate regexps.
13442         (org-point-at-end-of-empty-headline): Simplify regexp.
13443         (org-insert-heading): Headline can sometimes be nil.
13445 2012-01-03  David Maus  <dmaus@ictsoc.de>
13447         * org-agenda.el (org-agenda-bulk-action): Bind
13448         `org-loop-over-headlines-in-active-region' to nil to avoid conflict
13449         with bulk command.
13451 2012-01-03  David Maus  <dmaus@ictsoc.de>
13453         * org.el (org-deadline, org-schedule): Skip invisible headlines when
13454         mapping over headlines in active region.
13456 2012-01-03  David Maus  <dmaus@ictsoc.de>
13458         * org.el (org-loop-over-headlines-in-active-region):
13459         New customization variable.  Loop over headlines in active region.
13460         (org-schedule, org-deadline): Apply to headlines in region depending
13461         on new customization variable.
13463 2012-01-03  David Maus  <dmaus@ictsoc.de>
13465         * org.el (org-map-entries): Immediately return if scope is 'region
13466         but no region is active.
13468 2012-01-03  David Maus  <dmaus@ictsoc.de>
13470         * org.el (org-map-entries): Extend scope 'region to include entire
13471         body of last headline in active region.
13473 2012-01-03  Bastien Guerry  <bzg@gnu.org>
13475         * org-src.el (org-edit-src-code): Fix typo-bug.
13477 2012-01-03  Bastien Guerry  <bzg@gnu.org>
13479         * org.el (org-format-agenda-item, org-scan-tags):
13480         Rename `org-format-agenda-item' to `org-agenda-format-item'.
13482 2012-01-03  Bastien Guerry  <bzg@gnu.org>
13484         * org-agenda.el: Replace `category-pos' by `org-category-pos' to
13485         silent byte-compiler.
13487 2012-01-03  Bastien Guerry  <bzg@gnu.org>
13489         * org.el: Declare external function `cdlatex-compute-tables'.
13491 2012-01-03  Bastien Guerry  <bzg@gnu.org>
13493         * org-latex.el (org-export-latex-set-initial-vars): Fix problem
13494         when matching #+LaTeX_CLASS.
13496 2012-01-03  Rafael Laboissiere  <rafael@laboissiere.net>  (tiny change)
13498         * org.el (org-link-search-must-match-exact-headline): Fix typos.
13500 2012-01-03  Bastien Guerry  <bzg@gnu.org>
13502         * org-latex.el (org-export-latex-make-header): Add some hyperref
13503         options.
13505 2012-01-03  Kai Tetzlaff  <kai.tetzlaff@web.de>  (tiny change)
13507         * org-publish.el (org-publish-file): Add 'eval'ing the value of
13508         the :publishing-directory property before using it as destination
13509         of the publishing project.  This allows to construct the publish
13510         destination directory dynamically at run-time using the return
13511         value of a function.
13513 2012-01-03  Bastien Guerry  <bzg@gnu.org>
13515         * org-agenda.el (org-agenda-list-stuck-projects): Fix tiny bug.
13517 2012-01-03  Carsten Dominik  <carsten.dominik@gmail.com>
13519         * org-agenda.el (org-agenda-move-date-from-past-immediately-to-today):
13520         New option.
13521         (org-agenda-date-later): Improve the logical structure.
13523 2012-01-03  Carsten Dominik  <carsten.dominik@gmail.com>
13525         * ob-calc.el (featurep): Require calc-store.
13527         * org-agenda.el (org-agenda-list-stuck-projects): Fix regexp
13528         special handling.
13530         * org-compat.el (fboundp): Support for XEmacs.
13532         * org-exp.el (org-export): Protect XEmacs from `(redisplay)' call.
13534         * org-footnote.el (org-footnote-re): Optimize macro processing.
13536         * org.el (org-set-autofill-regexps): Xemacs compatibility.
13538 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13540         * ob.el (org-babel-balanced-split): Balance both [] and ()
13541         groupings.
13542         (org-babel-parse-header-arguments): Be sure to replace removed ":"
13543         characters.
13545 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13547         * ob.el (org-babel-parse-header-arguments): Quick fix for a
13548         tiny bug.
13550 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13552         * ob.el (org-babel-params-from-properties): Now splits
13553         multiple var arguments behind a single ":var".
13554         (org-babel-balanced-split): Separated balanced splitting of
13555         strings out into a new function.
13556         (org-babel-parse-multiple-vars): Splits multiple var arguments
13557         behind a single ":var".
13559 2012-01-03  Bastien Guerry  <bzg@gnu.org>
13561         * org.el: Remap `outline-promote' and `outline-demote' keys to
13562         `org-promote-subtree' and `org-demote-subtree'.
13564 2012-01-03  Leo Liu  <sdl.web@gmail.com>
13566         * org-agenda.el (org-agenda-do-context-action): Check if marker is
13567         valid before use.
13569 2012-01-03  Carsten Dominik  <carsten.dominik@gmail.com>  (tiny change)
13571         * org-agenda.el (org-agenda-date-later): Fix shifting of date
13572         ranges.
13574 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13576         * ob.el: Removing `org-babel-params-from-buffer' and
13577         #+PROPERTIES: entirely.
13579         * ob-exp.el (org-babel-exp-src-block):
13580         Removing `org-babel-params-from-buffer' and #+PROPERTIES: entirely.
13582         * ob-lob.el (org-babel-lob-execute):
13583         Removing `org-babel-params-from-buffer' and #+PROPERTIES: entirely.
13585 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13587         * ob.el (org-babel-params-from-buffer): Removing #+BABEL:
13588         lines in favor of general #+PROPERTIES: lines.
13590 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13592         * ob-sql.el (org-babel-execute:sql): Insert into a temporary
13593         buffer.
13595 2012-01-03  Carsten Dominik  <carsten.dominik@gmail.com>
13597         * org.el (org-cdlatex-mode): Run `cdlatex-mode-hook' and
13598         update the internal cdlatex tables.
13600 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13602         * ob-sql.el (org-babel-execute:sql): Respect literal-results
13603         options.
13605 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13607         * ob.el (org-babel-disassemble-tables): Fix multi-table bug in
13608         code block colname and rowname handling.
13610 2012-01-03  Carsten Dominik  <carsten.dominik@gmail.com>
13612         * org-publish.el (org-publish-cache-file-needs-publishing):
13613         Fix regexp to not inlcude newlines.
13615 2012-01-03  Carsten Dominik  <carsten.dominik@gmail.com>
13617         * org.el (org-ctrl-c-ctrl-c): Remove table overlays before
13618         restart.
13620 2012-01-03  Carsten Dominik  <carsten.dominik@gmail.com>
13622         * org.el (org-fontify-entities): Match entities before
13623         numbers, as in `\sim2'.
13625 2012-01-03  Carsten Dominik  <carsten.dominik@gmail.com>
13627         * org-agenda.el (org-agenda-date-later): Make pushing forward
13628         a past date to jump immedialtely to today.
13630 2012-01-03  Carsten Dominik  <carsten.dominik@gmail.com>
13632         * org-exp.el (org-store-forced-table-alignment): Parse the
13633         column cookie for both alignment and width
13634         specification.  Store the resulting value in `org-col-cookies'
13635         property.  Retire the previously used `org-forced-aligns'
13636         property for consistency.  Renamed local variable `aligns' to
13637         `cookies'.
13639         * org-html.el (org-format-org-table-html):
13640         Use `org-col-cookies'.  Renamed local variable forced-aligns to
13641         col-cookies.
13643 2012-01-03  Carsten Dominik  <carsten.dominik@gmail.com>
13645         * org.el (org-latex-to-mathml-jar-file)
13646         (org-latex-to-mathml-convert-command): New user-customizable
13647         variables.
13648         (org-format-latex-mathml-available-p, org-create-math-formula)
13649         (org-format-latex-as-mathml): New functions.
13650         (org-format-latex): Add a new local variable block-type that notes
13651         the nature of the equation - inline or display.  Associate it's
13652         value to `org-latex-src-embed-type' property of dvipng links.
13653         Add mathml as new processing type.
13655 2012-01-03  Sébastien Vauban  <wxhgmqzgwmuf@spammotel.com>
13657         * org.el (org-refile): Add tree name to prompt.
13659 2012-01-03  Carsten Dominik  <carsten.dominik@gmail.com>
13661         * org-latex.el (org-export-latex-tables):
13662         Honor `org-export-latex-table-caption-above'
13663         (org-export-latex-table-caption-above): New option.
13665 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13667         * ob.el (org-babel-insert-header-arg): Now including language
13668         specific header arg values in insertion options.
13670 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13672         * ob.el (org-babel-insert-header-arg): Fix typo.
13674 2012-01-03  Jambunathan K  <kjambunathan@gmail.com>
13676         * org-exp.el (org-export-number-lines): Modify.  Add a new
13677         parameter `preprocess' and use this for backend-agnostic
13678         handling of literal examples.
13680 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
13682         * org.el (org-match-substring-regexp)
13683         (org-match-substring-with-braces-regexp): Allow subscripts and
13684         superscripts to start at beginning of line.
13686 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13688         * ob.el (org-babel-common-header-args-w-values): New variable to
13689         hold common header arguments and their default values.
13690         (org-babel-header-arg-names): Redefined using the new common
13691         header arg variable.
13692         (org-babel-insert-header-arg): New function to help when inserting
13693         header arguments.
13695 2012-01-03  David Maus  <dmaus@ictsoc.de>
13697         * org-html.el (org-html-handle-links): Remove unnecessary
13698         protection markers when publishing link in default format.
13700 2012-01-03  Pieter Praet  <pieter@praet.org>  (tiny change)
13702         * org-crypt.el (org-crypt-check-auto-save): New function, see
13703         next change.
13705         * org-crypt.el (org-decrypt-entry): Break the auto-save-mode
13706         check out into a separate function, and call it at a later
13707         point, to assure it only runs when visiting an encrypted
13708         entry.
13710 2012-01-03  John J Foerch  <jjfoerch@earthlink.net>  (tiny change)
13712         * org.el (org-log-note-headings): Document new %d and %D
13713         escapes.
13714         (org-store-log-note): Implement new %d and %D escapes.
13716 2012-01-03  Dave Abrahams  <dave@boostpro.com>
13718         * org-agenda.el (org-agenda-follow-indirect): New option.
13719         (org-agenda-follow-mode): Call `org-agenda-do-context-action' fro
13720         follow mode.
13721         (org-agenda-do-context-action): Also do indirect follow mode
13722         action.
13724 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13726         * ob-table.el (sbe): Fix typo in new sbe specification.
13728 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13730         * ob-table.el (sbe): If first variable is a string and not a
13731         cons cell, then interpret it as a string of header arguments
13732         to be passed to the code block.
13734 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13736         * ob-shen.el (shen-eval-defun): Declare external function.
13737         (org-babel-execute:shen): Move requirement of inf-shen into
13738         the function in which it is used to fix build error.
13740         * ob-shen.el: New file.
13742 2012-01-03  Carsten Dominik  <carsten.dominik@gmail.com>  (tiny change)
13744         * org.el (org-open-at-point): Make `org-open-at-point' only
13745         ask once about creating a new headline.
13747 2012-01-03  Nick Dokos  <nicholas.dokos@hp.com>  (tiny change)
13749         * org.el (org-refile-targets): Elaborated the documentation of
13750         the variable as suggested by Dave Abrahams.
13752 2012-01-03  Carsten Dominik  <carsten.dominik@gmail.com>  (tiny change)
13754         * org.el (org-align-tags-here): Allow tags to be placed right
13755         after heading.
13756         (org-tags-column): Document the meaning of tags column 0.
13758 2012-01-03  Niels Giesen  <niels.giesen@gmail.com>
13760         * org-agenda.el (org-agenda-get-blocks): Show timestamp ranges
13761         in agenda if start day is same as end day.
13763 2012-01-03  Carsten Dominik  <carsten.dominik@gmail.com>
13765         * org.el (org-refile-get-location): Ignore errors when
13766         collection heading to be excluded.
13768 2012-01-03  Carsten Dominik  <carsten.dominik@gmail.com>
13770         * org-special-blocks.el
13771         (org-special-blocks-convert-html-special-cookies): Avoid XHTML
13772         strict problems by not enclosing special blocks in paragraph tags.
13774 2012-01-03  Bernt Hansen  <bernt@norang.ca>
13776         * org-html.el (org-export-as-html): Check string-match
13777         argument.
13778         (org-html-handle-time-stamps): Check string-match argument.
13780 2012-01-03  Carsten Dominik  <carsten.dominik@gmail.com>
13782         * org-agenda.el
13783         (org-agenda-skip-additional-timestamps-same-entry):
13784         Change default value.
13786 2012-01-03  Carsten Dominik  <carsten.dominik@gmail.com>
13788         * org.el (org-time-string-to-time):
13789         (org-time-string-to-absolute): Add optional arguments BUFFER and
13790         POS for error reporting.
13792         * org-agenda.el (org-get-all-dates):
13793         (org-agenda-get-timestamps, org-agenda-get-deadlines)
13794         (org-agenda-get-scheduled, org-agenda-get-blocks): Call time
13795         stamp parsing functions with information on where the
13796         timestamp was taken from.
13798 2012-01-03  Carsten Dominik  <carsten.dominik@gmail.com>
13800         * org.el (org-tree-to-indirect-buffer): Run `org-cycle-hook'
13801         after `show-all' in indirect buffer.
13803 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
13805         * org-list.el (org-list-parents-alist): When no parent is found
13806         for an item, set it as the closest less indented item above.
13807         If none is found, make it a top level item.
13808         (org-list-write-struct): Externalize code.
13809         (org-list-struct-fix-item-end): New function.
13810         (org-list-struct): Remove a now useless fix.
13812         * org.el (org-ctrl-c-ctrl-c): Use new function.
13814 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
13816         * org.el (org-end-of-line): When on an item, move point at the
13817         end of the line, but before any hidden text.  Thus, it's still
13818         possible to use commands, like `C-c C-c', acting at
13819         items.  This is still disabled if `org-special-ctrl-a/e'
13820         ignores `C-e'.
13822 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
13824         * org-footnote.el (org-footnote-renumber-fn:N): Small refactoring.
13826 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
13828         * org-footnote.el (org-footnote-renumber-fn:N): Fix an
13829         infloop.
13831 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
13833         * org-footnote.el (org-footnote-at-definition-p):
13834         Remove useless `org-re'.
13836 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
13838         * org-footnote.el (org-footnote-renumber-fn:N): Verify point
13839         is at a real footnote reference or definition before
13840         renumbering it.
13842 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
13844         * org-footnote.el (org-footnote-goto-definition): This patch
13845         makes sure the function says when a definition has been
13846         found.  Thus, moving from the reference to the definition
13847         doesn't offer to create the latter again.
13849 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
13851         * org-footnote.el (org-footnote-create-definition):
13852         Explicitly move point after tag, if it has just been
13853         inserted.
13855 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13857         * ob-gnuplot.el (org-babel-execute:gnuplot): Don't quote file
13858         names on Windows systems.
13860 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
13862         * org-footnote.el (org-footnote-create-definition): When the
13863         tag is missing, it is created before any existing footnote, or
13864         at end of buffer.  In the latter case, the marker pointing at
13865         the position where the new footnote is going to be inserted
13866         (at end of buffer) stays before the tag.  This patch makes
13867         sure that the marker will be kept after the tag.
13869 2012-01-03  Eli Zaretskii  <eliz@gnu.org>
13871         * org.el (org-mode): Force left-to-right paragraphs in Org
13872         buffers.  For a related discussions, see
13873         https://lists.gnu.org/archive/html/emacs-devel/2011-09/msg00349.html.
13875 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
13877         * ob-asymptote.el (org-babel-asymptote-define-type):
13878         Silence byte-compiler.
13880 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13882         * ob-R.el (org-babel-R-evaluate): Fix bug in R session
13883         evaluation.
13885 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13887         * org-bibtex.el (org-bibtex-type-property-name):
13888         Configurable property name for bibtex entry types.
13889         (org-bibtex-headline): Use new configurable property name.
13890         (org-bibtex-check): Use new configurable property name.
13891         (org-bibtex-create): Use new configurable property name.
13892         (org-bibtex-write): Use new configurable property name.
13894 2012-01-03  Carsten Dominik  <carsten.dominik@gmail.com>
13896         * org.el (org-paste-subtree): Remove unnecessary `concat'.
13898 2012-01-03  Bastien Guerry  <bzg@gnu.org>
13900         * org.el (org-paste-subtree): Remove useless (concat ...).
13902 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13904         * ob-C.el (org-babel-C-var-to-C): Replacing usage of
13905         characterp with integerp (which should work w/Emacs22).
13907 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
13909         * org-footnote.el (org-footnote-at-definition-p): Context must
13910         be valid at the beginning of line, not at point.
13912 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13914         * ob-tangle.el (org-babel-tangle-collect-blocks):
13915         Better delimiting of Org-mode text preceding a code block.
13917 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13919         * ob.el (org-babel-get-src-block-info): Fixing bug,
13920         accidentally deleted variable values.
13922 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13924         * ob-tangle.el (org-babel-process-comment-text):
13925         Customizable function to process comment text.
13926         (org-babel-tangle-collect-blocks): Make use of new
13927         customizable processing function.
13928         (org-babel-spec-to-string): Call customizable function rather than
13929         `org-babel-trim'.
13931 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13933         * ob-R.el (org-babel-execute:R): Collect and pass along the
13934         result-params.
13935         (org-babel-R-evaluate): Accept result-params and if "scalar" or
13936         "verbatim" don't process output.
13937         (org-babel-R-evaluate-session): Accept result-params and if
13938         "scalar" or "verbatim" don't process output.
13940 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13942         * ob.el (org-babel-merge-params): Differentiate between result
13943         types and wrappers.
13945 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13947         * ob.el (org-babel-get-src-block-info): Check that
13948         functional-syntax variables are initialized.
13950 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13952         * ob.el (org-babel-check-src-block): Adding a note for a
13953         future enhancement.
13955 2012-01-03  Carsten Dominik  <carsten.dominik@gmail.com>
13957         * org-exp.el (org-export): Restore point when exporting a subtree.
13959 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13961         * ob.el (org-babel-parse-src-block-match): More robust to code
13962         blocks with empty bodies.
13964 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13966         * ob.el (org-babel-parse-src-block-match): Don't error on empty
13967         code block body.
13969 2012-01-03  David Maus  <dmaus@ictsoc.de>
13971         * org.el (org-open-at-point): Unescape plain link.
13973 2012-01-03  David Maus  <dmaus@ictsoc.de>
13975         * org-html.el (org-html-handle-links): Remove unnecessary link
13976         unescape.
13978 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13980         * ob.el (org-babel-merge-params): Better error message for
13981         unassigned variables.
13983 2012-01-03  Christian Egli  <christian.egli@alumni.ethz.ch>
13985         * org-taskjuggler.el (org-export-as-taskjuggler): Clone the
13986         buffer local variables to the temporary buffer before
13987         exporting.
13989 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13991         * org-exp.el (org-export-select-backend-specific-text):
13992         Only remove commas on the front line of a code block.
13994 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
13996         * ob.el (org-babel-demarcate-block): Copy headers and indent to
13997         column of point when a block is split.
13999 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
14001         * ob.el (org-babel-insert-result): Corrected file insertion
14002         for inline results.
14004 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14006         * org-footnote.el (org-footnote-in-valid-context-p):
14007         No footnote in latex fragments.
14009 2012-01-03  Martin Rudalics  <rudalics@gmx.at>
14011         * org-compat.el (org-pop-to-buffer-same-window): Remove LABEL
14012         argument from `pop-to-buffer-same-window' call.
14014 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
14016         * ob-R.el (org-babel-R-evaluate-session): Improve prompt
14017         detection regexp.
14019 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14021         * org-inlinetask.el (org-inlinetask-goto-end):
14022         Small refactoring.
14024 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14026         * ob-asymptote.el (org-babel-asymptote-var-to-asymptote):
14027         refactor code.
14028         (org-babel-asymptote-table-to-array): Remove function.
14030 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14032         * ob-asymptote.el (org-babel-asymptote-var-to-asymptote):
14033         recognize non-nested lists as uni-dimensional arrays.
14035 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
14037         * ob.el (org-babel-params-from-properties): Don't check for
14038         header arguments in properties with leading ":"s.
14040 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14042         * org-inlinetask.el (org-inlinetask-goto-end):
14043         Correctly detect the end of an inlinetask when the next one starts
14044         immediately after the current one.  Also, return position of
14045         point.
14047 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14049         * ob.el (org-babel-inline-src-block-regexp): Allow regexp to
14050         start at bol.
14052 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14054         * ob-asymptote.el (org-babel-asymptote-define-type):
14055         Elisp floats are asymptote reals.
14057 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14059         * ob-asymptote.el (org-babel-asymptote-table-to-array):
14060         Require a new argument TYPE specifying the detected type of
14061         array.  If it's a string array, make sure every element is
14062         returned as a string.  Also improve doc-string.
14063         (org-babel-asymptote-var-to-asymptote): Fill new argument.
14064         Small refactoring.
14065         (org-babel-asymptote-define-type): Rewrite to avoid stopping
14066         search at first float found, as strings have precedence over
14067         floats.
14069 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14071         * org-footnote.el (org-footnote-normalize): Be sure to separate
14072         the last footnote definition from the rest of the buffer.
14074 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
14076         * ob-awk.el (org-babel-expand-body:awk): Allow for symbolic
14077         variable names.
14079 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14081         * org.el (org-latex-regexps): Allow matching latex fragments
14082         of type "$" and "$1" at beginning of line.
14084 2012-01-03  Bastien Guerry  <bzg@gnu.org>
14086         * org-agenda.el (org-search-view, org-agenda-get-todos)
14087         (org-agenda-get-deadlines, org-agenda-get-scheduled):
14088         Add `category-pos' in let construct.
14090 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14092         * org-footnote.el (org-footnote-get-definition): The function has
14093         to widen buffer if definition has not been found in the current
14094         narrowed part.  Be sure to restore that restriction once the
14095         definition is found.
14097 2012-01-03  Michal Sojka  <sojka@os.inf.tu-dresden.de>  (tiny change)
14099         * org-icalendar.el (org-print-icalendar-entries): Make alarm
14100         duration RFC5545 compliant.
14102 2012-01-03  Bastien Guerry  <bzg@gnu.org>
14104         * org-agenda.el (org-agenda-get-timestamps)
14105         (org-agenda-get-sexps, org-agenda-get-progress): Correctly set
14106         the `org-category-pos' property.
14108 2012-01-03  Bastien Guerry  <bzg@gnu.org>
14110         * org-html.el (org-export-html-divs): Improve docstring.
14112 2012-01-03  Carsten Dominik  <carsten.dominik@gmail.com>
14114         * org-table.el (org-table-fix-formulas): Throw error when
14115         changing formula leads to an invalid formula.
14117 2012-01-03  Bastien Guerry  <bzg@gnu.org>
14119         * org.el (org-archive-location): Minor docstring fix.
14121 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14123         * org.el (org-block-todo-from-checkboxes):
14124         `org-list-search-forward' should be used when looking for an
14125         item, as it filters out contexts where match couldn't be in a
14126         list.  Also use a correct item regexp, taking into account
14127         alphabetical ordered lists and counters.
14129 2012-01-03  Bastien Guerry  <bzg@gnu.org>
14131         * org-html.el (org-html-make-link): Minor fix to the
14132         docstring.
14134 2012-01-03  Suvayu Ali  <fatkasuvayu+linux@gmail.com>  (tiny change)
14136         * org-inlinetask.el (org-inlinetask): New customizable face
14137         for inlinetasks.
14139 2012-01-03  Bastien Guerry  <bzg@gnu.org>
14141         * org-agenda.el (org-agenda-get-todos): Properly set
14142         `category-pos'.
14144 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14146         * org-list.el (org-list-struct-apply-struct): Don't use
14147         (copy-marker (point)) instead of (point-marker).
14149 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
14151         * ob.el (org-babel-where-is-src-block-result): Don't try to
14152         resolve variables when simply checking if we're inside of a
14153         code block.
14155 2012-01-03  Bastien Guerry  <bzg@gnu.org>
14157         * org.el (org-refresh-category-properties): New text property
14158         'org-category-position to point at the beginning of the
14159         headline from which the category is set.
14161 2012-01-03  Matt Lundin  <mdl@imapmail.org>
14163         * org.el (org-refile): Don't call `org-back-to-heading' with
14164         goto argument.
14166 2012-01-03  Bastien Guerry  <bzg@gnu.org>
14168         * org.el (org-link-display-descriptive): Remove this option and
14169         rely on the existing `org-descriptive-links' instead.
14170         (org-toggle-link-display): Use `org-descriptive-links'.
14172 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
14174         * ob-ref.el (org-babel-ref-resolve): Allow matching of results
14175         with tags after the result name.
14177 2012-01-03  Bastien Guerry  <bzg@gnu.org>
14179         * org-table.el (org-table-get-specials): Allow the use of the
14180         underscore character in column names.
14181         (org-table-get-specials): Allow the use of the underscore
14182         character in field names.
14184 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
14186         * org-exp-blocks.el (org-export-blocks-preprocess):
14187         Explicitly cleaning up markers.
14189 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
14191         * ob-exp.el (org-babel-exp-inline-src-blocks): Save match data
14192         around `org-babel-exp-do-export' which now searches in this case.
14193         (org-babel-exp-results): Position the point in the inline source
14194         block during export evaluation.
14196         * ob.el (org-babel-insert-result): More readable code.
14198 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
14200         * org-exp-blocks.el (org-export-blocks-preprocess): Use the built
14201         in function rather than the superfluous (and now removed)
14202         org-specific function.
14204 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
14206         * ob-exp.el (org-babel-exp-inline-src-blocks): Don't examplize
14207         inline code blocks which are already escaped.
14209 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
14211         * org-exp-blocks.el (org-marker-from-point): Helper function to
14212         create markers at specific points in source buffers.
14213         (org-export-blocks-preprocess): Use markers instead of points
14214         to delimit code blocks.
14216 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14218         * org-list.el (org-list-separating-blank-lines-number):
14219         The behavior of `org-back-over-empty-lines' depends on the
14220         associated value of `headline' in
14221         `org-blank-before-new-entry', which is out of context in a
14222         list.
14224 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14226         * org-indent.el (org-indent-initialize-agent): When the current
14227         buffer isn't being watched, resume initialization of other watched
14228         buffers.  In that case, give hand to others idle timers or
14229         processes more frequently.
14230         (org-indent-agent-active-delay): Rename from
14231         `org-indent-agent-process-duration'.
14232         (org-indent-agent-passive-delay): New variable.
14233         (org-indent-agent-resume-delay): Change value.
14234         (org-indent-initialize-buffer): Change argument name.
14235         (org-indent-add-properties): Change argument name and type
14236         expected.  It must be a time value now.
14238 2012-01-03  Bastien Guerry  <bzg@gnu.org>
14240         * org.el (org-set-property): Bugfix.
14242 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
14244         * ob.el (org-babel-remove-result): Idempotent code block
14245         evaluation and result removal.
14247 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
14249         * ob-ruby.el (org-babel-ruby-initiate-session): No longer
14250         require inf-ruby when no session evaluation takes place.
14252 2012-01-03  Bastien Guerry  <bzg@gnu.org>
14254         * org-agenda.el (org-agenda-prefix-format): Mention "%e" in
14255         the docstring.
14257 2012-01-03  Carsten Dominik  <carsten.dominik@gmail.com>
14259         * org-agenda.el (org-agenda-custom-commands): Set a default
14260         value for this command.
14262 2012-01-03  Carsten Dominik  <carsten.dominik@gmail.com>
14264         * org-agenda.el (org-agenda-include-all-todo): Declare this option
14265         as no longer working.
14266         (org-timeline): Rename the include-all argument to dotodo.
14267         (org-arg-loc): Rename from` org-include-all-loc'.
14268         (org-agenda-list): Rename the INCLUDE-ALL argument to ARG,
14269         because its function has changed.
14271 2012-01-03  Bastien Guerry  <bzg@gnu.org>
14273         * org.el (org-fixup-indentation): Fix various small bugs.
14275 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14277         * org-indent.el (org-indent-agent-timer)
14278         (org-indent-agentized-buffers, org-indent-agent-resume-timer)
14279         (org-indent-agent-process-duration)
14280         (org-indent-agent-resume-delay): New variables.
14281         (org-indent-initial-marker): More accurate doc-string.
14282         (org-indent-initial-timer, org-indent-initial-resume-timer)
14283         (org-indent-initial-process-duration)
14284         (org-indent-initial-resume-delay)
14285         (org-indent-initial-lock): Remove variables.
14286         (org-indent-mode): Set up an agent to watch current buffer, or
14287         add it to the list of already watched buffers.
14288         (org-indent-initialize-agent): New function.
14289         (org-indent-initialize-buffer): Now requires a mandatory
14290         buffer argument.
14291         (org-indent-add-properties): Reflect changes to variables.
14292         The resume timer is now global.
14294 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14296         * org-footnote.el (org-footnote-normalize): Refactor, and fix
14297         some blank lines deletion.
14299 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14301         * org-indent.el (org-indent-mode):
14302         `org-indent-initial-resume-timer ' needs to be local.
14304 2012-01-03  Bastien Guerry  <bzg@gnu.org>
14306         * org.el (org-fixup-indentation): Correctly indent meta lines.
14308 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14310         * org-indent.el (org-indent-set-line-properties): Add text
14311         properties down to the beginning of the next line.
14312         (org-indent-add-properties): When last position to add
14313         properties to is at the beginning of a line, all that line
14314         will have properties.
14316 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14318         * org-indent.el (org-indent-initial-resume-timer): New variable.
14319         (org-indent-initialize-buffer): Also resume after a small break.
14320         (org-indent-add-properties): When in asynchronous mode,
14321         proceed for 2 seconds, then take a break.
14323 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14325         * org-indent.el (org-indent-set-line-properties): New function.
14326         (org-indent-add-properties): Externalize worker function.
14328 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14330         * org-indent.el (org-indent-indent-buffer): Take into account
14331         narrowing.
14333 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14335         * org-indent.el (org-indent-modified-headline-flag): Rename from
14336         `org-indent-deleted-headline-flag'
14337         (org-indent-notify-modified-headline): Rename from
14338         `org-indent-notify-deleted-headline'.  Handle situations when
14339         the stars of an headline are modified.
14340         (org-indent-refresh-maybe): Remove case now handled by
14341         previous function.
14342         (org-indent-mode): Apply renames.
14344 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14346         * org-indent.el (org-indent-inlinetask-first-star):
14347         New variable.
14348         (org-indent-add-properties): Set the first star of inline-tasks'
14349         virtual indentation in `org-warning' face.
14351         * org-inlinetask.el (org-inlinetask-insert-task): Create a new
14352         inline-task slightly differently, so virtual indentation can
14353         be applied normally.
14355 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14357         * org-indent.el (org-indent-initial-marker)
14358         (org-indent-initial-timer, org-indent-initial-lock):
14359         New variables.
14360         (org-indent-mode): At initialization, start an idle timer to indent
14361         the whole buffer.  When the user is asking for control, interrupt the
14362         process, and resume at the same point when idle again.
14363         (org-indent-initialize-buffer): New function.
14364         (org-indent-add-properties): Throw an interrupt when indentation of
14365         buffer is stopped during initialization.
14367 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14369         * org-indent.el (org-indent-indent-buffer): Send more
14370         appropriate messages.
14372 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14374         * org-indent.el (org-indent-notify-deleted-headline)
14375         (org-indent-refresh-maybe): Replace `org-indent-outline-re'
14376         with `org-outline-regexp-bol'.
14378 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14380         * org-indent.el (org-indent-max-levels): Modify default value and
14381         add comment.
14382         (org-indent-add-properties): Pay attention to `org-indent-max'
14383         and `org-indent-max-levels' values.
14384         (org-indent-refresh-maybe): Refactor code to avoid an unnecessary
14385         save excursion.
14387 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14389         * org-table.el (org-table-align): Remove now useless hack.
14391 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14393         * org-indent.el (org-indent-fix-section-after-idle-time):
14394         Remove variable.
14395         (org-indent-initialize): Remove timer.
14396         (org-indent-add-properties): Refactor code.
14397         (org-indent-refresh-subtree, org-indent-refresh-section)
14398         (org-indent-refresh-buffer, org-indent-set-initial-properties):
14399         Remove functions.
14400         (org-indent-deleted-headline): New variable.
14401         (org-indent-notify-deleted-headline, org-indent-refresh-maybe):
14402         New functions.
14403         (org-indent-mode): Insert new functions into a hook.
14405 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14407         * org-indent.el (org-indent-mode): Completely refresh buffer
14408         before starting org-indent-mode.  Also set idle timer to refresh
14409         only visible portion of buffer, and refresh the subtree instead of
14410         section when promoting or demoting it.
14411         (org-indent-add-properties): Rewrite function to proceed line by
14412         line, as required by `wrap-prefix' specificity.
14413         (org-indent-refresh-section, org-indent-refresh-subtree): Refactor.
14414         (org-indent-refresh-view): New function.
14415         (org-indent-refresh-to, org-indent-refresh-section):
14416         Remove functions.
14418         * org.el (org-unfontify-region): Do not remove prefix
14419         properties when unfontifying a region.
14421 2012-01-03  Bastien Guerry  <bzg@gnu.org>
14423         * org-colview.el (org-columns-cleanup-item): Correctly remove
14424         leading stars in items displayed in the agenda column view.
14426 2012-01-03  Bastien Guerry  <bzg@gnu.org>
14428         * org-colview.el (org-columns-display-here): Clean up items in
14429         `org-agenda-mode' too.
14430         (org-columns-cleanup-item): Take a new argument CPHR to allow
14431         passing a complex heading regexp.  Rewrite to cleanup ITEM
14432         correctly in `org-agenda-mode'.
14434 2012-01-03  Bastien Guerry  <bzg@gnu.org>
14436         * org-clock.el (org-duration-string-to-minutes)
14437         (org-minutes-to-hh:mm-string, org-hh:mm-string-to-minutes):
14438         Move from org.el.
14440 2012-01-03  Bastien Guerry  <bzg@gnu.org>
14442         * org.el (org-refile-active-region-within-subtree): New option to
14443         allow refiling a region that is part of a subtree without
14444         containing a subtree itself.  This default to `nil'.
14445         (org-refile): Use the new option.  Put point at the beginning
14446         of the region/subtree to be refiled, so that users understand
14447         what will be refiled.  Also improve the prompt to tell whether
14448         the user is refiling a region or a headline.
14450 2012-01-03  Bastien Guerry  <bzg@gnu.org>
14452         * org.el (org-properties-postprocess-alist): New option to allow
14453         postprocessing the values of properties set through
14454         `org-set-property'.
14455         (org-set-property): Use this option.
14457 2012-01-03  Bastien Guerry  <bzg@gnu.org>
14459         * org.el (org-outline-regexp, org-outline-regexp-bol): Add a
14460         docstring.
14462 2012-01-03  Bastien Guerry  <bzg@gnu.org>
14464         * org-archive.el (org-archive-to-archive-sibling):
14465         Use `org-outline-regexp' instead of `outline-regexp'.
14467 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14469         * org.el (org-between-regexps-p): Searching up to pos may
14470         match again beginning regexp.
14472 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14474         * org-footnote.el (org-footnote-goto-definition): Don't send
14475         erroneous message: suggested bindings might not be set outside
14476         Org.
14478 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14480         * org-footnote.el (org-footnote-normalize): Effectively remove
14481         any footnote tag in non Org buffers, as detailled in the
14482         docstring of `org-footnote-tag-for-non-org-mode-files'.
14484 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14486         * org-footnote.el (org-footnote-tag-for-non-org-mode-files):
14487         notify the opportunity to set the variable to the empty string.
14488         (org-footnote-normalize, org-footnote-create-definition):
14489         Carefully check for inserted newlines and presence of the
14490         footnote tag.
14492 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14494         * org-footnote.el (org-footnote-at-definition-p): Re-use
14495         `org-footnote-definition-re'.
14497 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14499         * org-footnote.el (org-footnote-definition-re): Remove an
14500         useless group.
14501         (org-footnote-at-definition-p): Reflect removal of the group.
14503 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14505         * org.el (org-set-regexps-and-options): Enforce white space
14506         after todo keyword, as word boundary isn't sufficient (i.e. in
14507         matches * TODO/this).
14509 2012-01-03  Jambunathan K  <kjambunathan@gmail.com>
14511         * org-inlinetask.el (org-inlinetask-export-templates):
14512         Fix template for html so that the exported file is valid
14513         xhtml.  Added template for odt.
14514         (org-inlinetask-export-handler): Fix typo in the regexp that
14515         trims content.  Make sure that the content is flanked by
14516         paragraph boundaries on either side.
14518 2012-01-03  Bastien Guerry  <bzg@gnu.org>
14520         * org.el (org-add-planning-info): Don't insert superfluous
14521         space when updating timestamps.
14523 2012-01-03  Bastien Guerry  <bzg@gnu.org>
14525         * org-agenda.el (org-cmp-effort): Fix docstring.
14527 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14529         * org-list.el (org-list-full-item-re): When an item has only a
14530         bullet and no space after it, list structure would not be
14531         recognized correctly.
14533 2012-01-03  Bastien Guerry  <bzg@gnu.org>
14535         * org.el (org-overview): Use `outline-regexp' instead of
14536         `org-outline-regexp' so that global cycling using
14537         `orgstruct-mode' works outside of Org buffers.
14539 2012-01-03  Bastien Guerry  <bzg@gnu.org>
14541         * org-table.el (org-table-eval-formula): Fix missing variable
14542         in let construct.
14543         (org-table-time-string-to-seconds): Fix missing variable in
14544         let construct.
14546 2012-01-03  Michael Brand  <michael.ch.brand@gmail.com>
14548         * org-agenda.el (org-agenda-get-deadlines): Fix dfrac for the
14549         case of wdays being 0.  Don't pass wdays to
14550         org-agenda-deadline-face, like before the old fix.
14551         (org-agenda-deadline-face): Revert to old state that was without
14552         wdays.
14554 2012-01-03  Bastien Guerry  <bzg@gnu.org>
14556         * org-latex.el (org-export-latex-fixed-width): Only add one
14557         line break after exporting verbatim environments.
14559 2012-01-03  Bastien Guerry  <bzg@gnu.org>
14561         * org-list.el (org-list-item-trim-br): New function.
14562         (org-list-to-generic): New parameter :nobr to use the new
14563         function.
14565 2012-01-03  David Maus  <dmaus@ictsoc.de>
14567         * org.el (org-paste-subtree): Fix wrong order of lines to move
14568         before pasting.
14570 2012-01-03  David Maus  <dmaus@ictsoc.de>
14572         * org.el (org-paste-subtree): Paste subtree above target
14573         headline if point is at bol.
14575 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14577         * org-list.el (org-toggle-checkbox): Don't clear lim-down
14578         while used in the while loop.
14580 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14582         * org-list.el (org-toggle-checkbox): Lim-down must be a
14583         marker.
14585 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14587         * org.el (org-activate-code): Correct regexp so ":.*" isn't
14588         matched.
14590 2012-01-03  David Maus  <dmaus@ictsoc.de>
14592         * org-macs.el (org-with-gensyms, org-called-interactively-p)
14593         (with-silent-modifications, org-bound-and-true-p)
14594         (org-unmodified, org-re, org-preserve-lc)
14595         (org-without-partial-completion, org-with-point-at)
14596         (org-no-warnings, org-if-unprotected, org-if-unprotected-1)
14597         (org-if-unprotected-at, org-with-remote-undo)
14598         (org-no-read-only, org-save-outline-visibility)
14599         (org-with-wide-buffer, org-with-limited-levels)
14600         (org-eval-in-environment): Provide edebug specifications.
14602         * org-src.el (org-src-do-at-code-block): Dto.
14604         * org-publish.el (org-publish-with-aux-preprocess-maybe): Dto.
14606         * org-compat.el (org-xemacs-without-invisibility): Dto.
14608         * org-clock.el (org-with-clock-position, org-with-clock): Dto.
14610         * org-agenda.el (org-agenda-with-point-at-orig-entry)
14611         (org-batch-agenda, org-batch-agenda-csv)
14612         (org-batch-store-agenda-views): Dto.
14614         * ob.el (org-babel-do-in-edit-buffer)
14615         (org-babel-map-src-blocks, org-babel-map-inline-src-blocks): Dto.
14617         * ob-tangle.el (org-babel-with-temp-filebuffer): Dto.
14619         * ob-table.el (sbe): Dto.
14621         * ob-exp.el (org-babel-exp-in-export-file): Dto.
14623         * ob-comint.el (org-babel-comint-in-buffer)
14624         (org-babel-comint-with-output): Dto.
14626 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14628         * org-inlinetask.el (org-inlinetask-export-templates):
14629         Fix docstring.
14631 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14633         * org-inlinetask.el (org-inlinetask-insert-task): Error when
14634         trying to nest inline tasks.
14636 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14638         * org.el (org-activate-code, org-toggle-fixed-width-section)
14639         (org-indent-line-function): Allow "[ \t]*:$" as a special case of
14640         fixed-width section.
14642 2012-01-03  David Maus  <dmaus@ictsoc.de>
14644         * org.el (org-paste-subtree): Don't eat headline when called
14645         with point at existing headline.
14647 2012-01-03  David Maus  <dmaus@ictsoc.de>
14649         * org.el (org-paste-subtree): Fix typo in variable name.
14651 2012-01-03  Jambunathan K  <kjambunathan@gmail.com>
14653         * org-inlinetask.el (org-inlinetask-export-handler):
14654         Don't export inline tasks if the current backend has provided no
14655         entries in `org-inlinetask-export-templates'.
14657 2012-01-03  Valentin Wüstholz  <wuestholz@gmail.com>  (tiny change)
14659         * org.el (org-indent-line-function): Made the way in which
14660         example blocks are indented more flexible.
14662 2012-01-03  David Maus  <dmaus@ictsoc.de>
14664         * org-agenda.el (org-batch-agenda-csv): Fix argument to append
14665         when creating final parameter alist.
14667 2012-01-03  David Maus  <dmaus@ictsoc.de>
14669         * org-agenda.el (org-batch-store-agenda-views): Use macro
14670         `org-eval-in-environment'.
14672 2012-01-03  David Maus  <dmaus@ictsoc.de>
14674         * org-agenda.el (org-batch-agenda, org-batch-agenda-csv):
14675         Use `org-eval-in-environment.
14677 2012-01-03  David Maus  <dmaus@ictsoc.de>
14679         * org-macs.el (org-make-parameter-alist): New function.
14680         Turn flat list of alternating symbol names and values into an alist
14681         with symbol name in car and value in cdr.
14683 2012-01-03  David Maus  <dmaus@ictsoc.de>
14685         * org-agenda.el (org-agenda-with-point-at-orig-entry):
14686         Use macro `org-with-gensyms'.
14688 2012-01-03  David Maus  <dmaus@ictsoc.de>
14690         * org-macs.el (org-substitute-posix-classes):
14691         New function.  Substitute posix classes in regular expression.
14692         (org-re): Use new function.
14694 2012-01-03  David Maus  <dmaus@ictsoc.de>
14696         * org-macs.el (org-eval-in-environment): New macro.  Evaluate FORM
14697         in ENVIRONMENT.
14699 2012-01-03  David Maus  <dmaus@ictsoc.de>
14701         * org-macs.el (org-preserve-lc, org-with-point-at)
14702         (org-with-remote-undo, org-save-outline-visibility): Use new
14703         macro `org-with-gensyms'.
14705 2012-01-03  David Maus  <dmaus@ictsoc.de>
14707         * org-macs.el (org-with-gensyms): New macro.  Wrap let-binding
14708         of SYMBOLS to new uninterned symbols around BODY.
14710 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14712         * org-inlinetask.el (org-inlinetask-export-handler): Make sure
14713         the task starts a paragraph or the HTML exporter will produce
14714         an incorrect output.
14716 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14718         * org.el (org-return): When filling happens, `newline' can
14719         change match data, hence modifying the indent column.
14721 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14723         * org-footnote.el (org-footnote-new): Only forbid non-inlined
14724         footnotes at column 0, as only them can be confused with a
14725         footnote definition.
14727 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14729         * org-footnote.el (org-footnote-new): Use `ido' or `iswitchb'
14730         when available when prompted for a label.  Also rename a local
14731         variable to avoid confusion with an existing function.
14733 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14735         * org-footnote.el (org-footnote-label-history):
14736         Remove variable
14737         (org-footnote-new): Remove call to that variable.
14739 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14741         * org.el (org-insert-heading): With `force-heading' non-nil,
14742         inserting an heading before any headline, and just after a
14743         list would return an error.
14745 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
14747         * ob.el (org-babel-sha1-hash): Remove use of `copy-seq'.
14749 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
14751         * org-bibtex.el (org-bibtex-get): Make the "FILE" property
14752         non-special when resolving bibtex values.
14754 2012-01-03  David Maus  <dmaus@ictsoc.de>
14756         * org.el (org-back-over-empty-lines): Don't move line upward
14757         if point is at eob.
14759 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14761         * org-footnote.el (org-footnote-in-valid-context-p):
14762         Check `org-protected' property before allowing to match a footnote.
14763         (org-footnote-at-reference-p): Remove an obsolete test.  It is now
14764         done in the previous function.
14766 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14768         * org.el (org-between-regexps-p): Previous name implied the
14769         function was related to blocks, which isn't mandatory.
14770         (org-narrow-to-block, org-in-block-p)
14771         (org-indent-line-function): Applied the rename.
14773         * ob-exp.el (org-babel-in-example-or-verbatim):
14774         Applied rename.  Also removed a white space.
14776 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14778         * org.el (org-in-regexps-block-p): Return an useful value when
14779         point is between START-RE and END-RE.  No incomplete block is
14780         allowed anymore.  Add another optional argument to bound the
14781         bottom part of the search.
14782         (org-narrow-to-block, org-in-block-p): Apply modifications.
14784 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
14786         * ob.el (org-babel-src-block-regexp): If a code block has a
14787         body, its last character must be a newline.
14789 2012-01-03  Nicolas Goaziou  <n.goaziou@gmail.com>
14791         * org-footnote.el (org-footnote-next-reference-or-definition):
14792         If no more footnote is found, be sure to go back to the
14793         original position.  Otherwise, point might be left on a
14794         footnote-like element that has been dished out.
14796 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
14798         * ob-exp.el (org-babel-inline-src-block-regexp): Declare this
14799         variable.
14801         * ob.el (defvar): Wrap variable declaration in
14802         `eval-when-compile'.
14804 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
14806         * ob-keys.el (org-babel-key-bindings): Bound to `C-c C-v k'.
14808 2012-01-03  Eric Schulte  <schulte.eric@gmail.com>
14810         * ob-java.el (org-babel-execute:java): Allow cmdline flags
14811         during compilation and evaluation.
14813 2011-12-06  Juanma Barranquero  <lekktu@gmail.com>
14815         * ob.el (org-babel-expand-body:generic, org-babel-number-p):
14816         * ob-ref.el (org-babel-ref-parse): Fix typos.
14818 2011-11-24  Juanma Barranquero  <lekktu@gmail.com>
14820         * ob.el (org-babel-execute-src-block): Fix typo.
14822 2011-11-20  Juanma Barranquero  <lekktu@gmail.com>
14824         * org.el (org-link-unescape, org-link-unescape-compound): Fix typos.
14826 2011-11-20  Andreas Schwab  <schwab@linux-m68k.org>
14828         * org-list.el (org-list-send-item): Use sort instead of sort*.
14830 2011-11-20  Juanma Barranquero  <lekktu@gmail.com>
14832         * org-table.el (org-table-line-to-dline): Fix typo.
14834 2011-11-16  Juanma Barranquero  <lekktu@gmail.com>
14836         * org-agenda.el (org-agenda-add-entry-text-descriptive-links)
14837         (org-agenda-custom-commands, org-write-agenda, org-check-for-org-mode)
14838         (org-search-syntax-table, org-modify-diary-entry-string)
14839         (org-write-agenda):
14840         * org-bbdb.el (org-bbdb-anniv-export-ical):
14841         * org-bibtex.el (org-bibtex-fields):
14842         * org-icalendar.el (org-icalendar-date-time-format):
14843         * org-latex.el (org-export-latex-inline-image-extensions):
14844         * org-list.el (org-list-insert-item): Fix typos.
14846 2011-11-11  Juanma Barranquero  <lekktu@gmail.com>
14848         * org-plot.el (org-plot/gnuplot-to-grid-data): Fix typo in docstring.
14850 2011-09-27  Eli Zaretskii  <eliz@gnu.org>
14852         * org.el (org-mode): Force left-to-right paragraphs in Org
14853         buffers.  For a related discussions, see
14854         https://lists.gnu.org/archive/html/emacs-devel/2011-09/msg00349.html.
14856 2011-09-17  Juanma Barranquero  <lekktu@gmail.com>
14858         * org.el (org-toggle-pretty-entities): Fix typo in message.
14860 2011-09-02  Chong Yidong  <cyd@stupidchicken.com>
14862         * org-compat.el (org-pop-to-buffer-same-window): Delete.
14864         * ob-ref.el (org-babel-ref-goto-headline-id):
14865         * org.el (org-get-location, org-tree-to-indirect-buffer)
14866         (org-mark-ring-goto, org-refile, org-add-log-note)
14867         (org-revert-all-org-buffers, org-switchb)
14868         (org-cycle-agenda-files, org-submit-bug-report)
14869         (org-goto-marker-or-bmk):
14870         * org-agenda.el (org-prepare-agenda, org-agenda-switch-to):
14871         * org-capture.el (org-capture-goto-target)
14872         (org-capture-fill-template):
14873         * org-clock.el (org-clock-goto):
14874         * org-ctags.el (org-ctags-visit-buffer-or-file):
14875         * org-exp.el (org-export-as-org):
14876         * org-feed.el (org-feed-show-raw-feed):
14877         * org-html.el (org-export-htmlize-generate-css):
14878         * org-id.el (org-id-goto):
14879         * org-irc.el (org-irc-visit-erc):
14880         * org-mobile.el (org-mobile-apply):
14881         * org-publish.el (org-publish-org-to, org-publish-find-date):
14882         * org-remember.el (org-go-to-remember-target):
14883         * org-src.el (org-src-switch-to-buffer)
14884         (org-edit-fixed-width-region): Use switch-to-buffer.
14886 2011-08-31  Martin Rudalics  <rudalics@gmx.at>
14888         * org-compat.el (org-pop-to-buffer-same-window): Remove LABEL
14889         argument from pop-to-buffer-same-window call.
14891 2011-07-30  Carsten Dominik  <carsten.dominik@gmail.com>
14893         * ob.el (org-babel-src-block-regexp): If a code block has a body,
14894         its last character must be a newline.
14896 2011-07-28  Bastien Guerry  <bzg@gnu.org>
14898         * org-pcomplete.el: New file.  Rename from org-complete.el.
14899         * org-complete.el: Delete file.
14901 2011-07-28  Bastien Guerry  <bzg@gnu.org>
14903         * org-publish.el (org-publish-index-generate-theindex):
14904         Rename from `org-publish-index-generate-theindex.inc'.  Use the file
14905         theindex.org directly instead of including theindex.inc.
14906         (org-publish-projects): Don't delete .orgx files.
14907         (org-publish-aux-preprocess): Use .file.orgx.
14909 2011-07-28  Bastien Guerry  <bzg@gnu.org>
14911         * org-html.el (org-export-html-preamble-format): New default for
14912         the HTML preamble: don't include the title.  Also improve the
14913         docstring.
14914         (org-export-html-postamble-format): Improve the docstring.
14915         (org-export-as-html): Add the title within the "content" div.
14916         This is necessary for interaction with the org-info.js script.
14918 2011-07-28  Michael Brand  <michael.ch.brand@gmail.com>
14920         * org-table.el (org-table-edit-field): Display field coordinates.
14922 2011-07-28  Bastien Guerry  <bzg@gnu.org>
14924         * org-publish.el (org-publish-find-title): Bugfix: kill buffers
14925         unless they were already visited.
14926         (org-sitemap-sort-files, org-sitemap-sort-folders)
14927         (org-sitemap-ignore-case, org-sitemap-requested)
14928         (org-sitemap-date-format, org-sitemap-file-entry-format):
14929         Use a correct prefix.
14930         (org-publish-projects): Make sure to delete .orgx files.
14931         (org-publish-index-generate-theindex.inc): Small docstring fix.
14933 2011-07-28  Bastien Guerry  <bzg@gnu.org>
14935         * org-table.el (org-table-duration-custom-format): New defcustom
14936         to select output format of durations computations.
14937         (org-table-time-seconds-to-string): Use the new variable.
14938         (org-table-eval-formula): Allow `t' as a flag, on top of `T'.  `t'
14939         will use the custom output format defined in
14940         `org-table-duration-custom-format'.
14942 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
14944         * org-list.el: Search blank lines down to the end of the item
14945         instead of stopping at the item, in order to possibly match such
14946         lines within the item.
14948 2011-07-28  Bastien Guerry  <bzg@gnu.org>
14950         * org-latex.el (org-export-latex-href-format): Docstring fix to
14951         reflect the fact that you can use only one "%s".
14952         (org-export-latex-links): Allow `org-export-latex-href-format' to
14953         have only one "%s".
14955 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
14957         * org.el (org-org-menu): Add `org-copy-visible' to the menu.
14959 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
14961         * org.el (org-copy-visible): New command.
14963 2011-07-28  Bastien Guerry  <bzg@gnu.org>
14965         * org-capture.el (org-capture-templates): Docstring fix.
14967 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
14969         * ob.el (org-babel-view-src-block-info): New function to inspect
14970         code blocks.
14972         * ob-keys.el (org-babel-key-bindings): Key bindings for
14973         `org-babel-view-src-block-info'.
14975 2011-07-28  Bastien Guerry  <bzg@gnu.org>
14977         * org-exp.el (org-infile-export-plist): Handle recursively
14978         included setup files.  The value of the last included file always
14979         takes precedence over previous values.
14981 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
14983         * org.el (org-timestamp-change): Keep point in the same category
14984         when updating a time-stamp.  This requires to be careful, as,
14985         depending on the locale, name of day might change of length during
14986         the process.
14988 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
14990         * org-footnote.el (org-footnote-create-definition): When skipping
14991         already written footnotes definition, the algorithme would assume
14992         each one was only one-line long.
14994 2011-07-28  Bastien Guerry  <bzg@gnu.org>
14996         * org-table.el (org-table-eval-formula): Fix bug when a formula
14997         "range" is just one cell.
14998         (org-table-time-string-to-seconds): Don't check whether we
14999         manipulate a string.
15001 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15003         * org-exp.el (org-export-mark-list-end)
15004         (org-export-mark-list-properties): Don't remove the ending regexp
15005         when it consists in blank lines.
15007         * org-list.el (org-list-parse-list): Ditto, but remove it
15008         completely when it isn't made of blank lines (i.e. during export
15009         process).
15011 2011-07-28  Bastien Guerry  <bzg@gnu.org>
15013         * org-table.el (org-table-time-string-to-seconds): Match either
15014         HH:MM:SS or HH:MM (instead of MM:SS).
15016 2011-07-28  Bastien Guerry  <bzg@gnu.org>
15018         * org.el (org-ctrl-c-ctrl-c-final-hook): New hook to be run when
15019         `org-ctrl-c-ctrl-c' cannot do anything useful in the given
15020         context.
15022 2011-07-28  Bastien Guerry  <bzg@gnu.org>
15024         * org-html.el (org-export-html-with-timestamp)
15025         (org-export-html-html-helper-timestamp): These are obsolete
15026         variables as of Org version 7.7 as you can already export the
15027         timestamp from the preamble or the postamble.
15028         (org-export-html-before-content-div): Delete variable.
15029         (org-export-html-content-div): Obsolete variable as of 7.7.
15030         (org-export-html-divs): New variable to define divs used in
15031         HTML export.
15032         (org-export-as-html): Now the preamble and the postamble are
15033         surrounded by a <div ...>.  The name of the div is defined through
15034         `org-export-html-divs'.
15036 2011-07-28  Bastien Guerry  <bzg@gnu.org>
15038         * org-table.el (org-table-eval-formula): Throw an error when
15039         trying to replace complex range with invalid references.
15041 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15043         * org-macs.el (org-with-limited-levels): Some functions, like
15044         `org-back-to-heading', being deeply based on outline-mode, still
15045         refer to `outline-regexp' instead of `org-outline-regexp'.
15047 2011-07-28  Bastien Guerry  <bzg@gnu.org>
15049         * org.el (org-refile-get-targets): New optional argument
15050         `excluded-entries' to exclude entries from the targets.
15051         (org-refile-get-location): From an org-mode buffer, exclude
15052         current heading and subheadings from the list of targets when
15053         `org-refile-use-cache' is nil.
15055 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15057         * org.el (org-imenu-get-tree): Headlines start at bol.
15059 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15061         * ob-maxima.el: New file.  Fixed self-proclaimed file name.
15063 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15065         * ob.el (org-babel-sha1-hash): Only call `copy-seq' on proper
15066         lists.
15068 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15070         * org.el (org-kill-is-subtree-p): Matched string needs to start at
15071         bol.
15073 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15075         * org.el (org-paste-subtree, org-kill-is-subtree-p)
15076         (org-yank-folding-would-swallow-text, org-yank-generic):
15077         Use `org-with-limited-levels' macro.
15079 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15081         * org-macs.el (org-with-limited-levels): Also modify, when
15082         appropriate, `org-outline-regexp-at-bol'.
15084 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15086         * org.el (org-timestamp-change): Some locales don't use the same
15087         length for date abbreviations.  Set a marker at origin in case
15088         length of new timestamp is different.
15090 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15092         * org.el (org-imenu-get-tree): Browse only true headlines.
15094 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15096         * org-archive.el (org-archive-subtree): While it might be possible
15097         to archive an headline of a temporary buffer (i.e. not visiting a
15098         file), it wouldn't be really sensible.
15100 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15102         * org-archive.el (org-extract-archive-file)
15103         (org-extract-archive-heading, org-archive-subtree):
15104         `buffer-file-name' is nil in an indirect buffer.  Thus, use
15105         `(buffer-file-name (buffer-base-buffer))', which will, in any
15106         case, return the file name.
15108 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15110         * org-capture.el (org-capture): If dired isn't loaded,
15111         `dired-buffers' isn't defined, and %F will fail.
15113 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15115         * ob-java.el (org-babel-execute:java): Don't create empty package
15116         directories.
15118 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15120         * ob-java.el: New file.
15122 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15124         * ob.el (org-babel-execute-src-block): Replace call to defunct
15125         function `org-babel-result-hash'.
15127 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15129         * org-footnote.el (org-footnote-in-valid-context-p): Avoid cited
15130         lines and headers in `message-mode'.
15131         (org-footnote-at-reference-p): Remove check for cited lines, this
15132         is now handled by the previous function.  Refactor.
15134 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15136         * org-capture.el (org-capture): If no file is associated to
15137         current buffer, check dired buffer and try to retrieve a possibly
15138         directory associated.
15140 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15142         * ob-exp.el (org-babel-exp-results): Resolve hashes in the current
15143         (not original) file buffer.
15145         * ob.el (org-babel-current-result-hash): More informative name,
15146         and remove useless optional argument.
15148 2011-07-28  Bastien Guerry  <bzg@gnu.org>
15150         * org.el (org-refile-get-location): Exclude current heading from
15151         the refile table.
15153 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15155         * org-footnote.el (org-footnote-at-reference-p): Test if match is
15156         in cited text, when replying to a message.
15157         (org-footnote-new): Do not create a new footnote at bol, as it
15158         might be seen as a definition.
15159         (org-footnote-at-definition-p): Ignore definitions in forbidden
15160         blocks, as it is already the case for references.
15162 2011-07-28  Matt Lundin  <mdl@imapmail.org>
15164         * org-bibtex.el (org-bibtex-create, org-bibtex-write):
15165         Change argument of `org-toggle-tag' to 'on.  (Other arguments, e.g., t,
15166         have no effect).
15168 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15170         * org-bibtex.el (org-bibtex-get): Don't let trimming turn nils
15171         into empty strings.
15173 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15175         * org-list.el (org-list-insert-item): Actualize code comments.
15176         (org-insert-item): For consistency, point cannot be moved at a
15177         surprising place when the user is being asked to choose a new
15178         description term to insert in the list.  Point should stay where
15179         the user called the command.
15181 2011-07-28  Bastien Guerry  <bzg@gnu.org>
15183         * org.el (org-outline-regexp-bol): New defconst.
15184         (org-outline-level, org-set-font-lock-defaults, org-cycle)
15185         (org-overview, org-content, org-flag-drawer)
15186         (org-first-headline-recenter, org-insert-todo-heading)
15187         (org-map-region, org-move-subtree-down, org-paste-subtree)
15188         (org-kill-is-subtree-p, org-context-p, org-refile)
15189         (org-refile-new-child, org-toggle-comment, org-todo)
15190         (org-add-planning-info, org-add-log-setup, org-scan-tags)
15191         (org-set-tags, org-insert-property-drawer)
15192         (org-prepare-agenda-buffers, org-preview-latex-fragment)
15193         (org-speed-command-default-hook, org-check-for-hidden)
15194         (org-toggle-item, org-toggle-heading)
15195         (org-indent-line-function, org-set-autofill-regexps)
15196         (org-fill-paragraph, org-toggle-fixed-width-section)
15197         (org-yank-generic, org-yank-folding-would-swallow-text)
15198         (org-first-sibling-p, org-goto-sibling)
15199         (org-goto-first-child, org-show-entry):
15200         Use `org-outline-regexp' and `org-outline-regexp-bol'.
15202 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15204         * org.el (org-update-parent-todo-statistics): COOKIE_DATA should
15205         be checked for parent, not current headline.  Also, this function
15206         doesn't need to be interactive.
15208 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15210         * org-list.el (org-list-send-item, org-list-struct-apply-struct)
15211         (org-apply-on-list, org-toggle-checkbox): Make markers point
15212         nowhere when they have become useless.
15214 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15216         * org-list.el (org-list-insert-item): When insertion point is in
15217         some white line after the end of the list, remove all unnecessary
15218         white lines there before proceeding.  Also refactor a snippet of
15219         code.
15221 2011-07-28  Bastien Guerry  <bzg@gnu.org>
15223         * org-latex.el (org-export-latex-image-default-option):
15224         Change default value.
15226 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15228         * org.el (org-fontify-meta-lines-and-blocks-1): Blocks cannot be
15229         correctly fontified when the buffer is missing a final newline.
15231 2011-07-28  Bastien Guerry  <bzg@gnu.org>
15233         * ob.el (org-babel-strip-protective-commas): Return `nil' instead
15234         of an error if no argument is given.
15235         (org-babel-parse-src-block-match): Make sure body is defined in
15236         the let construct.
15238 2011-07-28  Jon Anders Skorpen  <jonas@ifi.uio.no>  (tiny change)
15240         * org-publish.el (org-publish-cache-file-needs-publishing):
15241         Regexp did not find includes with double quoted file names.
15243 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15245         * org-footnote.el (org-footnote-normalize): Footnote section
15246         should be inserted only if there are footnotes to insert.
15248 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15250         * org-footnote.el (org-footnote-at-definition-p)
15251         (org-footnote-normalize): Do not grab signature in the definition
15252         of the last footnote.
15254 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15256         * org-bibtex.el (org-babel-trim): Declare this function to the
15257         compiler.
15258         (org-bibtex-get): Trimming whitespace off of bibtex fields read from
15259         properties.
15261 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15263         * org-exp.el (org-export-preprocess-string): Add the possibility
15264         to call recursively the function.  Also change order of some
15265         function calls.  Comment export process for footnotes.
15267         * org-footnote.el (org-footnote-normalize): Change the export
15268         specific parameter to hold properties of export.  Thus, the
15269         function can send every footnote definition in the buffer through
15270         `org-export-process-string'.
15272 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15274         * org-latex.el (org-export-latex-preprocess): First insert
15275         footnotes in the temporary buffer so their contents can properly
15276         be protected from further transformations if required.
15278 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15280         * org-list.el (org-list-indent-offset): New variable.
15281         (org-list-struct-fix-ind): Make use of the new variable.
15283 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15285         * org-latex.el (org-export-latex-list-parameters):
15286         Complete default value with cbtrans option.
15288         * org-list.el (org-list-to-latex): Set a more consistent default
15289         value.
15291 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15293         * org-list.el (org-list-swap-items): Move it to a meaningful
15294         position in source code (i.e. before any function using it), and
15295         rename it to an easier name.
15297 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15299         * org-list.el (org-list-separating-blank-lines-number): If there
15300         are blank lines already in the whole list, add a blank line.
15302 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15304         * org-list.el (org-list-use-circular-move): New variable.
15305         (org-previous-item, org-next-item): Make use of the new variable.
15306         (org-move-item-down, org-move-item-up): Make use of the new
15307         variable.  Simplify code.
15309 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15311         * org-list.el (org-list-delete-item, org-list-send-item):
15312         New functions.
15314 2011-07-28  Bastien Guerry  <bzg@gnu.org>
15316         * org-agenda.el (org-agenda-bulk-custom-functions): New variable
15317         for custom bulk action functions.
15318         (org-agenda-bulk-action): Use it.
15320 2011-07-28  Bastien Guerry  <bzg@gnu.org>
15322         * org-latex.el (org-export-latex-quotes): New defcustom.
15323         (org-export-latex-quotation-marks): Use it.
15325 2011-07-28  Bastien Guerry  <bzg@gnu.org>
15327         * org-capture.el (org-capture-finalize): Bugfix about inserted
15328         blank line when killing the capture buffer and
15329         `org-blank-before-new-entry' tells to not insert anything before a
15330         heading.
15332 2011-07-28  Bastien Guerry  <bzg@gnu.org>
15334         * org-html.el (org-export-html-content-div): Rename from
15335         `org-export-content-div'.
15336         (org-export-as-html): Use new name.
15338 2011-07-28  Bastien Guerry  <bzg@gnu.org>
15340         * org-latex.el (org-export-latex-header-defs-re): Delete.
15342 2011-07-28  Bastien Guerry  <bzg@gnu.org>
15344         * org.el (org-last-set-property): New variable.
15345         (org-read-property-name): Use the new variable: the prompt
15346         defaults to the last property set, unless there is a property in
15347         the line at point.
15349 2011-07-28  David Maus  <dmaus@ictsoc.de>
15351         * org-capture.el (org-capture-before-finalize-hook)
15352         (org-capture-after-finalize-hook, org-capture-mode-map)
15353         (org-capture-mode, org-capture-goto-last-stored): Fix docstring,
15354         consistently refer to capture, not remember.
15356 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15358         * ob-clojure.el (org-babel-execute:clojure): Respects "scalar" and
15359         "verbatim" results params.
15361 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15363         * ob-awk.el (org-babel-execute:awk): Use "verbatim" as synonym for
15364         "scalar".
15366         * ob-sh.el (org-babel-sh-evaluate): Use "verbatim" as synonym for
15367         "scalar".
15369         * ob-sqlite.el (org-babel-execute:sqlite): Use "verbatim" as
15370         synonym for "scalar".
15372         * ob.el (org-babel-merge-params): Use "verbatim" as synonym for
15373         "scalar".
15375 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15377         * ob.el (org-babel-script-escape): Parse odd parens when nested
15378         isnide lists.
15380 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15382         * ob-clojure.el (org-babel-execute:clojure): No longer force
15383         results into elisp if they don't naturally fit.
15385 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15387         * ob-clojure.el (org-babel-execute:clojure): Stop re-reading
15388         already parsed lisp results.
15390 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15392         * org-list.el (org-plain-list-ordered-item-terminator):
15393         Remove incorrect assumption.
15395 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15397         * org-footnote.el (org-footnote-forbidden-blocks): Add missing
15398         exporter specific blocks.
15400         * org-list.el (org-list-forbidden-blocks): Ditto.
15402 2011-07-28  Bastien Guerry  <bzg@gnu.org>
15404         * org-latex.el (org-export-latex-tables): Bugfix: remove
15405         properties from fields.
15407 2011-07-28  Bastien Guerry  <bzg@gnu.org>
15409         * org.el (org-shiftcontrolup, org-shiftcontroldown): New commands
15410         to use `org-clock-timestamps-change'.
15412 2011-07-28  Bastien Guerry  <bzg@gnu.org>
15414         * org.el (org-timestamp-up, org-timestamp-down): Mention time
15415         changes in the docstring.
15417 2011-07-28  Bastien Guerry  <bzg@gnu.org>
15419         * org-clock.el (org-clock-remove-empty-clock-drawer): New function
15420         to remove empty clock drawer.
15421         (org-clock-out-hook): Add the new function as a hook.
15423 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15425         * org-list.el (org-list-in-valid-context-p): Use `org-in-block-p'.
15427 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15429         * org.el (org-in-block-p): New function.
15431         * org-footnote.el (org-footnote-forbidden-blocks): New variable.
15432         (org-footnote-in-valid-context-p): New function.
15433         (org-footnote-at-reference-p): Use new function.  Allow inline
15434         footnotes to start at bol.
15436 2011-07-28  Bastien Guerry  <bzg@gnu.org>
15438         * org-lparse.el (org-lparse-use-flashy-warning): New defcustom.
15439         (org-lparse-warn): Use it.
15441 2011-07-28  Bastien Guerry  <bzg@gnu.org>
15443         * org-ascii.el (org-export-as-utf8): Fix call to
15444         `org-called-interactively-p': it requires an argument.  Also fix
15445         the docstring.
15447 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15449         * ob-lilypond.el (show-all): Declaring function from outline.el.
15450         (org-babel-default-header-args:lilypond): Declared.
15451         (ly-process-basic): Use the appropriate prefix for the temporary
15452         file, and don't call a function from ob-dot.el.
15453         (ly-version): Let-bind a free variable.
15455 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15457         * ob-lilypond.el: New file.
15459 2011-07-28  Bastien Guerry  <bzg@gnu.org>
15461         * org-publish.el
15462         (org-publish-cache-file-needs-publishing): Only check against .org
15463         files.
15465 2011-07-28  Bastien Guerry  <bzg@gnu.org>
15467         * org.el (org-mode): Use `org-default' as the default face in
15468         org-mode.
15470 2011-07-28  Bastien Guerry  <bzg@gnu.org>
15472         * org-publish.el
15473         (org-publish-cache-file-needs-publishing): Takes care of more
15474         recently included files, returning `t' in case the file including
15475         them needs to be republished.
15477 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15479         * org-exp.el (org-export-preprocess-string): If the last subtree
15480         is a task, footnotes may be removed along with the subtree.
15481         This patch ensures footnotes are put at the end of the buffer after the
15482         subtree has been removed.
15484 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15486         * org-footnote.el (org-footnote-at-reference-p): Verify that what
15487         looks like a footnote doesn't belong to a link.
15488         (org-footnote-next-reference-or-definition): Check more strictly
15489         footnote definitions.
15491 2011-07-28  Deech  <deech@deech-ThinkPad-X200.(none)>  (tiny change)
15493         * ob-tangle.el (org-babel-tangle): Ignore errors thrown by
15494         language modes.
15496 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15498         * ob-python.el (org-babel-python-evaluate-session): Inhibit return
15499         of the eoe string during session evaluation.
15501 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15503         * ob-python.el (org-babel-python-evaluate-session):
15504         Enough newlines to ensure a return when ":results output :session".
15506 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15508         * ob-python.el (org-babel-python-evaluate-session): Introduced a
15509         new local function for sending input with a slight delay to allow
15510         pythong to re-draw the prompt.  No longer removing newlines inside
15511         code block bodies (was due to a defective regexp).
15513 2011-07-28  Bastien Guerry  <bzg@gnu.org>
15515         * org-table.el (org-table-time-seconds-to-string):
15516         Use `org-format-seconds' instead of `format-seconds'.
15518 2011-07-28  David Maus  <dmaus@ictsoc.de>
15520         * org-publish.el (org-publish-cache-ctime-of-src): Properly handle
15521         relative symlinks.
15523 2011-07-28  David Maus  <dmaus@ictsoc.de>
15525         * org-latex.el (org-export-latex-preprocess): Use function
15526         argument instead of dynamically scoped symbol.
15528 2011-07-28  David Maus  <dmaus@ictsoc.de>
15530         * org-freemind.el (org-freemind-convert-links-helper)
15531         (org-freemind-convert-text-p, org-freemind-write-mm-buffer)
15532         (org-freemind-get-node-style): Use org-string-match-p for backward
15533         compatibility with Emacs 22.
15535 2011-07-28  David Maus  <dmaus@ictsoc.de>
15537         * org-html.el (org-export-html-protect-char-alist): Add missing
15538         :group keyword in defcustom.
15540 2011-07-28  David Maus  <dmaus@ictsoc.de>
15542         * ob-haskell.el (org-babel-haskell-export-to-lhs):
15543         Call `kill-buffer' with argument indiciating to kill current
15544         buffer.  Emacs 22 compatibility.
15546 2011-07-28  David Maus  <dmaus@ictsoc.de>
15548         * org-macs.el (org-without-partial-completion):
15549         Toggle partial-completion-mode only if it is turned on.
15551 2011-07-28  Bastien Guerry  <bzg@gnu.org>
15553         * org.el (org-add-planning-info): Fix issues with timestamps not
15554         being inserted at the same position.
15556 2011-07-28  Bastien Guerry  <bzg@gnu.org>
15558         * org-table.el (org-table-time-string-to-seconds)
15559         (org-table-time-seconds-to-string): New functions.
15560         (org-table-eval-formula): Implement the "T" (time) flag for
15561         computing durations.
15563 2011-07-28  Jambunathan K  <kjambunathan@gmail.com>
15565         * org.el (org-modules): Add org-lparse and org-odt as contrib
15566         modules.
15568 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15570         * org.el (org-fontify-meta-lines-and-blocks-1): Include header
15571         lines.
15572         (org-additional-option-like-keywords): Include data as a synonym
15573         for results.
15575 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15577         * ob.el (org-babel-sha1-hash): Improving code layout and removing
15578         export-variable headers in cache sha1.
15580 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15582         * ob-ref.el (org-babel-ref-goto-headline-id): Don't let `org-id'
15583         rescan all IDs when trying to resolve a reference.
15585 2011-07-28  Julien Barnier  <julien@nozav.org>
15587         * org.el (org-fontify-meta-lines-and-blocks-1): Fix test for src
15588         blocks lang attribute.
15590 2011-07-28  Eric S Fraga  <e.fraga@ucl.ac.uk>
15592         * org-latex.el (org-export-latex-timestamp-inactive-markup):
15593         New option to allow different markup for inactive timestamps.
15595 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15597         * ob-org.el (org-babel-expand-body:org): Implemented this
15598         function, only action is to expand variables.
15599         (org-babel-execute:org): Uses the new body-expansion function.
15601 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15603         * org-list.el (org-list-full-item-re): Allow counter and check-box
15604         to be separated by white spaces.
15605         (org-list-struct-apply-struct): Reflect changes made to
15606         `org-list-full-item-re'.
15608         * org-html.el (org-html-export-list-line): Recognize spaces
15609         between counter and check-boxes as valid.
15611         * org-docbook.el (org-export-docbook-list-line): Ditto.
15613 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15615         * org-list.el (org-list-insert-item): Make sure point is moved to
15616         the specified POS before starting the function.
15618 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15620         * org.el (org-activate-footnote-links): Properly fontify inline
15621         footnotes.
15622         (org-set-font-lock-defaults): Apply changes to previous function.
15624 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15626         * org-footnote.el (org-footnote-at-reference-p): First check if
15627         point is at the beginning of a footnote.  Indeed `org-in-regexp'
15628         first checks backwards and might find an incorrect footnote if
15629         they are side-by-side.
15631 2011-07-28  Michael Brand  <michael.ch.brand@gmail.com>
15633         * org-agenda.el (org-agenda-compact-blocks): Improve docstring.
15634         (org-agenda-block-separator): Add nil to docstring and customization.
15635         (org-prepare-agenda): Skip agenda block separator additionally if
15636         `org-agenda-block-separator' is nil.
15637         (org-agenda-overriding-header): Improve docstring.
15639 2011-07-28  Bastien Guerry  <bzg@gnu.org>
15641         * org.el (org-set-tags): Remove useless
15642         `org-without-partial-completion'.
15644 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15646         * org-footnote.el (org-fill-paragraph): Declare function for the
15647         compiler.
15649 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15651         * ob-ref.el (org-narrow-to-subtree): Declare unknown function.
15653 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15655         * ob.el (org-babel-inline-lob-one-liner-regexp): Declare variable
15656         to appease compiler.
15658 2011-07-28  Michael Markert  <markert.michael@googlemail.com>
15660         * ob.el (org-babel-sha1-hash): Adding optional argument KIND to
15661         all `org-called-interactively-p' function invocations.
15663         * org-agenda.el (org-agenda-redo): Adding optional argument KIND
15664         to all `org-called-interactively-p' function invocations.
15665         (org-agenda-show-1): Adding optional argument KIND to all
15666         `org-called-interactively-p' function invocations.
15667         (org-agenda-set-tags): Adding optional argument KIND to all
15668         `org-called-interactively-p' function invocations.
15670         * org-ascii.el (org-export-as-latin1): Adding optional argument
15671         KIND to all `org-called-interactively-p' function invocations.
15672         (org-export-as-latin1-to-buffer): Adding optional argument KIND to
15673         all `org-called-interactively-p' function invocations.
15674         (org-export-as-utf8-to-buffer): Adding optional argument KIND to all
15675         `org-called-interactively-p' function invocations.
15676         (org-export-region-as-ascii): Adding optional argument KIND to all
15677         `org-called-interactively-p' function invocations.
15679         * org-docbook.el (org-export-region-as-docbook): Adding optional
15680         argument KIND to all `org-called-interactively-p' function
15681         invocations.
15683         * org-html.el (org-export-region-as-html): Adding optional
15684         argument KIND to all `org-called-interactively-p' function
15685         invocations.
15687         * org-latex.el (org-export-region-as-latex): Adding optional
15688         argument KIND to all `org-called-interactively-p' function
15689         invocations.
15691         * org-table.el (org-table-blank-field): Adding optional argument
15692         KIND to all `org-called-interactively-p' function invocations.
15693         (org-table-current-column): Adding optional argument KIND to all
15694         `org-called-interactively-p' function invocations.
15695         (org-table-current-dline): Adding optional argument KIND to all
15696         `org-called-interactively-p' function invocations.
15697         (org-table-sort-lines): Adding optional argument KIND to all
15698         `org-called-interactively-p' function invocations.
15699         (org-table-sum): Adding optional argument KIND to all
15700         `org-called-interactively-p' function invocations.
15701         (org-table-rotate-recalc-marks): Adding optional argument KIND to
15702         all `org-called-interactively-p' function invocations.
15703         (org-table-eval-formula): Adding optional argument KIND to all
15704         `org-called-interactively-p' function invocations.
15705         (orgtbl-send-table): Adding optional argument KIND to all
15706         `org-called-interactively-p' function invocations.
15708         * org.el (org-mode): Adding optional argument KIND to all
15709         `org-called-interactively-p' function invocations.
15710         (org-copy-subtree): Adding optional argument KIND to all
15711         `org-called-interactively-p' function invocations.
15712         (org-paste-subtree): Adding optional argument KIND to all
15713         `org-called-interactively-p' function invocations.
15714         (org-store-link): Adding optional argument KIND to all
15715         `org-called-interactively-p' function invocations.
15716         (org-todo): Adding optional argument KIND to all
15717         `org-called-interactively-p' function invocations.
15718         (org-occur): Adding optional argument KIND to all
15719         `org-called-interactively-p' function invocations.
15721 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15723         * org-footnote.el (org-footnote-action): Offer to create
15724         definition when none is found.
15726 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15728         * org-footnote.el (org-footnote-re): Avoid matching inactive
15729         time-stamps or check-box cookies.
15730         (org-footnote-next-reference-or-definition): Adapt to the new regexp.
15732 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15734         * org-exp.el (org-export-preprocess-string): If the last subtree
15735         is commented, footnotes inserted during normalizing at the end of
15736         the buffer may get deleted.  This patch ensures deletion comes
15737         first, normalization second.
15739 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15741         * org-exp.el (org-export-footnotes-data): Change docstring.
15742         (org-export-footnotes-seen): Rename from
15743         org-export-footnotes-markers.
15745         * org-ascii.el (org-export-as-ascii): Apply change.
15747         * org-docbook.el (org-export-as-docbook): Apply change.
15749         * org-footnote.el (org-footnote-normalize): Apply change.
15751         * org-html.el (org-export-as-html): Apply change.
15753         * org-latex.el (org-export-as-latex): Apply change.
15755 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15757         * org-latex.el (org-export-latex-preprocess): Rely on
15758         `org-export-footnotes-markers' to retrieve definition of the
15759         current footnote during export.
15761 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15763         * org-footnote.el (org-footnote-normalize): Remember footnotes
15764         seen so far by the exporter when choosing the new marker.
15766 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15768         * org-footnote.el (org-footnote-normalize): Make use of
15769         `org-footnote-insert-pos-for-preprocessor'.
15771 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15773         * org-footnote.el (org-footnote-normalize): Add `org-footnote'
15774         property to footnote markers when preparing for exportation.
15776         * org-html.el (org-export-as-html): Read new property to decide
15777         when to export a footnote.
15779         * org-docbook.el (org-export-as-docbook): Read new property to
15780         decide when to export a footnote.
15782         * org-latex.el (org-export-latex-preprocess): Ensure footnote at
15783         column 0 cannot end a list containing it by adding
15784         `original-indentation' property to it.
15786 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15788         * org-exp.el (org-export-preprocess-string): Normalize footnotes
15789         before marking lists ending.
15791         * org-latex.el (org-export-latex-preprocess): Work with labels as
15792         strings and not as numbers.
15794 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15796         * org-docbook.el (org-export-docbook-footnote-separator):
15797         New variable.
15798         (org-export-as-docbook): Add a separator between footnotes.
15800         * org-html.el (org-export-html-footnote-separator): New variable.
15801         (org-export-as-html): Add a separator between footnotes.
15803         * org-latex.el (org-export-latex-footnote-separator):
15804         New variable.
15805         (org-export-latex-preprocess): Add a separator between footnotes.
15807 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15809         * org-exp.el (org-export-footnotes-markers)
15810         (org-export-footnotes-data): New variables.
15811         (org-export-preprocess-string): Use a more explicit argument.
15813 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15815         * org-footnote.el (org-footnote-goto-definition): Now, determining
15816         if point is at a footnote reference is entirely determined by
15817         `org-footnote-at-reference-p'.  No need to check if pattern isn't
15818         at beginning of the line elsewhere.
15820 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15822         * org-footnote.el (org-footnote-next-reference-or-definition):
15823         New function.
15825         * org.el (org-activate-footnote-links): Activate the whole
15826         footnote, but only fontify its label.
15828 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15830         * org-footnote.el (org-footnote-normalize): Make use of changes to
15831         `org-footnote-at-reference-p' and creation of various functions..
15832         Also comment code.
15833         (org-footnote-get-next-reference, org-footnote-delete-references)
15834         (org-footnote-delete-definitions): New functions.
15835         (org-footnote-goto-previous-reference, org-footnote-all-labels)
15836         (org-insert-footnote-reference-near-definition, org-footnote-delete):
15837         Rewrite to use org-footnote-get-next-reference.
15839 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15841         * org-footnote.el (org-footnote-re): Don't end an inline footnote
15842         at unrelated closing square brackets.
15843         (org-footnote-at-reference-p): Improve accuracy of the function to
15844         determine if point is at a reference and to extract definition of an
15845         inline footnote.
15846         (org-footnote-all-labels, org-footnote-action, org-footnote-delete)
15847         (org-footnote-auto-adjust-maybe): Make use of previous function.
15849 2011-07-28  Bastien Guerry  <bzg@gnu.org>
15851         * org.el (org-deadline, org-schedule):
15852         keep warning cookie when rescheduling/redeadlining.
15853         (org-time-stamp): Fix problem with warning cookie.
15855 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15857         * ob-clojure.el (org-babel-execute:clojure): Force escaping of
15858         clojure source into elisp source.
15860 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15862         * ob.el (org-babel-script-escape): Treats {} in the same manner as
15863         [] and allows for forcing string conversion.
15865 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15867         * org-exp.el (org-export-select-backend-specific-text):
15868         Strip protective commas from literal code blocks.
15870 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15872         * ob-ref.el (org-babel-ref-goto-headline-id): Fix bug.
15874 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15876         * ob-ref.el (org-babel-ref-goto-headline-id): Split out into its
15877         own function.
15878         (org-babel-ref-headline-body): Split out into its own function.
15879         (org-babel-ref-resolve): Using new functions, and alignment.
15881         * ob.el (org-babel-ref-goto-headline-id): Declare function.
15882         (org-babel-ref-headline-body): Declare function.
15883         (org-babel-expand-noweb-references): Now expands noweb references to
15884         headlines during expansion.
15886 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15888         * ob-ref.el (org-babel-ref-resolve): Now resolves references to
15889         headlines by either global or custom id, in which case the
15890         contents of the headline are returned literally.
15892 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15894         * ob-exp.el (org-babel-in-example-or-verbatim): Also check for in
15895         verbatim emphasis.
15896         (org-babel-exp-lob-one-liners): Cleaner checking for escaped call
15897         lines.
15899 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
15901         * org-list.el (org-cycle-item-indentation): Cycling back to
15902         original position deleted any additional information in the item,
15903         like a counter or a tag.
15905 2011-07-28  Pieter Praet  <pieter@praet.org>
15907         * org-crypt.el (org-crypt-disable-auto-save): New defcustom.
15908         (org-decrypt-entry): Before decrypting, check whether
15909         `auto-save-mode' is enabled for the current buffer, and act on it
15910         according to how `org-crypt-disable-auto-save' is set.  Remove
15911         comment re "encrypt[ing] Org auto-saved buffers".  Remove on-init
15912         check for `auto-save-default'.
15914 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15916         * ob.el (org-babel-merge-params): Ensure variable parameters are
15917         not reversed.
15919 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15921         * ob.el (org-babel-insert-result): Fix results insertion for
15922         inline blocks which happen to start a line.
15924 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15926         * ob-exp.el (org-babel-exp-lob-one-liners): Fix the logic checking
15927         if a call line is commented.
15929 2011-07-28  Vincent Belaïche  <vincentb1@users.sourceforge.net>
15931         * org.el (org-read-property-name): Propose default property name.
15933 2011-07-28  Achim Gratz  <stromeko@nexgo.de>
15935         * org.el (org-log-into-drawer): Correct typo.
15937         * org-clock.el (org-clock-into-drawer): New function to change the
15938         location of clock events based on properties CLOCK_INTO_DRAWER or,
15939         as fallback, LOG_INTO_DRAWER, like it is already possible for
15940         state change logs.
15942         * org-clock.el (org-clock-jump-to-current-clock): Add statement to
15943         let clause to bind `org-clock-into-drawer' to result of function
15944         eval.
15946         * org-clock.el (org-clock-find-position): Add statement to let
15947         clause to bind `org-clock-into-drawer' to result of function eval,
15948         change let to let* since the binding is used later in the same
15949         clause.
15951 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15953         * ob-lob.el (require): Ensure 'cl is loaded during compilation so
15954         we can use flet.
15956 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15958         * ob-lob.el (org-babel-lob-get-info): Correctly indent results of
15959         non-inline call lines.
15961 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15963         * ob-exp.el (org-babel-exp-lob-one-liners): Don't export inline
15964         call_ blocks which aren't whitespace padded.
15966 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15968         * ob.el (org-babel-merge-params): Do not reverse variable order,
15969         and be sure to increment variable index as appropriate.
15971 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15973         * ob-lob.el (org-babel-inline-lob-one-liner-regexp): Update to
15974         successfully match optional trailing header arguments in square
15975         brackets.
15976         (org-babel-lob-get-info): Update to match the new regexp.
15978 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15980         * ob-lob.el (org-babel-lob-get-info): If the arguments are empty,
15981         then allow them to be so.
15983 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15985         * ob.el (org-babel-merge-params): If variables are not named they
15986         are assigned in order.
15988 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
15990         * ob.el: Remove code comment about online documentation.
15992         * ob-exp.el: Remove code comment about online documentation.
15994         * ob-lob.el: Remove code comment about online documentation.
15996 2011-07-28  Jambunathan K  <kjambunathan@gmail.com>
15998         * org-exp.el (org-export-format-source-code-or-example):
15999         Fix signature of org-<backend>-format-source-code-or-example function.
16001 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16003         * ob.el (org-babel-sha1-hash): Replace call to
16004         called-interactively-p with backwards-compatible interactive-p.
16006 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16008         * ob-exp.el (org-babel-exp-lob-one-liners):
16009         Appropriate replacement of inline call blocks with their results.
16011 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16013         * ob-lob.el (org-babel-inline-lob-one-liner-regexp): Removing this
16014         trailing space ensures that the insertion of the results looks
16015         nice.
16017         * ob.el (org-babel-insert-result): Insert inline lob line results
16018         as inline results.
16020 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16022         * ob-exp.el (org-babel-exp-lob-one-liners): Calculate length
16023         appropriately given the style (block or inline) of the lob line.
16025         * ob-lob.el (org-babel-block-lob-one-liner-regexp): New regexp
16026         specific for block lob lines.
16027         (org-babel-inline-lob-one-liner-regexp): New regexp specific for
16028         inline lob lines.
16029         (org-babel-lob-one-liner-regexp): Combination of two lob regexps.
16030         (org-babel-lob-get-info): Return info from *either* the block or
16031         inline lob lines.
16033 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16035         * ob-exp.el (org-babel-exp-lob-one-liners): Corrected the
16036         structure of the resulting info list.
16038         * ob-lob.el (org-babel-default-lob-header-args): Export the
16039         results of call lines by default.
16041 2011-07-28  Niels Giesen  <niels.giesen@gmail.com>  (tiny change)
16043         * org-icalendar.el (org-print-icalendar-entries): Add 'uid text
16044         property based on the ID property of the org entry to the first
16045         character of the diary entry.
16047 2011-07-28  Jambunathan K  <kjambunathan@gmail.com>
16049         * org-footnote.el
16050         (org-footnote-insert-pos-for-preprocessor): New variable.
16051         (org-footnote-normalize): Use it.
16053 2011-07-28  Jambunathan K  <kjambunathan@gmail.com>
16055         * org-exp.el (org-export-format-source-code-or-example):
16056         Simplify.  Also add `org-native-text' as a text property to the
16057         formatted text and throw error for unknown backends.
16059 2011-07-28  Jambunathan K  <kjambunathan@gmail.com>
16061         * org-exp.el (org-export-format-source-code-or-example):
16062         Add support for: - custom formatters for existing backends - seamless
16063         plugging in of new backends.
16065 2011-07-28  Jambunathan K  <kjambunathan@gmail.com>
16067         * org-exp.el (org-export-backends): New variable.
16068         (org-export-select-backend-specific-text): Use above
16069         variable.  Also mark text between #+BACKEND and
16070         #+BEGIN_BACKEND...#+END_BACKEND with org-native-text property.
16071         This text property is currently used only by the new line-oriented
16072         generic exporter (which is not yet part of the repo).
16074 2011-07-28  Jambunathan K  <kjambunathan@gmail.com>
16076         * org-exp.el (org-export): Reserve keys 'o' and 'O' for
16077         OpenDocumentText export and bind them to `org-export-as-odt' and
16078         `org-export-as-odt-and-open'.
16080 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16082         * ob-exp.el (org-babel-exp-src-block): Less verbose when in batch
16083         mode.
16085 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16087         * ob-clojure.el (org-babel-execute:clojure): Convert vectors to
16088         lists before reading into emacs-lisp.
16090 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16092         * ob-C.el (ob-tangle): Initialize variable from `ob-tangle'.
16094         * ob-asymptote.el (ob-tangle): Initialize variable from `ob-tangle'.
16096         * ob-awk.el (ob-tangle): Initialize variable from `ob-tangle'.
16098         * ob-clojure.el (ob-tangle): Initialize variable from `ob-tangle'.
16100         * ob-haskell.el (ob-tangle): Initialize variable from `ob-tangle'.
16102         * ob-latex.el (ob-tangle): Initialize variable from `ob-tangle'.
16104         * ob-lisp.el (ob-tangle): Initialize variable from `ob-tangle'.
16106         * ob-ocaml.el (ob-tangle): Initialize variable from `ob-tangle'.
16108         * ob-perl.el (ob-tangle): Initialize variable from `ob-tangle'.
16110         * ob-python.el (ob-tangle): Initialize variable from `ob-tangle'.
16112         * ob-ruby.el (ob-tangle): Initialize variable from `ob-tangle'.
16114         * ob-tangle.el (ob-tangle): Initialize variable from `ob-tangle'.
16116 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16118         * ob-awk.el: New file.
16120 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16122         * ob-emacs-lisp.el (org-babel-execute:emacs-lisp):
16123         Respects ":results verbatim".
16125 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
16127         * org-agenda.el (org-float): Aliases for `diary-float'.
16129 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16131         * ob-python.el (org-babel-python-evaluate-session):
16132         Send comint-send-input after every line when interacting with an
16133         interactive python process.
16135 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
16137         * org-list.el (org-reset-checkbox-state-subtree): Make the command
16138         more robust, and correctly update check-boxes in the whole
16139         sub-tree.
16140         (org-update-checkbox-count): Fix bug accumulating count of checkboxes
16141         when walking a subtree.
16142         (org-update-checkbox-count-maybe): Add an optional argument passed to
16143         org-update-checkbox-count.
16145 2011-07-28  Teodor Zlatanov  <tzz@lifelogs.com>
16147         * org.el (org-fontify-meta-lines-and-blocks): Ignore errors.
16149 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16151         * ob-emacs-lisp.el (org-babel-execute:emacs-lisp): Respect the
16152         ":results scalar" header argument combination.
16154 2011-07-28  Dan Davison  <dandavison7@gmail.com>
16156         * org-src.el: Append a space character to copied text so that the
16157         final text property change is picked up correctly.
16159 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16161         * ob-tangle.el (org-babel-tangle-file): Use the new argument list
16162         to org-babel-tangle.
16163         (org-babel-tangle): Now when called with a prefix argument, only the
16164         current code block is tangled.
16166 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
16168         * org-list.el (org-list-parse-list): Replace transitional
16169         check-boxes with "[CBTRANS]" string during parsing.
16170         (org-list-to-generic): Use the new property `:cbtrans' to configure
16171         export string for transitional check-boxes.
16173 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
16175         * org-agenda.el (org-agenda-add-entry-to-org-agenda-diary-file):
16176         Use stable internal `org-anniversary' instead of
16177         diary-anniversary.
16178         (org-class): New function.
16179         (org-diary-class): Use `org-class'.
16180         (org-anniversary, org-cyclic, org-date, org-block): New functions.
16182 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16184         * ob.el (org-babel-header-arg-names): Adding noweb-ref to the list
16185         of header argument names.
16187 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16189         * ob.el (org-babel-expand-noweb-references): Concatenating all
16190         bodies with the appropriate name or :noweb-ref header argument.
16192 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>  (tiny change)
16194         * org.el (org-find-dblock, org-clocktable-try-shift): Make regexp
16195         work also when #+begin line is indentex.
16197 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16199         * ob.el (org-babel-src-block-regexp): Babel: code block may have
16200         empty bodies.
16202 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16204         * org-macs.el (org-without-partial-completion): Avoid calling by
16205         name a function unknown to the compiler but explicitly checked by
16206         program logic.
16208 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16210         * org-mouse.el (org-agenda-earlier): Declaring previously unknown
16211         function.
16212         (org-agenda-later): Declaring previously unknown function.
16213         (org-agenda-mode-map): Declaring previously unknown variable.
16215         * org.el (org-read-date-analyze): Explicitly ignore the return
16216         value of a function.
16218 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16220         * org-agenda.el (org-agenda-mode): Globally replace
16221         buffer-substring-filters with filter-buffer-substring-functions.
16223         * org-indent.el (org-indent-mode): Globally replace
16224         buffer-substring-filters with filter-buffer-substring-functions.
16226 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16228         * org-ascii.el (org-export-as-ascii): Replacing '(λ...) with
16229         #'(λ...).
16231         * org-attach.el: Replacing '(λ...) with #'(λ...).
16232         (org-attach-commit): Replacing '(λ...) with #'(λ...).
16234         * org-exp.el: Replacing '(λ...) with #'(λ...).
16235         (org-export-handle-include-files): Replacing '(λ...) with #'(λ...).
16237         * org-html.el: Replacing '(λ...) with #'(λ...).
16238         (org-export-as-html): Replacing '(λ...) with #'(λ...).
16240         * org-mouse.el: Replacing '(λ...) with #'(λ...).
16241         (org-mouse-popup-global-menu): Replacing '(λ...) with
16242         (org-mode-hook): Replacing '(λ...) with #'(λ...).
16243         (org-agenda-mode-hook): Replacing '(λ...) with #'(λ...).
16245         * org-src.el: Replacing '(λ...) with #'(λ...).
16246         (org-src-mode-configure-edit-buffer): Replacing '(λ...) with #'(λ...).
16248         * org-table.el: Replacing '(λ...) with #'(λ...).
16249         (org-table-fix-formulas-confirm): Replacing '(λ...) with #'(λ...).
16251         * org.el: Replacing '(λ...) with #'(λ...).
16252         (org-confirm-shell-link-function): Replacing '(λ...) with
16253         (org-category): Replacing '(λ...) with #'(λ...).
16255 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16257         * org.el (mailcap-parse-mailcaps): Declaring functions used by
16258         `org-open-file'.
16259         (mailcap-extension-to-mime): Declaring functions used by
16260         `org-open-file'.
16261         (mailcap-mime-info): Declaring functions used by `org-open-file'.
16263 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16265         * org-agenda.el (org-agenda-redo): Replacing call to now-defunct
16266         function `interactive-p'.
16267         (org-agenda-show-1): Replacing call to now-defunct function
16268         `interactive-p'.
16269         (org-agenda-set-tags): Replacing call to now-defunct function `interactive-p'.
16271         * org-ascii.el: Replacing call to now-defunct function
16272         `interactive-p'.
16273         (org-export-as-latin1): Replacing call to now-defunct function
16274         `interactive-p'.
16275         (org-export-as-latin1-to-buffer): Replacing call to now-defunct
16276         function `interactive-p'.
16277         (org-export-as-utf8): Replacing call to now-defunct function
16278         `interactive-p'.
16279         (org-export-as-utf8-to-buffer): Replacing call to now-defunct function
16280         `interactive-p'.
16281         (org-export-region-as-ascii): Replacing call to now-defunct
16282         function `interactive-p'.Replacing call to now-defunct function
16283         `interactive-p'.
16285         * org-docbook.el: Replacing call to now-defunct function
16286         `interactive-p'.
16287         (org-export-region-as-docbook): Replacing call to now-defunct
16288         function `interactive-p'.Replacing call to now-defunct function
16289         `interactive-p'.
16291         * org-html.el: Replacing call to now-defunct function
16292         `interactive-p'.
16293         (org-export-region-as-html): Replacing call to now-defunct
16294         function `interactive-p'.Replacing call to now-defunct function
16295         `interactive-p'.
16297         * org-latex.el: Replacing call to now-defunct function
16298         `interactive-p'.
16299         (org-export-region-as-latex): Replacing call to now-defunct
16300         function `interactive-p'.Replacing call to now-defunct function
16301         `interactive-p'.
16303         * org-macs.el: Replacing call to now-defunct function
16304         `interactive-p'.
16305         (org-called-interactively-p): Replacing call to now-defunct
16306         function `interactive-p'.Replacing call to now-defunct function
16307         `interactive-p'.
16309         * org-table.el: Replacing call to now-defunct function
16310         `interactive-p'.
16311         (org-table-blank-field): Replacing call to now-defunct function
16312         `interactive-p'.
16313         (org-table-current-column): Replacing call to now-defunct function
16314         `interactive-p'.Replacing call to now-defunct function
16315         `interactive-p'.
16316         (org-table-current-dline): Replacing call to now-defunct function
16317         `interactive-p'.Replacing call to now-defunct function
16318         `interactive-p'.
16319         (org-table-sort-lines): Replacing call to now-defunct function
16320         `interactive-p'.
16321         (org-table-sum): Replacing call to now-defunct function
16322         `interactive-p'.
16323         (org-table-rotate-recalc-marks): Replacing call to now-defunct
16324         function `interactive-p'.
16325         (org-table-eval-formula): Replacing call to now-defunct function
16326         `interactive-p'.
16327         (orgtbl-send-table): Replacing call to now-defunct function `interactive-p'.
16329         * org.el: Replacing call to now-defunct function `interactive-p'.
16330         (org-mode): Replacing call to now-defunct function
16331         `interactive-p'.
16332         (org-copy-subtree): Replacing call to now-defunct function
16333         `interactive-p'.
16334         (org-paste-subtree): Replacing call to now-defunct function
16335         `interactive-p'.
16336         (org-store-link): Replacing call to now-defunct function
16337         `interactive-p'.
16338         (org-todo): Replacing call to now-defunct function `interactive-p'.
16339         (org-occur): Replacing call to now-defunct function `interactive-p'.
16341 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16343         * ob-R.el (ess-local-process-name): This variable wasn't known to
16344         be defined.
16346         * ob-lisp.el (org-babel-lisp-dir-fmt): This defcustom now has a
16347         group specified.
16349         * ob-tangle.el (org-bracket-link-regexp): This variable wasn't
16350         known to be defined.
16351         (org-babel-tangle-combine-named-blocks): Roll my own version of a
16352         forbidden common lisp function.
16354         * ob.el (org-babel-sha1-hash): Using a non-deprecated version of
16355         called-interactively.
16357 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16359         * org-latex.el (org-export-latex-tables): Check for the
16360         "multiline" option and set the `floatp' option to true when
16361         multicolumn tables are requested.
16363 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
16365         * org-html.el (org-export-as-html, org-html-level-start):
16366         Only convert section number underscores to dashes.
16368 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
16370         * org-agenda.el (org-agenda-bulk-action): Fix bug caused by
16371         `days-to-time, converting relative to 1 BC, while the code assumed
16372         it would return a time relative to 1970.
16374 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16376         * ob-tangle.el (org-babel-tangle-combine-named-blocks): No longer
16377         inserting newlines between appended code blocks.
16379 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16381         * ob-exp.el: We may no longer need to export names along with code
16382         blocks.
16384 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16386         * org-exp-blocks.el (org-export-blocks-preprocess):
16387         Ensure balanced nested begin/end blocks in block bodies.
16389 2011-07-28  Dan Davison  <dandavison7@gmail.com>
16391         * org-latex.el: Add -shell-escape to pdflatex commands.
16393 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16395         * ob-tangle.el (org-babel-tangle-named-block-combination):
16396         Block combination can now take a number of values.
16397         (org-babel-tangle-combine-named-blocks): More sophisticated block
16398         combination behavior.
16400 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16402         * ob-tangle.el (org-babel-tangle-do-combine-named-blocks):
16403         Switch to turn on the combination of code blocks of the same name.
16404         (org-babel-tangle-combine-named-blocks): Combine blocks of the same
16405         name.
16407 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16409         * ob-ruby.el (xmp): Declaring this function to appease the
16410         compiler.
16411         (org-babel-execute:ruby): "xmp" result option for outputting
16412         annotated source code.
16414 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>  (tiny change)
16416         * org-list.el (org-list-to-latex): The enumerate environment in
16417         latex increments the counter before using it.  Therefore, org-mode
16418         should set the enumeration counter to the desired value minus one.
16420 2011-07-28  Michael Brand  <michael.ch.brand@gmail.com>  (tiny change)
16422         * org.el (org-toggle-heading): More comments and fix number of
16423         stars when toggling from list items.
16425 2011-07-28  Christian Egli  <christian.egli@sbszh.ch>
16427         * org-taskjuggler.el (org-taskjuggler-clean-effort): Handle any
16428         effort that is accepted by `org-duration-string-to-minutes´.
16430 2011-07-28  Julien Barnier  <julien@nozav.org>
16432         * ob-sh.el (org-babel-sh-evaluate): When sending input to comint,
16433         wait until previous line execution is finished.
16435         * ob-comint.el (org-babel-comint-with-output): When looking for
16436         end-of-evaluation indicator, search forward for the indicator
16437         before searching forward for the prompt.
16439 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
16441         * org-entities.el (org-entities): Fix HTML entity for degree.
16443 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
16445         * org.el (org-auto-align-tags): Change docstring.
16446         (org-update-parent-todo-statistics): Keep tags aligned even when
16447         statistics cookies are shifting them.
16449         * org-list.el (org-update-checkbox-count): Keep tags aligned even
16450         when statistics cookies are shifting them.
16452 2011-07-28  Lawrence Mitchell  <wence@gmx.li>
16454         * ob.el (org-babel-sha1-hash): Don't modify info argument by
16455         side-effect when sorting result-params list.
16457 2011-07-28  Lawrence Mitchell  <wence@gmx.li>
16459         * ob.el (org-babel-result-regexp): Use non-shy group around
16460         `org-babel-data-names'.
16462 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
16464         * org.el (org-insert-link): Set truncate-line in the *Org Link*
16465         buffer and make sure that it really is set there.
16467 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16469         * ob-lisp.el (org-babel-lisp-dir-fmt): Defcustom for use in
16470         changing how/if the current directory is represented to lisp code.
16471         (org-babel-execute:lisp): More general handling of the default
16472         directory value.
16474 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16476         * ob-lisp.el (org-babel-execute:lisp): Setting the value of
16477         *default-pathname-defaults* to either the value of the :dir header
16478         argument or the directory of the containing Org-mode file.
16480 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16482         * ob-lisp.el (org-babel-execute:lisp): No real functional change,
16483         just aesthetic.
16485 2011-07-28  Sébastien Delafond  <sdelafond@gmail.com>  (tiny change)
16487         * org.el (org-mode-flyspell-verify): This is useful when using
16488         flyspell with a non-English dictionary, or if some of your
16489         keywords are in another language.
16491 2011-07-28  David Maus  <dmaus@ictsoc.de>
16493         * org-exp.el (org-export): Use new compatibility function
16494         `org-activate-mark'.
16496         * org-compat.el (org-activate-mark): New function.
16497         Provide `activate-mark' if not present (e.g. Emacs 22).
16499 2011-07-28  David Maus  <dmaus@ictsoc.de>
16501         * org-table.el (org-table-follow-field-mode): Declare variable to
16502         keep byte compiler happy.
16504 2011-07-28  David Maus  <dmaus@ictsoc.de>
16506         * org-footnote.el (org-id-uuid): Declare function, silence byte
16507         compiler.
16509 2011-07-28  David Maus  <dmaus@ictsoc.de>
16511         * org-bibtex.el (org-bibtex-headline): Don't use equalp at
16512         run-time, compare downcased strings.
16514 2011-07-28  David Maus  <dmaus@ictsoc.de>
16516         * org-bibtex.el (org-id-locations): Declare variable to silence
16517         byte compiler.
16519 2011-07-28  David Maus  <dmaus@ictsoc.de>
16521         * org-id.el (org-id-locations): Fix docstring, remove reference to
16522         non-existent option.
16524 2011-07-28  David Maus  <dmaus@ictsoc.de>
16526         * org.el (org-self-insert-command): Use `delete-char' instead of
16527         `delete-backward-char'.
16529         * org-table.el (orgtbl-self-insert-command): Ditto.
16531 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
16533         * org-latex.el (org-export-latex-special-chars): Save match data
16534         when checking for table.el table.
16536 2011-07-28  David Maus  <dmaus@ictsoc.de>
16538         * org.el (org-re-property): Move before its first use.
16540 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
16542         * org-latex.el (org-export-latex-preprocess):
16543         Add `original-indentation' property to footnotes so they cannot
16544         possibly end a list by being less indented than the item they
16545         belong to.
16547 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16549         * ob-lisp.el (org-babel-expand-body:lisp): No longer wraps biddies
16550         in `progn'.
16551         (org-babel-execute:lisp): Wraps bodies in `progn' as they are passed
16552         to swank.
16554 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
16556         * org-clock.el (org-clocktable-write-default): Implement adding
16557         property columns to the clock table.
16559 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
16561         * org.el (org-toggle-item): Move parenthesis to correct location.
16563 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
16565         * org.el (org-default-priority):
16566         (org-priority-start-cycle-with-default): Improve docstring.
16567         (org-priority): Throw error when priority is out of range.
16569 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
16571         * org.el (org-self-insert-command): Catch the case of
16572         `buffer-undo-list' eq t.
16574 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
16576         * org.el (org-toggle-heading): Region should be considered as made
16577         of full lines, without the last one if region-end is at bol.
16578         Removed unused variables.  Refactored and commented code.
16580 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
16582         * org.el (org-toggle-item): When region includes an headline less
16583         indented than first one, set it as the new reference.
16585 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
16587         * org-list.el (org-list-to-subtree): If the list is before first
16588         heading and `org-odd-levels-only' is non-nil, the first item gets
16589         two stars instead of one.
16591         * org.el (org-reduced-level): A level of 0 was reduced to 1 with
16592         `org-odd-levels-only' non-nil.
16594 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
16596         * org.el (org-toggle-item): Converting an heading to an item would
16597         sometimes insert unnecessary spaces before it, and unwanted space
16598         with `org-indent-mode' on.  Changing some text into an item
16599         wouldn't always preserve indentation.
16601 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
16603         * org-capture.el (org-capture-current-plist): Improve docstring.
16604         (org-capture-put): Add docstring.
16605         (org-capture-get): Add docstring.
16606         (org-capture-member): Add LOCAL argument.  Add docstring.
16607         (org-capture-set-target-location): Store the time received from a
16608         date prompt into the :prompt-time property.
16610 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
16612         * org-exp.el (org-export-mark-list-properties): Even if context is
16613         invalid, mark list item with `list-context' property.
16615         * org-list.el (org-list-forbidden-blocks): Add exporters specific
16616         blocks to the list of forbidden blocks.
16618 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
16620         * org-list.el (org-sort-list): Function tries to intern
16621         getkey-func before it is defined, so it's always nil.
16623 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16625         * org.el (org-babel-load-languages): Adding ob-awk to the list of
16626         executable languages.
16628 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
16630         * org-table.el (org-table-get-field): Make sure the new field
16631         content is at least one space character.
16633 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
16635         * org-crypt.el: Check for `daemonp' before using it.
16637 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16639         * ob-sh.el (ob-ref): Uses `ob-ref' to resolve the value of the
16640         :stdin header argument.
16641         (org-babel-execute:sh): Use the :stdin header argument.
16642         (org-babel-sh-var-to-sh): Split the bulk of this function off into a
16643         new sub-function.
16644         (org-babel-sh-var-to-string): New function for converting elisp
16645         values to strings that make sense for parsing with sh.
16646         (org-babel-sh-evaluate): Adding "stdin" option to session and
16647         external evaluation options.
16649 2011-07-28  Roland Kaufmann  <rlndkfmn+orgmode@gmail.com>  (tiny change)
16651         * org-exp.el (org-remove-formatting-on-newlines-in-region):
16652         New function.
16653         (org-export-format-source-code-or-example):
16654         Call `org-remove-formatting-on-newlines-in-region'.
16656 2011-07-28  David Maus  <dmaus@ictsoc.de>
16658         * org.el (org-entry-put): Prevent adding of extra space to value
16659         if property already exists.
16661 2011-07-28  Jambunathan K  <kjambunathan@gmail.com>
16663         * org-html.el (org-export-as-html): Don't expand non-data lines of
16664         table.el tables.
16665         (org-html-expand): Remove the (buggy) test for non-data lines
16666         in table.el tables.  The test is now done as part of
16667         org-export-as-html.
16668         (org-format-table-table-html-using-table-generate-source):
16669         Add test for spanning of cells in table.el tables using
16670         table.el's own library routine.  Optionally suppress export of
16671         simple table.el tables.
16672         (org-format-table-html): Remove the (buggy) test for spanned
16673         table.el tables.  The test is now done as part of
16674         org-format-table-table-html-using-table-generate-source.
16676 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
16678         * org-latex.el (org-export-latex-special-chars): Do nothing in
16679         table.el tables.
16681 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
16683         * org-capture.el (org-capture): Ignore errors when creating a
16684         link.
16686 2011-07-28  Nick Dokos  <nick@dokosmarshall.org>  (tiny change)
16688         * org-exp.el (org-export-define-heading-targets): Use dash instead
16689         of underscore to make labels valid.
16691 2011-07-28  Dan Davison  <dandavison7@gmail.com>
16693         * ob-R.el (org-babel-R-write-object-command): Ensure that all data
16694         is written to the results file before Emacs notices that the file
16695         exists.
16697 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16699         * ob-exp.el (org-babel-exp-code): Remove usage of a macro which is
16700         defined locally on my system, but not globally in Emacs.
16702 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16704         * ob-exp.el (org-babel-exp-do-export): Use `org-babel-exp-code' to
16705         generate code block output.
16706         (org-babel-exp-code): Re-create the code block body for exporting
16707         source code.
16709 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>  (tiny change)
16711         * org.el (org-read-date): Bury Calendar buffer after using it for
16712         selecting a date.
16714 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
16716         * org-list.el (org-list-separating-blank-lines-number):
16717         Fix confusion between point and item beginning.  Now, if no
16718         information is available, truly follow user preference when it
16719         inserts blank lines manually.
16720         (org-list-insert-item): Send correct argument to the preceding
16721         function.
16723 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16725         * ob.el (org-babel-src-block-regexp): Keep the now-mandatory
16726         newline inside of the code block body.
16728 2011-07-28  Sean O'Halpin  <sean.ohalpin@gmail.com>  (tiny change)
16730         * ob.el: Avoid spurious matches to literal.
16732 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
16734         * org.el (org-indent-line-function): Don't include #+include
16735         lines.
16737 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16739         * ob-keys.el (org-babel-key-bindings): Adding key sequence for
16740         org-babel-check-src-block.
16742         * ob.el (org-babel-expand-src-block): Fit within 80 cols.
16743         (org-babel-edit-distance): Returns the edit distance of two
16744         strings.
16745         (org-babel-check-src-block): Check a code block for errors.
16747 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>  (tiny change)
16749         * org-capture.el (org-capture-templates): Fix bug in customization
16750         setup.
16752 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
16754         * org-table.el
16755         (org-table-exit-follow-field-mode-when-leaving-table): New option.
16756         (org-table-check-inside-data-field): New optional argument
16757         `noerror'.  When set, the function will only return nil instead of
16758         throwing an error.
16759         (org-table-edit-field): Interpret double prefix argument, and improve
16760         the properties of the editing window.
16761         (org-table-follow-field-mode): New minor mode.
16762         (org-table-follow-fields-with-editor): New function.
16764 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
16766         * org-agenda.el (org-agenda-get-todos): Call `org-agenda-skip'
16767         first, then check if timestamps cause exclusion.
16769         * org.el (org-scan-tags): Call `org-agenda-skip' first, then check
16770         if timestamps cause exclusion.
16772 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
16774         * org-list.el (org-list-full-item-re): Allow description term to
16775         have a newline character after the colons.
16777 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
16779         * org-list.el (org-sort-list): No longer ignore with-case
16780         argument: the function sorted case-sensitively, regardless of
16781         argument.
16783 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16785         * ob-ref.el (org-babel-ref-resolve): Using the new result regexp.
16787         * ob.el (org-babel-data-names): Configurable list of names of
16788         data.
16789         (org-babel-result-regexp): Using new results regexp.
16791 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
16793         * org.el (org-special-properties): Add CLOCKSUM to the special
16794         properties.
16796 2011-07-28  Robert P. Goldman  <rpgoldman@real-time.com>  (tiny change)
16798         * ob-exp.el (org-babel-exp-in-export-file):
16799         Bind `org-link-search-inhibit-query' to t to inhibit prompts.
16801 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
16803         * org-exp.el (org-export-add-options-to-plist): Use the right
16804         match group.
16806 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
16808         * org-latex.el (org-export-latex-preprocess): Protect index string.
16810 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
16812         * org-latex.el (org-export-latex-preprocess): Pipe index entries
16813         through `org-export-latex-fontify-headline'.
16815 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
16817         * org-exp.el (org-export-add-options-to-plist): Fix the option
16818         parser.
16820 2011-07-28  Robert P. Goldman  <rpgoldman@real-time.com>  (tiny change)
16822         * org-latex.el (org-export-latex-preprocess): Replace index
16823         entries.
16825 2011-07-28  Robert P. Goldman  <rpgoldman@real-time.com>  (tiny change)
16827         * org.el (org-structure-template-alist): Add an easy template for
16828         index (i), and move include file to I from i.
16830 2011-07-28  Matt Lundin  <mdl@imapmail.org>
16832         * org-agenda.el (org-agenda-open-link): Pass entire text of agenda
16833         line to `org-offer-links-in-entry'.
16835 2011-07-28  Matt Lundin  <mdl@imapmail.org>
16837         * org-bibtex.el (org-bibtex-search): New function.
16838         (org-bibtex-export-to-kill-ring): New function.  Export to kill
16839         ring.
16840         (org-bibtex-create-in-current-entry): New function
16841         (org-bibtex-create): Make it easier to add bib fields to an
16842         existing headline.
16843         (org-bibtex-export-arbitrary-fields)
16844         (org-bibtex-treat-headline-as-title): Fix typos
16845         (org-bibtex-fleshout): Don't upcase optional field; remove ":"
16846         from type completion.
16848 2011-07-28  Matt Lundin  <mdl@imapmail.org>
16850         * org-bibtex.el (org-bibtex-treat-headline-as-title):
16851         New defcustom.
16852         (org-bibtex-headline): Only use headline text (not TODO or other
16853         metadata) to generate title field and auto key.
16854         (org-bibtex-fleshout): Allow user to choose whether to treat
16855         headline as title.
16857 2011-07-28  Tom Dye  <tsd@tsdye.com>
16859         * org-bibtex.el: Added crossref field to other fields.
16861 2011-07-28  Tom Dye  <tsd@tsdye.com>
16863         * org-bibtex.el: Add crossref option to incollection.
16865 2011-07-28  Matt Lundin  <mdl@imapmail.org>
16867         * org-bibtex.el (org-bibtex-headline): Don't export TYPE property
16868         as field.
16870 2011-07-28  Matt Lundin  <mdl@imapmail.org>
16872         * org-bibtex.el (org-bibtex-key-property): When storing key in ID,
16873         warn if a duplicate ID is generated.
16875 2011-07-28  Matt Lundin  <mdl@imapmail.org>
16877         * org-bibtex.el (org-bibtex-tags): New variable.
16878         (org-bibtex-tags-are-keywords): New variable.
16879         (org-bibtex-no-export-tags): New variable.
16880         (org-bibtex-headline): Export tags as comma-separated bibtex
16881         keywords.
16882         (org-bibtex-read): Import bibtex keywords field as tags.
16884 2011-07-28  Manuel Giraud  <manuel.giraud@univ-nantes.fr>
16886         * org-publish.el (org-publish-find-date): Optimization.
16888 2011-07-28  Tassilo Horn  <tassilo@member.fsf.org>
16890         * org-gnus.el (org-gnus-follow-link): Don't request scan of group
16891         when following link.
16893 2011-07-28  Manuel Giraud  <manuel.giraud@univ-nantes.fr>
16895         * org-publish.el (org-publish-project-alist): Document new
16896         :sitemap-sans-extension property.
16897         (org-publish-org-sitemap): Use new `sitemap-sans-extension'
16898         setting.
16900 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
16902         * org.el (org-remove-uninherited-tags): Rename from
16903         `org-remove-iniherited-tags'.
16904         (org-scan-tags): Fix typo in function call.
16905         (org-get-tags-at): Fix typo in function call.
16907 2011-07-28  Matt Lundin  <mdl@imapmail.org>
16909         * org.el (org-get-tags-at): Don't include filetags if local is t.
16911 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16913         * ob-clojure.el (org-babel-expand-body:clojure): Qualify pp
16914         dispatch functions, wrap body in `(do )'.
16916 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
16918         * org.el (org-fontify-meta-lines-and-blocks): Fix bug which
16919         resulted in the creation of multiple overlays in src blocks.
16921 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16923         * ob-clojure.el (org-babel-execute:clojure): If results are not
16924         readable by lisp, then return them as a string.
16926 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16928         * org-bibtex.el (org-bibtex): Now prompts for a file name.
16930 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16932         * org-bibtex.el (org-bibtex-create): Adding prefix argument which
16933         will result in prompting for optional fields.
16935 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16937         * org-bibtex.el (org-bibtex-headline): Rename flet function `get'
16938         which was causing compile problems.
16939         (org-bibtex-fleshout): Rename flet function `get' which was causing
16940         compile problems.
16941         (org-bibtex-write): Rename flet function `get' which was causing
16942         compile problems.
16944 2011-07-28  Christian Egli  <christian.egli@sbszh.ch>
16946         * org-taskjuggler.el (org-taskjuggler-clean-id): Make sure an id
16947         never starts with a number.
16949 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16951         * org-bibtex.el (org-bibtex-export-arbitrary-fields): New option.
16952         (org-bibtex-key-property): New option.
16953         (org-bibtex-put): Make use of new `org-bibtex-key-property'
16954         variable.
16955         (org-bibtex-headline): Make use of new
16956         `org-bibtex-export-arbitrary-fields' and `org-bibtex-key-property'
16957         variables.
16958         (org-bibtex-autokey): Make use of new `org-bibtex-key-property'
16959         variable.
16960         (org-bibtex-fleshout): Make use of new `org-bibtex-key-property'
16961         variable.
16962         (org-bibtex-write): Make use of new `org-bibtex-key-property'
16963         variable.
16965 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
16967         * org-bibtex.el: Updating Copyright dates, author information,
16968         commentary and history notes.
16969         (org-bibtex-types): List of bibtex types with descriptions and
16970         required and optional fields.
16971         (org-bibtex-fields): List of bibtex fields with descriptions.
16972         (*org-bibtex-entries*): Special variable to hold parsed bibtex
16973         entries.
16974         (org-bibtex-autogen-keys): Custom variable controlling whether
16975         bibtex keys are automatically generated
16976         (org-bibtex-prefix): Custom variable allowing use of optional prefix
16977         for bibtex properties in Org-mode headlines.
16978         (org-bibtex-get): Helper function for accessing bibtex elements of a
16979         property list.
16980         (org-bibtex-put): Helper function for inserting bibtex element into
16981         a property list.
16982         (org-bibtex-headline): Return a bibtex entry of the given headline
16983         as a string.
16984         (org-bibtex-ask): Prompt the user to fill in the value of a bibtex
16985         field.
16986         (org-bibtex-autokey): Generate a bibtex key for the current
16987         headline.
16988         (org-bibtex-fleshout): Fill in missing bibtex properties of the
16989         current headline.
16990         (org-bibtex): Export the current Org-mode buffer to a bibtex buffer.
16991         (org-bibtex-check): Check that all bibtex properties are present in
16992         the current headline.
16993         (org-bibtex-check-all): Check all headlines in the current buffer.
16994         (org-bibtex-create): Create a new bibtex headline at the current
16995         level.
16996         (org-bibtex-read): Read the current bibtex entry from a bibtex file.
16997         (org-bibtex-write): Write the most recently read bibtex entry into
16998         an Org-mode file.
17000 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
17002         * org-agenda.el (org-agenda-clock-consistency-checks): Allow to
17003         set properties.
17004         (org-agenda-show-clocking-issues): Handle faces.
17006 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
17008         * ob-ditaa.el (org-babel-default-header-args:ditaa): Specify utf8
17009         content by default with "-Dfile.encoding=UTF-8".
17011 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
17013         * ob-ditaa.el (org-babel-execute:ditaa): New ":java" header
17014         argument.
17016 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
17018         * org-exp.el (org-export-preprocess-string): Mark list end before
17019         expanding macros.  Thus, a macro inside a list and containing
17020         blank lines cannot break the list structure.
17021         (org-export-preprocess-apply-macros): Multi-lines macros get
17022         indented with the same indentation as the first line.  Thus, we
17023         are sure that every line belongs to the same list as the first
17024         line, if such list exists.  Also add comments in code.
17026 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
17028         * org-agenda.el (org-agenda-clock-consistency-checks): New option.
17029         (org-agenda-list): Handle display change to clock check.
17030         (org-agenda-get-progress): Show only clock entries if we are doing
17031         the consistency check.
17032         (org-agenda-show-clocking-issues): New function.
17033         (org-agenda-check-clock-gap): New function.
17034         (org-agenda-view-mode-dispatch): Offer consistency check.
17035         (org-agenda-log-mode): Handle switch to clock only display.
17036         (org-agenda-set-mode-name): Show lighter for Clockcheck.
17038         * org.el (org-hh:mm-string-to-minutes): Accept an integer argument
17039         and return it unchanged.
17041 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
17043         * org-list.el (org-list-struct): When walking down the list, the
17044         function would not pay attention to drawers or blocks indentation.
17045         Thus, such constructs couldn't consistently end an item or a list.
17046         This patch ensures line indentation is stored (if applicable)
17047         before skipping them.  Also fixed doc-string and comments.
17049 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
17051         * org-exp.el (org-export): Add EXPORT_FILE_NAME to the enclosing
17052         tree properties.
17054 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
17056         * org-exp.el (org-export): Define a bound for finding enclosing
17057         tree with class/title definition.
17059 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
17061         * org-exp.el (org-export): Go to next heading before searching
17062         backward, so make this also work if we are on the headline of the
17063         entry with the property.
17065 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
17067         * org.el (org-promote):
17068         (org-demote): Soften the previous change, by only removing the
17069         flyspell function from after-change functions, because that was
17070         the one causing the slowdown - at least much of it.
17072 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
17074         * org.el (org-promote, org-demote): Turn off
17075         after-change-functions to speed up the reindentation of text.
17077 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
17079         * ob-ocaml.el (org-babel-ocaml-read-list):
17080         Use `org-babel-script-escape'.
17081         (org-babel-ocaml-read-array): Use `org-babel-script-escape'.
17083 2011-07-28  Manuel Giraud  <manuel.giraud@univ-nantes.fr>
17085         * org-html.el (org-html-handle-links): Add an alternate for inline
17086         images.
17088 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
17090         * org-agenda.el (org-agenda-bulk-action): Do not use the entries
17091         variable before it is defined.
17093 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
17095         * org-src.el (org-src-lang-modes): Add a language alias of "C"
17096         to "c".
17098 2011-07-28  Shaun Johnson  <shaun@slugfest.demon.co.uk>  (tiny change)
17100         * ob-tangle.el (org-babel-tangle): Make it work in an indirect
17101         buffer.
17103 2011-07-28  Manuel Giraud  <manuel.giraud@univ-nantes.fr>
17105         * org-html.el (org-html-make-link): Correct a bug in coderef link.
17107 2011-07-28  Bernt Hansen  <bernt@norang.ca>
17109         * org-agenda.el (org-agenda-filter-by-tag): Fix variable name
17110         typo.
17112 2011-07-28  Bernt Hansen  <bernt@norang.ca>
17114         * org-agenda.el (org-agenda-get-timestamps): Fix agenda display
17115         when headlines are missing.
17117 2011-07-28  Bastien Guerry  <bzg@gnu.org>
17119         * org-mobile.el (org-mobile-push): Move call to hook, make it the
17120         first thing of the push operation.
17122 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
17124         * ob.el (org-babel-params-from-buffer): Now looking for header
17125         arguments in #+Properties: as well as #+Babel:.  Also, we're no
17126         longer caching these results into a file local variable.
17128 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
17130         * ob-python.el (org-babel-python-evaluate-external-process):
17131         Allow parsing as a table in the case of ":results output table".
17132         (org-babel-python-evaluate-session): Allow parsing as a table in
17133         the case of ":results output table".
17135 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
17137         * org-agenda.el (org-agenda-bulk-action): Allow bulk scatter in
17138         all possible agenda views.  Use `org-agenda-schedule' instead of
17139         `org-agenda-date-later'.
17141 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
17143         * ob-emacs-lisp.el (org-babel-execute:emacs-lisp): Now supports
17144         ":results output".
17146 2011-07-28  Julien Danjou  <julien@danjou.info>
17148         * org.el (org-entry-get, org-entry-delete, org-entry-put)
17149         (org-property-values, org-delete-property-globally):
17150         Use `org-re-property'.
17151         (org-re-property): New function allowing to build a regexp to
17152         match a property.
17154 2011-07-28  Julien Danjou  <julien@danjou.info>
17156         * org.el (org-property-values): Enhance docstring.
17158 2011-07-28  Ethan Ligon  <ligon@are.berkeley.edu>  (tiny change)
17160         * org-html.el (org-html-export-list-line): Fix regexp for
17161         detecting description lists to allow "::" marker to be last
17162         visible element at end of line.
17163         * org-docbook.el (org-docbook-export-list-line): Fix regexp for
17164         detecting description lists to allow "::" marker to be last
17165         visible element at end of line.
17167 2011-07-28  Julien Danjou  <julien@danjou.info>
17169         * org-table.el (org-table-cleanup-narrow-column-properties):
17170         Use point-min rather than 1 when moving in the buffer.
17172 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
17174         * org-list.el (org-list-in-valid-context-p): Rename from
17175         `org-list-in-valid-block-p'.
17176         (org-at-item-p, org-list-search-generic): Use renamed function.
17178 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
17180         * org.el (org-set-font-lock-defaults): Be more strict when
17181         recognizing description items, and do not fontify wrong cases
17182         like: "- term ::description" or "1. term :: description".
17184 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
17186         * org-latex.el: Pay attention to end of footnote.  Before closing
17187         the command, ensure that list is properly closed or that last link
17188         is separated from the curly brace.
17190 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
17192         * org.el (org-indent-line-function): Footnote definition must stay
17193         at column 0 to be recognized as such.  Body below can have normal
17194         indentation, so it should ignore its definition when computing
17195         indentation.
17197 2011-07-28  Bastien Guerry  <bzg@gnu.org>
17199         * org-protocol.el (org-protocol-remember, org-protocol-capture):
17200         More appropriate message.
17202 2011-07-28  Bastien Guerry  <bzg@gnu.org>
17204         * org-capture.el (org-capture-clock-keep): New local variable.
17205         (org-capture, org-capture-finalize): Use it and fix a bug when
17206         :clock-keep is set to `t'.
17208 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>  (tiny change)
17210         * org-exp.el (org-export-preprocess-string): Handle include files
17211         before processing macros.
17213 2011-07-28  Bernt Hansen  <bernt@norang.ca>
17215         * org-agenda.el: Remove obsolete code for adding todo list in
17216         front of the agenda.
17218 2011-07-28  Lawrence Mitchell  <wence@gmx.li>
17220         * org-latex.el (org-export-latex-convert-table.el-table):
17221         Fix format-string for insertion of captions.
17223 2011-07-28  Nick Dokos  <nicholas.dokos@hp.com>  (tiny change)
17225         * org-exp.el (org-export-remove-comment-blocks-and-subtrees):
17226         Fix regexp.
17228 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>  (tiny change)
17230         * org.el (org-read-date-analyze): Help matching dotted European
17231         dates, like 31. 12. 2007
17233 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
17235         * ob-lisp.el (org-babel-execute:lisp): Fix typo.
17237 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
17239         * ob-lisp.el (org-babel-execute:lisp): Turn vectors into lists
17240         before reading by elisp.
17241         (org-bable-lisp-vector-to-list): Stub of a vector->list function,
17242         should be replaced with a cl-vector->el-vector function.
17244 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
17246         * ob-lisp.el (org-babel-execute:lisp): Now using
17247         `org-babel-reassemble-table' to apply the appropriate header
17248         arguments to results.
17250 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
17252         * org.el (org-end-of-meta-data-and-drawers): New function.
17254         * org-capture.el (org-capture-place-plain-text): Implement adding
17255         plain text templates to Org nodes.
17257 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
17259         * org-beamer.el (org-beamer-environments-extra): Fix docstring.
17261 2011-07-28  Lawrence Mitchell  <wence@gmx.li>
17263         * org-exp.el (org-export-handle-comments): Add the org-protected
17264         property to the replacement string.
17266 2011-07-28  Lawrence Mitchell  <wence@gmx.li>
17268         * org-html.el (org-export-as-html, org-html-level-start):
17269         Fix logic for section number printing when NUM is an integer.
17271 2011-07-28  Lawrence Mitchell  <wence@gmx.li>
17273         * org-latex.el (org-export-latex-special-chars): Fix regexp for
17274         `single' special characters and ellipsis.
17276 2011-07-28  Lawrence Mitchell  <wence@gmx.li>
17278         * org.el (org-point-at-end-of-empty-headline):
17279         Bind `case-fold-search' to nil.
17281 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
17283         * org-capture.el (org-capture-fill-template): Resolve new %<...>
17284         template escape.
17285         (org-capture-templates): Document new %<...> template escape.
17287 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
17289         * ob.el (org-babel-process-params): Make this function idempotent,
17290         as it will sometimes be called multiple times.
17292 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
17294         * org.el (org-ts-regexp-both): Add "]" to class of characters that
17295         should not be matched.
17296         (org-ts-regexp0, org-ts-regexp1): Do not start a class with
17297         "^]-+", because that tries to (not) match characters between "]"
17298         and "+".  Instead, move the "-" to the end of the class where it
17299         causes no harm.
17301 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
17303         * ob-R.el (org-babel-edit-prep:R): Associate the appropriate R
17304         process with the edit buffer when :session is specified.
17306 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
17308         * ob-tangle.el (org-babel-tangle-collect-blocks): Brought the link
17309         extraction code into line with a newer version of the
17310         `org-store-link' function.
17312 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
17314         * ob-lisp.el (org-babel-expand-body:lisp): New body expansion
17315         wrapping the expression in either a let or progn, and possibly a
17316         pretty-print function invocation.
17317         (org-babel-execute:lisp): Greatly simplified method of executing
17318         lisp code blocks.
17320 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
17322         * org-list.el: Move `org-update-checkbox-count-maybe' call outside
17323         of ̀save-excursion' to get back to original position.
17325 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
17327         * org.el (org-numbered-action-format): New option.
17328         (org-new-numbered-action): New command.
17329         (org-collect-todos-in-subtree): New command.
17331 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
17333         * org-exp.el (org-export-with-tasks): New option.
17334         (org-export-plist-vars): Add :tasks property.
17336 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
17338         * org-ascii.el (org-export-as-ascii): Pass the :done-tasks
17339         property to the export preprocessor.
17341         * org-docbook.el (org-export-as-docbook): Pass the :done-tasks
17342         property to the export preprocessor.
17344         * org-html.el (org-export-as-html): Pass the :done-tasks property
17345         to the export preprocessor.
17347         * org-latex.el (org-export-as-latex): Pass the :done-tasks
17348         property to the export preprocessor.
17350         * org-exp.el (org-export-with-done-tasks): New option.
17351         (org-export-plist-vars): Add entry for :done-tasks.
17352         (org-export-preprocess-string): Call `org-export-remove-done-tasks'.
17353         (org-export-remove-done-tasks): New function.
17355 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
17357         * org-latex.el (org-export-latex-keywords-maybe): Protect # in
17358         tags.
17360 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
17362         * org.el (org-find-olp): Use the level of the correct match to
17363         continue search.
17365 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
17367         * org-list.el (org-toggle-checkbox): Build value of
17368         org-keyword-time-regexp instead of using it directly, as it's
17369         buffer-local, and function might be called outside Org.
17371 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
17373         * org-list.el (org-list-struct, org-in-item-p): Don't assume end of
17374         blocks or drawers necessarily start somewhere.  It it isn't the
17375         case, treat them as normal text.
17377 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
17379         * ob-exp.el (org-babel-exp-results): Use code block name when
17380         finding cached results.
17382 2011-07-28  Julien Danjou  <julien@danjou.info>
17384         * org-latex.el (org-export-latex-date-format): Change default date
17385         format to \today.  This has the same result but respects the
17386         language set in the document by default.
17388 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
17390         * org-list.el (org-list-checkbox): When called from an headline,
17391         function would normally skip drawers, but not if a SCHEDULED or
17392         DEADLINE keyword is standing before the drawer.  Also avoid
17393         problems if function is called in buffers not is Org mode.
17395 2011-07-28  Bastien Guerry  <bzg@gnu.org>
17397         * org-clock.el (org-clock-report): Change the scope of the
17398         inserted clock report depending on whether the point is within a
17399         subtree (:scope subtree) or not (:scope file).
17401 2011-07-28  Puneeth Chaganti  <punchagan@gmail.com>
17403         * org-html.el (org-export-as-html): Fix export of footnotes
17404         containing lists, tables, quotes, etc.
17406 2011-07-28  Lawrence Mitchell  <wence@gmx.li>
17408         * org-latex.el (org-export-latex-preprocess): Correctly match
17409         starred command names.
17411 2011-07-28  Lawrence Mitchell  <wence@gmx.li>
17413         * org-html.el (org-export-as-html): Get local value of
17414         org-export-with-section-numbers from the buffer's plist.
17415         Deal specially with the case the resulting value is an integer.
17416         (org-html-level-start): New optional argument of the option plist used
17417         instead of `org-export-with-section-numbers'.  Also deal specially
17418         with the case that the value is an integer.
17420 2011-07-28  Lawrence Mitchell  <wence@gmx.li>
17422         * org-latex.el (org-export-latex-subcontent): Deal specially with
17423         the case that NUM is an integer.
17425 2011-07-28  Bastien Guerry  <bzg@gnu.org>
17427         * org-protocol.el (org-protocol-do-capture): Allow template keys
17428         of two characters.
17429         (org-protocol-default-template-key): Update the docstring to
17430         reflect the change in `org-protocol-do-capture'.
17432 2011-07-28  Christian Egli  <christian.egli@sbszh.ch>
17434         * org-taskjuggler.el: Fix a typo in the commentary.
17436 2011-07-28  Christian Egli  <christian.egli@sbszh.ch>
17438         * org-taskjuggler.el (org-taskjuggler-open-task): Only emit a
17439         "purge allocations" statement if we are not targeting tj3.
17441 2011-07-28  Christian Egli  <christian.egli@sbszh.ch>
17443         * org-taskjuggler.el (org-taskjuggler-assign-resource-ids):
17444         Replace recursive implementation with an iterative one.
17446 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
17448         * ob-sh.el (org-babel-sh-var-to-sh): Fix insertion of tabular
17449         data into shell variables.
17451 2011-07-28  David Maus  <dmaus@ictsoc.de>
17453         * org-html.el (org-html-handle-time-stamps): Protected linebreak
17454         element after timestamp markup.
17456 2011-07-28  David Maus  <dmaus@ictsoc.de>
17458         * org-html.el (org-html-handle-links): Don't protect img tag in
17459         link description.
17461 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
17463         * org-table.el (org-table-formula-handle-first/last-rc):
17464         Bind `char'.
17466 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
17468         * org-list.el (org-in-item-p): Re-build `org-drawer-regexp',
17469         whatever the major mode is.
17471 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
17473         * org-inlinetask.el (org-inlinetask-export-templates): Fix default
17474         templates.
17475         (org-inlinetask-export-handler): Ensure contents of inline task,
17476         if any, starts and ends with a newline character.  Refactor and
17477         comment code.
17479 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
17481         * org-capture.el (org-datetree-find-date-create): Lower-case for
17482         variable names in `define-function' form.
17484 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
17486         * org-table.el (org-table-convert-region): Throw error when
17487         SEPARATOR is smaller than 1.
17489 2011-07-28  Julien Danjou  <julien@danjou.info>
17491         * org-colview.el (org-columns-display-here): Fix heading retrieval
17492         in Org buffers.
17494 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
17496         * org-latex.el (org-export-latex-preprocess): Last brace shouldn't
17497         be on the same line as a list end marker.
17499 2011-07-28  Julien Danjou  <julien@danjou.info>
17501         * org.el (org-icompleting-read): Do not use useless lambda.
17503 2011-07-28  Julien Danjou  <julien@danjou.info>
17505         * org-agenda.el (org-format-agenda-item): Fix length computing.
17507 2011-07-28  Julien Danjou  <julien@danjou.info>
17509         * org-agenda.el (org-format-agenda-item): Fix comment and use
17510         `add-text-properties'.
17512 2011-07-28  Julien Danjou  <julien@danjou.info>
17514         * org-agenda.el (org-agenda-highlight-todo): Remove useless
17515         `concat'.
17517 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
17519         * org-list.el (org-list-to-generic): Set a default term for
17520         ill-formed description lists.  Do not insert newline characters
17521         unless told to.
17522         (org-list-to-texinfo, org-list-to-html): Apply changes to
17523         `org-list-parse-liste'.
17525 2011-07-28  Bastien Guerry  <bzg@gnu.org>
17527         * org-clock.el (org-clock-clocktable-language-setup): Add a
17528         string.
17529         (org-clocktable-write-default): Use the new localized string
17530         in `org-clock-clocktable-language-setup'.
17532 2011-07-28  Bastien Guerry  <bzg@gnu.org>
17534         * org-taskjuggler.el (org-taskjuggler-compute-task-leafiness):
17535         (org-taskjuggler-assign-resource-ids): Replace recursive
17536         implementation with an iterative one.
17538 2011-07-28  Christian Egli  <christian.egli@alumni.ethz.ch>
17540         * org-taskjuggler.el (org-taskjuggler-components): Escape quotes
17541         in headlines.
17543 2011-07-28  Christian Egli  <christian.egli@alumni.ethz.ch>
17545         * org-taskjuggler.el (org-taskjuggler-compute-task-leafiness):
17546         Compute the leafiness of a node.
17547         (org-taskjuggler-open-task, org-export-as-taskjuggler): Mark a
17548         node as a milestone if it is a leaf and has no effort.
17550 2011-07-28  Christian Egli  <christian.egli@alumni.ethz.ch>
17552         * org-taskjuggler.el (org-export-taskjuggler-target-version):
17553         (org-taskjuggler-targeting-tj3-p): Add some minimal infrastructure
17554         to handle export to both tj2 and tj3.
17555         (org-taskjuggler-open-task): Use a different way to purge
17556         allocations for tj2 and tj3.
17558 2011-07-28  Matt Lundin  <mdl@imapmail.org>
17560         * org-footnote.el (org-footnote-auto-label): New random option.
17562         * org-footnote.el (org-footnote-new): Create random footnote
17563         labels with unique ids.
17565 2011-07-28  Matt Lundin  <mdl@imapmail.org>
17567         * org-footnote.el (org-footnote-create-definition): Allow for
17568         footnote sections above the current footnote insertion point.
17570 2011-07-28  Matt Lundin  <mdl@imapmail.org>
17572         * org-footnote.el (org-footnote-create-definition): Don't search
17573         for last footnote when in org-mode file.
17575 2011-07-28  Bastien Guerry  <bzg@gnu.org>
17577         * org-html.el (org-export-as-html): Handle links with
17578         `org-html-handle-links' after we handle special characters
17579         conversions.
17580         (org-html-make-link, org-export-html-format-image):
17581         Don't protect html with @ anymore, as links are now handled after
17582         special characters conversions.
17584 2011-07-28  Julien Danjou  <julien@danjou.info>
17586         * org-agenda.el (org-agenda-get-timestamps):
17587         (org-agenda-get-scheduled): Fix call to `org-format-agenda-item'.
17588         (org-format-agenda-item): Remove no-prefix argument.
17589         (org-agenda-change-all-lines): Call org-format-agenda-item without the
17590         no-prefix argument.
17592 2011-07-28  Julien Danjou  <julien@danjou.info>
17594         * org-agenda.el (org-agenda-highlight-todo): Stop using
17595         prefix-length.
17596         (org-cmp-alpha): Stop using prefix-length.
17597         (org-agenda-open-link): Stop using prefix-length.
17598         (org-agenda-change-all-lines): Stop using prefix-length.
17600         * org-colview.el (org-columns-display-here): Stop using
17601         prefix-length.  Always return claned items.
17603         * org-mobile.el (org-mobile-write-agenda-for-mobile): Stop using
17604         prefix-length.
17606 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
17608         * ob-tangle.el (org-babel-tangle-collect-blocks): Don't call
17609         `org-store-link' interactively as it can confuse the setting of
17610         `org-link-to-org-use-id' and cause undue edits to the org-mode
17611         buffer during tangling.
17613 2011-07-28  David Maus  <dmaus@ictsoc.de>
17615         * org-html.el (org-export-html-format-image): Protect <p> element
17616         of image caption.
17618 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
17620         * org.el (org-read-date-force-compatible-dates): New option.
17621         (org-read-date, org-read-date-analyze): Check representable date range.
17623 2011-07-28  Bastien Guerry  <bzg@gnu.org>
17625         * org-html.el (org-export-as-html): Fix export of email.
17627 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
17629         * ob-tangle.el (org-babel-spec-to-string): Check value of padline
17630         on tangling, no longer use the now-removed variable
17631         `org-babel-tangle-pad-newline'.
17633         * ob.el (org-babel-header-arg-names): Add padline to the list of
17634         header argument names.
17635         (org-babel-default-header-args): Set the default value of padline to
17636         "yes".
17637         (org-babel-merge-params): Cleaned up the merge logic, added padline.
17639 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
17641         * ob.el (org-babel-header-arg-names): Adding "shebang" to known
17642         code block header argument names.
17644 2011-07-28  Bastien Guerry  <bzg@gnu.org>
17646         * org-crypt.el: Remove useless TODO in comments.
17648 2011-07-28  Bastien Guerry  <bzg@gnu.org>
17650         * org-html.el (org-export-as-html): The default postamble now only
17651         export a date paragraph if `org-export-time-stamp-file' is
17652         non-nil.
17654 2011-07-28  Bastien Guerry  <bzg@gnu.org>
17656         * org-exp.el (org-export-xml): Remove the defgroup of
17657         org-export-xml.
17659 2011-07-28  Bastien Guerry  <bzg@gnu.org>
17661         * org-html.el (org-export-html-insert-plist-item): Remove.
17662         (org-export-html-preamble): Default to `t'.  Accept functions.
17663         (org-export-html-postamble): Default to `auto'.
17664         Accept functions and distinguish between 'auto (no formatting string)
17665         and `t' (default formatting string).
17666         (org-export-as-html): Handle org-export-html-preamble and
17667         org-export-html-postamble new defaults/allowed values.
17668         Define email and creator-info before using them.
17670 2011-07-28  Bastien Guerry  <bzg@gnu.org>
17672         * org-html.el (org-export-html-protect-char-alist): Fix typo in
17673         custom type definition.
17675 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
17677         * ob-exp.el (org-babel-exp-do-export): Now runs for empty :session
17678         arguments.
17680 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
17682         * org-list.el (org-list-parse-list): Fix regexp.
17684 2011-07-28  David Maus  <dmaus@ictsoc.de>
17686         * org-html.el (org-export-html-format-image): Protect image
17687         elements.
17689 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
17691         * ob-tangle.el (org-babel-tangle-body-hook): Hook for changing the
17692         contents of a code block body on export.
17693         (org-babel-tangle-collect-blocks): Apply
17694         `org-babel-tangle-body-hook' to the collected bodies of code blocks.
17696 2011-07-28  David Maus  <dmaus@ictsoc.de>
17698         * org-html.el (org-html-make-link, org-html-handle-links):
17699         Protect generated XHTML elements.
17700         (org-export-as-html): Expand character entities after creating markup
17701         for links and timestamps.
17703 2011-07-28  Bastien Guerry  <bzg@gnu.org>
17705         * org-html.el (org-export-as-html): Bugfix: insert email
17706         correctly.
17708 2011-07-28  Bastien Guerry  <bzg@gnu.org>
17710         * org-html.el: Bugfix: prevent infinite matching of the `&'
17711         character.
17713 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
17715         * org.el (org-fill-paragraph): `fill-forward-paragraph' function
17716         has been introduced with emacs 23.1.
17718 2011-07-28  Bastien Guerry  <bzg@gnu.org>
17720         * org-attach.el: Allow to store a link to the attach-dir location.
17722 2011-07-28  Puneeth Chaganti  <punchagan@gmail.com>
17724         * org-agenda.el (org-agenda-bulk-action): Allow the user to run a
17725         function.
17727 2011-07-28  Bernt Hansen  <bernt@norang.ca>
17729         * org-clock.el (org-clock-in): Allow clocking in new tasks
17730         inserted before the current clocking task.
17732 2011-07-28  Bernt Hansen  <bernt@norang.ca>
17734         * org-clock.el (org-clock-in): Set default clocking task when
17735         already clocking the task.
17737 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
17739         * org.el (org-adaptive-fill-function): When a region is specified
17740         first line of paragraph isn't skipped, so fill-paragraph have to
17741         be computed even if point is at an item.
17743 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
17745         * org-list.el (org-list-in-valid-block-p): New function.
17746         (org-at-item-p, org-list-search-generic): Use new function.
17748 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
17750         * org.el (org-indent-line-function): Text in both a list and a
17751         valid block is indented with regards to current item, not to block
17752         boundaries.
17754 2011-07-28  Manuel Giraud  <manuel.giraud@univ-nantes.fr>
17756         * org-html.el (org-format-org-table-html): Fix anchors in HTML
17757         export (thanks to <aankhen@gmail.com>)
17758         (org-html-protect): Fix a  bug that prevents some target to be
17759         rendered correctly.
17761 2011-07-28  Bastien Guerry  <bzg@gnu.org>
17763         * org.el (org-default-properties): Add EXPORT_TEXT.
17765 2011-07-28  Matt Lundin  <mdl@imapmail.org>
17767         * org-footnote.el (org-footnote-create-definition)
17768         (org-insert-footnote-reference-near-definition): Fix sorting
17769         of footnotes.
17771 2011-07-28  Manuel Giraud  <manuel.giraud@univ-nantes.fr>
17773         * org-html.el (org-export-as-html): Bugfix: don't insert closing
17774         HTML tags when exporting body only.
17776 2011-07-28  Jason Dunsmore  <emacs-orgmode@deathroller.dunsmor.com>  (tiny change)
17778         * org.el (org-back-over-empty-lines): Bugfix.
17779         Honor `org-blank-before-new-entry' correctly in various contexts.
17781 2011-07-28  Bastien Guerry  <bzg@gnu.org>
17783         * org-macs.el (org-with-wide-buffer): Bugfix: use `save-excursion'
17784         and `save-restriction'.
17786 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
17788         * org-timer.el (org-timer-item): `save-excursion' prevents
17789         `org-list-struct' to get the list structure when point isn't on
17790         the first line of the item.
17792 2011-07-28  Bastien Guerry  <bzg@gnu.org>
17794         * org-capture.el (org-capture-templates): New option
17795         :no-clock-out.
17796         (org-capture): Use the new option.
17798 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
17800         * org-list.el (org-update-checkbox-count): Ensure cookies on an
17801         heading are correctly updated when checkboxes are hidden.
17802         It allows, for example, to use C-c C-x C-b on a collapsed tree and
17803         still get the update.
17805 2011-07-28  David Maus  <dmaus@ictsoc.de>
17807         * org-exp.el (org-export-visible): Accept keys for
17808         `org-export-as-html-to-buffer' and `org-export-region-as-html'.
17810 2011-07-28  Bastien Guerry  <bzg@gnu.org>
17812         * org.el (org-duration-string-to-minutes): Don't use
17813         `rx-to-string'.
17815 2011-07-28  Lawrence Mitchell  <wence@gmx.li>
17817         * org.el (org-effort-durations): New variable.
17819         * org.el (org-duration-string-to-minutes): New function.
17821         * org-agenda.el (org-agenda-filter-effort-form)
17822         (org-format-agenda-item): Use it.
17824         * org-clock.el (org-clock-notify-once-if-expired)
17825         (org-clock-modify-effort-estimate, org-clock-get-clock-string): Use it.
17827 2011-07-28  Bastien Guerry  <bzg@gnu.org>
17829         * org-agenda.el (org-agenda-run-series): Rename from
17830         `org-run-agenda-series'.
17832 2011-07-28  Bastien Guerry  <bzg@gnu.org>
17834         * org-capture.el: Don't allow currentfile anymore.
17836 2011-07-28  Bastien Guerry  <bzg@gnu.org>
17838         * org-agenda.el (org-agenda-list): Fix bug: don't rely on
17839         `org-agenda-current-span' when calling `org-agenda-list'.
17841 2011-07-28  Bastien Guerry  <bzg@gnu.org>
17843         * org-capture.el (org-capture-put-target-region-and-position):
17844         New function to store information about the target buffer.
17845         (org-capture-set-target-location): Use it.
17846         (org-capture-finalize): Restore the target buffer in its
17847         possibly narrowed state.  Also restore the cursor position.
17849 2011-07-28  Bastien Guerry  <bzg@gnu.org>
17851         * org-crypt.el (auto-save-default): Make sure entries are
17852         encrypted before auto-saving.
17854 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
17856         * org-inlinetask.el (org-inlinetask-promote)
17857         (org-inlinetask-demote): New functions.
17859 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
17861         * org.el (org-demote-subtree, org-promote-subtree):
17862         Wrap `org-map-tree' into `org-with-limited-levels' macro, so it avoids
17863         operating on inline tasks.
17865 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
17867         * org.el (org-narrow-to-subtree): Ensure `org-back-to-heading'
17868         will move point to a real heading and not an inline task by
17869         wraping function into a `org-with-limited-levels' macro.
17871 2011-07-28  Bastien Guerry  <bzg@gnu.org>
17873         * org-capture.el (org-capture-finalize): New argument clock-out,
17874         to tell whether finalizing the capture process should clock out
17875         the running clock.
17876         (org-capture): Use the new argument.
17878 2011-07-28  Bastien Guerry  <bzg@gnu.org>
17880         * org.el (org-refile-get-targets): Rename from
17881         `org-get-refile-targets'.
17883 2011-07-28  Bastien Guerry  <bzg@gnu.org>
17885         * org-exp.el (org-export-table-remove-empty-lines): New custom
17886         variable.
17887         (org-export-remove-special-table-lines): Use it.
17889 2011-07-28  Bastien Guerry  <bzg@gnu.org>
17891         * org-table.el (org-table-fix-formulas-confirm): New custom
17892         variable.
17893         (org-table-insert-column, org-table-delete-column)
17894         (org-table-move-column, org-table-move-row)
17895         (org-table-insert-row, org-table-kill-row): Use it.
17897 2011-07-28  Tassilo Horn  <tassilo@member.fsf.org>
17899         * org.el (org-refile-get-location): Set and show default value.
17900         (org-goto, org-refile): Adapt calls.
17902 2011-07-28  Bastien Guerry  <bzg@gnu.org>
17904         * org-mobile.el (org-mobile-files-exclude-regexp): New custom
17905         variable.
17906         (org-mobile-files-alist): Use it.
17908 2011-07-28  Bastien Guerry  <bzg@gnu.org>
17910         * org.el (org-todo): Bugfix: use `org-with-wide-buffer' to check
17911         against headings outside of a narrowed buffer.
17913 2011-07-28  Bastien Guerry  <bzg@gnu.org>
17915         * org.el (org-confirm-shell-link-not-regexp)
17916         (org-confirm-elisp-link-not-regexp): New custom variables.
17917         (org-open-at-point): Use the new custom variables.
17919 2011-07-28  Lawrence Mitchell  <wence@gmx.li>
17921         * org-latex.el: Place \title \author \date before
17922         \begin{document}.
17924 2011-07-28  Bastien Guerry  <bzg@gnu.org>
17926         * org-html.el (org-export-html-preamble)
17927         (org-export-html-postamble): Now default to `nil'.
17928         (org-export-as-html): When :html-pre/postamble is nil, fall
17929         back on the default pre/postamble, which depends on the
17930         :author-info, :email-info, :creator-info options.
17932 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
17934         * ob-exp.el (org-babel-exp-results): Don't use cached results if
17935         there is no hash.
17937 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
17939         * org-table.el (org-table-eval-formula): Treat relative column
17940         refs.
17942 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
17944         * org-table.el (org-table-use-standard-references): Change default
17945         to `from'.
17947 2011-07-28  Bastien Guerry  <bzg@gnu.org>
17949         * org.el (org-move-subtree-down): Leave the cursor at the same
17950         column we were at.
17952 2011-07-28  Bastien Guerry  <bzg@gnu.org>
17954         * org-attach.el (org-attach-store-link-p): New variable.
17955         (org-attach-store-link): New function.
17956         (org-attach-attach): When `org-attach-store-link-p' is
17957         non-nil, store a link in `org-stored-links' to a newly
17958         attached file.
17960 2011-07-28  Bastien Guerry  <bzg@gnu.org>
17962         * org-exp.el (org-export-remove-headline-metadata): Bugfix: don't
17963         case-fold-search to avoid mixing TODO keywords with real headline
17964         words.
17966 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
17968         * org-table.el (org-table-fedit-finish): Read more general LHS of
17969         formulas.
17970         (org-table-formula-handle-@L): New function to hanle @L references.
17971         (org-table-current-ncol): New variable.
17972         (org-table-line-to-dline): New function.
17973         (org-table-get-stored-formulas): Accept range formulas as matches.
17974         (org-table-get-specials): Compute and store the number of columns.
17975         (org-table-get-range): New optional argument CORNERS-ONLY, to retrieve
17976         only the region marked by the range, not the content.
17977         (org-table-recalculate): Call `org-table-expand-lhs-ranges' to expand
17978         range targets.  Also check for duplicate access to fields.
17979         (org-table-expand-lhs-ranges): New funktion.
17980         (org-table-get-remote-range): Bind `org-table-current-ncol' to protect
17981         the caller's value.
17982         (org-table-edit-formulas): Support highlighting of range targets.
17983         (org-table-field-info): Handle renge formulas.
17985 2011-07-28  Bastien Guerry  <bzg@gnu.org>
17987         * org-html.el (org-export-html-postamble-format)
17988         (org-export-html-preamble-format): Explain how to escape the
17989         `%' character.
17991 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
17993         * ob.el (org-babel-read): Read string variable values wrapped in
17994         double quotes, removing the quotes.
17996 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
17998         * ob-exp.el (org-babel-exp-results): Ensure that processed params
17999         are send to org-babel-execute-src-block.
18001 2011-07-28  Bastien Guerry  <bzg@gnu.org>
18003         * org-special-blocks.el
18004         (org-special-blocks-make-special-cookies):
18005         Use `org-export-current-backend'.
18007 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
18009         * ob-exp.el (org-babel-exp-in-export-file): Now takes the language
18010         as an argument.
18011         (org-babel-exp-src-block): Explicitly pass language to
18012         `org-babel-exp-in-export-file'.
18013         (org-babel-exp-inline-src-blocks): Remove unused code.
18014         (org-babel-exp-results): Explicitly pass language to
18015         `org-babel-exp-in-export-file'.
18017 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
18019         * ob-calc.el (org-babel-execute:calc): Unquote quoted vectors
18020         returned from calc-eval.
18022 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
18024         * ob.el (org-babel-read): Pass elisp vectors through to code
18025         blocks.
18027 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
18029         * ob.el (org-src-lang-modes): Defvar.
18030         (org-at-item-p): Declare function.
18032         * ob-calc.el (calc-store): Require.
18033         (var-syms): Defvar.
18035         * ob-python.el (py-default-interpreter): Defvar.
18037 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
18039         * org-exp-blocks.el (backend): defvar.
18041 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
18043         * org-agenda.el (org-agenda-get-scheduled):
18044         (org-agenda-get-timestamps): Bind local variable `show-all'.
18046 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
18048         * ob-ref.el (org-at-item-p): Declare function.
18050         * org-agenda.el (diary-time-regexp): defvar.
18052         * org-archive.el (org-archive-subtree): Bind local variable
18053         `infile-p'.
18055         * org-capture.el (org-capture-insert-template-here): Get template
18056         text from property list, to avoid byte compiler message.
18058         * org-latex.el (org-export-latex-tables): Bind local variable
18059         `width'.
18061         * org-special-blocks.el (org-compat): Add require statement.
18063         * org-table.el (orgtbl-ctrl-c-ctrl-c): Bind local variable
18064         `const-str'.
18066         * org.el (org-eval): Move function here from org-agenda.el.
18068 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
18070         * ob.el (org-babel-read-table): Inhibit lisp evaluation of values
18071         when reading from tables.
18072         (org-babel-read-list): Inhibit lisp evaluation of values when
18073         reading from lists.
18074         (org-babel-read): Add optional argument which can be used to inhibit
18075         lisp evaluation of value.
18077 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
18079         * ob-table.el (sbe): Ensure that ob-trim is only called on
18080         strings.
18082 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
18084         * ob-exp.el (org-babel-exp-results): On export, ensure that the
18085         result hash is resolved in the original org-mode file.
18087 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18089         * org-exp.el (org-export-mark-list-end): Change end marker.
18091         * org-docbook.el (org-export-docbook-list-line): Use new marker.
18093         * org-html.el (org-html-export-list-line): Use new marker.
18095         * org-latex.el (org-export-latex-lists): Use new marker.
18097 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18099         * org-latex.el (org-export-latex-lists): Make sure markers used
18100         for export are taken into account by temporarily setting an
18101         appropriate value for `org-list-ending-method'.
18103 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
18105         * org-exp-blocks.el (org-exp-blocks-block-regexp): Wrapping block
18106         regexp into its own variable, also allowing match of empty bodies.
18107         (org-export-blocks-preprocess): Using new regexp variable.
18109 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
18111         * ob.el (org-babel-src-block-regexp): Code block regexp now
18112         matches blocks with empty bodies.
18114 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
18116         * ob.el (org-babel-script-escape): If script escaped value doesn't
18117         parse cleanly, then return it literally.
18119 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
18121         * ob-exp.el (org-babel-exp-src-block): When block will eventually
18122         be evaluated, pre-calculate the hash before noweb expansion, and
18123         expand the parameters before hash calculation.
18124         (org-babel-exp-do-export): Pass pre-calculated hash through to
18125         `org-babel-exp-results'.
18126         (org-babel-exp-results): Compare pre-calculated hash to results hash.
18128 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
18130         * ob.el (org-babel-sha1-hash): Sort list values to header
18131         arguments, and sort the words in strings.
18133 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
18135         * ob-ref.el (org-babel-ref-index-list): Special handling of hline
18136         rows.
18138 2011-07-28  Julien Danjou  <julien@danjou.info>
18140         * org-macs.el (org-with-point-at): Store evaluated version of
18141         pom.  This fixes a potential bug when using (org-with-point-at
18142         (func) …), where (func) would be evaluated multiple times,
18143         therefore might return different results if a marker was returned
18144         and different each time.
18146 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18148         * org.el (org-open-at-point): If a link to a radio target is the
18149         first, (resp. the last), element of a buffer, function cannot find
18150         the property change required to get its boundaries, and
18151         `buffer-substring' is called with an invalid nil argument.
18153 2011-07-28  Bastien Guerry  <bzg@gnu.org>
18155         * org-table.el (org-table-copy-down): Fix docstring.
18157 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
18159         * ob-latex.el (org-babel-execute:latex): Add imagemagick options,
18160         and for file types other than png and PDF it uses imagemagick to
18161         convert a compiled PDF file to the desired file type.
18162         (convert-pdf): Convert a PDF file to a new file type using
18163         imagemagick.
18165 2011-07-28  Puneeth Chaganti  <punchagan@gmail.com>
18167         * org-capture.el (org-capture-fill-template): Fix bug with the
18168         display of interactive prompt in templates expansion.
18170 2011-07-28  Reiner Steib  <reiner.steib@gmx.de>
18172         * org-clock.el (org-clock-display): Document how to remove subtree
18173         times.
18175 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
18177         * org-exp-blocks.el (org-export-blocks-format-comment):
18178         Explicitly append a newline to the body.
18180 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18182         * org-list.el (org-list-insert-item): When computing size of item
18183         being inserted, function has to take into account that indentation
18184         may not only be made of spaces.
18186 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18188         * org-clock.el (org-clock-find-position): If a list was adjacent
18189         to some clocks and a drawer was going to be created, only the
18190         first element of the list would make it into the drawer.
18192 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18194         * org-list.el (org-toggle-checkbox): Fix bug where top item in
18195         list was omitted when checking boxes.
18197 2011-07-28  Dan Davison  <dandavison7@gmail.com>
18199         * ob-R.el: Don't print result to echo area after evaluation.
18201 2011-07-28  Bastien Guerry  <bzg@gnu.org>
18203         * org-capture.el (org-capture-refile): Fix typo in docstring.
18205 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
18207         * ob-calc.el (org-babel-execute:calc): Call out to new function
18208         for variables resolution.
18209         (ob-calc-maybe-resolve-var): Resolve (possibly recursively)
18210         variables in calc expressions.
18212 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
18214         * ob-C.el (org-babel-tangle-lang-exts): Replace "c++" with "C++".
18215         (org-babel-C++-compiler): Replace "c++" with "C++".
18216         (org-babel-execute:cpp): Replace "c" with "C++".
18217         (org-babel-execute:C++): Replace "c" with "C++".
18218         (org-babel-expand-body:C++): Replace "c" with "C++".
18219         (org-babel-C-execute): Replace "c" with "C++".
18221 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
18223         * ob-ref.el (org-babel-ref-at-ref-p): Only try to read results as
18224         a list if at the *beginning* of a list item.
18226         * ob.el (org-babel-read-result): Only try to read results as a
18227         list if at the *beginning* of a list item.
18229 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18231         * org-list.el (org-cycle-item-indentation): Do not break an
18232         indentation cycle because visibility cycling is requested.
18233         This happens when an item becomes a parent, due to indentation change.
18234         Not considered empty anymore, the function cannot change its
18235         indentation again.
18237 2011-07-28  Bastien Guerry  <bzg@gnu.org>
18239         * org-clock.el (org-clocktable-write-default): Bugfix: falls back
18240         on `org-export-default-language' when no :lang parameter is set.
18242 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
18244         * org-capture.el (org-capture-expand-file): New function.
18245         (org-capture-target-buffer):
18246         (org-capture-set-target-location): Use `org-capture-expand-file'.
18248 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
18250         * ob.el (org-babel-read-list): Reading the value of a list has
18251         been updated to reflect the new structure of org-mode lists in
18252         elisp.
18253         (org-babel-insert-result): Writing code block results to lists has
18254         been updated to reflect the new list structure.
18255         (org-babel-result-end): Remove a previous change to end-of-list
18256         marker detection.
18258 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18260         * org-list.el (org-cycle-item-indentation): Each time the function
18261         moves item back to child position, a white space is added to the
18262         line.
18264 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
18266         * ob.el (org-babel-process-params): Allow elisp code in
18267         specification of results header arguments.
18269 2011-07-28  Bastien Guerry  <bzg@gnu.org>
18271         * org-agenda.el (org-agenda-append-agenda): New command.
18272         (org-agenda-mode-map): New keybinding to this new command.
18274 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18276         * org.el (org-ctrl-c-ctrl-c): Call `org-list-send-list' only when
18277         cursor it at very first item of the list, as specified in the
18278         manual.  Also refactored the list part of the function a bit.
18280 2011-07-28  Bastien Guerry  <bzg@gnu.org>
18282         * org-agenda.el (org-agenda): Set the 'last-args property to nil
18283         when calling `org-agenda'.  Don't kill the local variable
18284         `org-agenda-current-span'.
18285         (org-run-agenda-series): Use the new property 'last-args.
18286         (org-agenda-change-time-span): Use the dynamically set
18287         `org-agenda-overriding-arguments' variable when non-nil.
18289 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
18291         * ob.el (org-babel-result-end): Adjust marker of list end to
18292         changes in the list format.
18294 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18296         * org-list.el (org-toggle-checkbox, org-update-checkbox-count):
18297         No need to wrap `org-entry-get' in `ignore-errors'.
18299 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18301         * org.el (org-toggle-item, org-toggle-heading): Make sure every
18302         sub-item in a list is changed into a sub-heading and sub-headings
18303         are translated into sub-items.  Also ignore inline tasks in the
18304         process.
18306 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18308         * org-exp.el (org-export-select-backend-specific-text):
18309         Add `original-indentation' property when replacing #+begin_backend and
18310         #+backend blocks with their content.  This is needed for lists, as
18311         they must know if the block belonged to them.
18313 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18315         * org-html.el (org-html-export-list-line): Insert a newline
18316         character before ending an item, as anchor could be on a line
18317         going to be deleted, like a drawer ending string.
18319         * org-list.el (org-list-to-html): Same.
18321 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18323         * org.el (org-set-autofill-regexps): Use `org-item-re' in
18324         `paragraph-start' to recognize alphabetical lists.
18325         (org-fill-paragraph): Enforce a pre-computed fill-prefix before
18326         calling `fill-paragraph' when point is in an item.  Also prevent
18327         paragraphs getting merged into an adjacent list upon filling.
18328         (org-adaptive-fill-function): Make sure to determine real
18329         fill-prefix for auto-fill.
18330         (org-auto-fill-function): Use a pre-computed fill-prefix before
18331         calling `do-auto-fill'.
18333         * org-list.el (org-list-item-body-column): New function.
18335 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18337         * org-inlinetask.el (org-inlinetask-at-task-p)
18338         (org-inlinetask-toggle-visibility): New functions.
18340         * org-list.el (org-list-set-item-visibility): New function.
18342         * org.el (org-cycle, org-cycle-internal-local): Separate lists and
18343         inline tasks from headlines.
18344         (org-outline-level): Do not consider lists as headlines.
18345         Cycling visibility is using different tools.
18347 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18349         * org-list.el (org-list-struct): Mark items less indented than top
18350         item of the list, so that they will be modified.
18351         (org-list-struct-apply-struct): Compare struct's indentation with
18352         line's indentation instead of old-struct's.  This is needed
18353         because `org-list-struct' automatically fixes indentation so
18354         changes might not be seen otherwise.
18356         * org.el (org-ctrl-c-ctrl-c): Small refactoring.
18358 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18360         * org-list.el (org-update-checkbox-count): When a part of the
18361         buffer is processed to count checkboxes, lists are read from top
18362         to bottom, but inside lists (in drawers, blocks, or inline tasks)
18363         are skipped.  Thus, cookies cannot be updated.  This patch
18364         enforces reading of such lists if counter is itself in a special
18365         context.
18367 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18369         * org-list.el (org-list-struct-apply-struct): Inline tasks along
18370         with their content must stay at column 0 even if the item is
18371         gaining indentation.  Moreover, fix indentation of text in an
18372         inline task, now it can be in such a task within a list.
18374 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18376         * org-list.el (org-at-item-p): Also verify context is valid.
18377         Otherwise it would recognize valid items where `org-in-item-p'
18378         wouldn't.
18379         (org-in-item-p, org-list-struct-apply-struct): Use shorter version
18380         of org-at-item-p.
18381         (org-cycle-list-bullet): Fix typo.
18382         (org-list-parse-list): Avoid calling `org-at-item-p' two times by
18383         using an appropriate regexp.
18385         * org.el (org-indent-line-function): Use an appropriate regexp
18386         instead of calling `org-at-item-p' two times.
18388 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18390         * org-list.el (org-in-item-p): When point was just after
18391         org-list-end-re, check wouldn't be done for starting line.  So, if
18392         the first line was an item, it wouln't be noticed and function
18393         would return nil.  Simplify and comment code.
18395 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18397         * org.el (org-toggle-item): When used on normal text, ensure every
18398         line in region is included in the new item, regardless of its
18399         original indentation.
18401 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18403         * org-list.el (org-list-struct-apply-struct): If end of list was
18404         at eol, for example, with list inside a block, the last list
18405         wouldn't be shifted.  Thus, the patch ensures no blank lines is
18406         skipped.
18408 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18410         * org.el (org-toggle-item): Now accepts a prefix argument.
18411         When used without argument on normal text, it will make the whole
18412         region one item.  With an argument, it defaults to old behavior:
18413         change each line in region into an item.
18415 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18417         * org.el (org-return): When called from inside an item with the
18418         indent flag, function should keep text moved inside the item.
18419         This allows to use C-j to separate lines in an item: cursor won't
18420         go back to column 0.
18422 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18424         * org-list.el (org-list-struct): When a line has org-example
18425         property, skip the entire block.  This is needed during export,
18426         for example when src blocks in org markup contain lists, and are
18427         returned verbatim because org isn't in the list of interpreted
18428         languages.
18430 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18432         * org-list.el (org-in-item-p): Handle special cases when function
18433         is called with cursor amidst `org-list-end-re' or at an inline
18434         task.
18436 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18438         * ob.el (org-babel-result-end): Apply renaming.
18440         * org-exp.el (org-export-mark-list-properties): Apply renaming.
18442         * org-list.el (org-list-prevs-alist): Rename from
18443         `org-list-struct-prev-alist'.
18444         (org-list-parents-alist): Rename from `org-list-struct-parent-alist'.
18445         (org-list-write-struct): Rename from `org-list-struct-fix-struct'.
18446         (org-list-parse-list, org-sort-list, org-list-indent-item-generic)
18447         (org-toggle-checkbox, org-update-checkbox-count)
18448         (org-cycle-list-bullet, org-list-repair, org-insert-item)
18449         (org-move-item-up, org-move-item-up, org-move-item-down)
18450         (org-next-item, org-previous-item, org-end-of-item-list)
18451         (org-beginning-of-item-list, org-apply-on-list): Apply renaming.
18452         (org-get-bullet): Remove function, as it is not needed anymore.
18454 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18456         * org-list.el (org-list-insert-item-generic): Change arguments.
18457         The function now accepts structure and previous items alist.
18458         This allows to insert an item programmatically more easily.
18459         (org-insert-item): Apply changes to
18460         `org-list-insert-item-generic'.  The function now takes care about
18461         repairing structure and updating checkboxes.
18463         * org-timer.el (org-timer-item): Apply changes to
18464         `org-list-insert-item-generic'.  The function now takes care about
18465         repairing structure.
18467 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18469         * org-list.el (org-list-make-subtree): Function now uses
18470         `org-list-parse-list mechanism'.
18471         (org-list-make-subtrees): Remove function.
18472         (org-list-to-generic): Add a parameter and every parameter can
18473         be a sexp returning a string, for finer control.
18474         (org-list-to-html, org-list-to-latex, org-list-to-texinfo):
18475         Slight modifications to apply changes to `org-list-to-generic'.
18476         (org-list-to-subtree): New function.
18478 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18480         * org.el (org-beginning-of-line): Apply changes to
18481         `org-item-beginning-re' to correct sub-expression reference.
18483 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18485         * org-docbook.el (org-export-docbook-list-line): Even with
18486         alphabetical lists, Org shouldn't enforce a particular list type
18487         to exporters.  This is a job for style files.
18489         * org-html.el (org-html-export-list-line): Ib idem.
18491 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18493         * org-list.el (org-at-item-counter-p): New function.
18494         (org-list-parse-list): Handle counters and list depth.
18495         (org-list-to-generic): A special string is used when an item has a
18496         counter.
18497         (org-list-to-latex): Use new special string for counters.
18498         This fixes the counter bug in LaTeX export, as the enumi counter was
18499         the only one modified.
18501         * org-latex.el (org-export-latex-lists): Use new
18502         `org-list-parse-list' output.
18504 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18506         * org-list.el (org-list-get-list-type): New function.
18507         (org-list-parse-list): Use new function.
18509         * org-html.el (org-html-export-list-line): Use new function.
18511         * org-docbook.el (org-export-docbook-list-line): Use new function.
18513 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18515         * org-list.el (org-alphabetical-lists): New variable
18516         (org-item-re, org-list-full-item, org-cycle-list-bullet)
18517         (org-list-struct-fix-bul, org-list-inc-bullet-maybe):
18518         Reflect introduction of the new variable.
18519         (org-item-beginning-re): Change into a function, so any
18520         modification of `org-alphabetical-lists' will not require
18521         reloading Org.
18522         (org-at-item-p, org-toggle-checkbox, org-update-checkbox-count)
18523         (org-list-parse-list, org-list-send-list): Reflect changes to
18524         `org-item-beginning-re'.
18525         (org-list-use-alpha-bul-p): New function.
18527         * org.el (org-check-for-hidden): Reflect changes to
18528         `org-item-beginning-re'.
18530         * org-capture.el (org-capture-place-item): Reflect changes to
18531         `org-item-beginning-re'.
18533         * org-docbook.el (org-export-docbook-list-line): Handle New type
18534         of items.
18536         * org-exp.el (org-export-mark-list-end)
18537         (org-export-mark-list-properties): Reflect changes to
18538         `org-item-beginning-re'.
18540         * org-html.el (org-html-export-list-line): Handle new type of
18541         items.
18543         * org-latex.el (org-export-latex-lists): Handle new type of items
18544         and reflect changes to `org-item-beginning-re'.
18546         * org-ascii.el (org-export-ascii-preprocess): Handle new counters.
18548 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18550         * org-list.el (org-list-end-re): Remove function and made it a
18551         variable.  There's no need for the overhead of calling the
18552         function every at every line in a list.  User will have to reload
18553         Org if he change value of either `org-list-end-regexp' or
18554         `org-empty-line-terminates-plain-lists'.
18555         (org-in-item-p, org-list-struct, org-list-parse-list): Apply change.
18557         * org-exp.el (org-export-mark-list-end)
18558         (org-export-mark-list-properties): Apply change.
18560         * org-latex.el (org-export-latex-lists): Apply change.
18561         Also prevent items with org-example property to be considered as real
18562         items.
18564 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18566         * org-inlinetask.el (org-inlinetask-export-templates): Slightly
18567         modify templates so environment boundaries don't interfere with
18568         content of task.  Unprotect content of task so it might benefit
18569         from further transformations.  Set original-indentation property to
18570         a high value to ensure that task is always in the last item of the
18571         list.  Also, apply templates later in export process.
18573         * org-list.el (org-list-struct): Fix inline task skipping.
18575 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18577         * org-latex.el (org-export-latex-lists): Search for unprotected
18578         items only, and redefine `org-at-item'.  This change is required
18579         when verbatim lists are inserted during export, usually by Babel.
18581 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18583         * ob.el (org-babel-result-end): End position is end of current
18584         sublist instead of bottom point, as results might be inserted in a
18585         list themselves.
18587 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18589         * org-list.el (org-list-automatic-rules): Remove insert rule.
18590         (org-list-insert-item-generic): Remove code preventing user to
18591         insert another item in a block within a list.  It is because new
18592         list context make it impossible to see if a point in a block is
18593         also in a list.
18595 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18597         * org-exp.el (org-export-preprocess-string): Mark list endings
18598         before babel blocks preprocessing starts, so blank lines that may
18599         be inserted do not break list's structure.  Then, mark list with
18600         special properties required by exporters.  Thus output from babel
18601         can easily be included in lists.
18602         (org-export-mark-list-end): New function.
18603         (org-export-mark-list-properties): New function.
18604         (org-export-mark-lists): Remove function.  It was split into the
18605         two preceding functions.
18607 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18609         * org-list.el (org-update-checkbox-count): Do not recompute every
18610         list before next heading when there are more than one cookie in an
18611         headline.  Moreover, ignore the case where cookie is inserted
18612         neither at an heading nor at an item.
18614 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18616         * org-list.el (org-sort-list): Fix number of arguments to
18617         `org-list-repair', plus make `end-record' go to end of item before
18618         any blank line to keep them from being swallowed in the sorting.
18620 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18622         * org-list.el (org-list-forbidden-blocks): Rename from
18623         `org-list-blocks'.
18624         (org-list-export-context): New variable.
18626 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18628         * org-list.el (org-list-search-generic): Rename form
18629         `org-search-unenclosed-generic' to reflect the new behavior.  Now,
18630         match can only be in a valid context for lists, as determined by
18631         `org-list-context'.
18632         (org-list-search-backward): Rename from
18633         `org-search-backward-unenclosed'.
18634         (org-list-search-forward): Rename from
18635         `org-search-forward-unenclosed'.
18636         (org-toggle-checkbox, org-update-checkbox-count): Use new
18637         functions.
18638         (org-sort-list): Using default regexp search functions as context
18639         is not required in this case.
18641 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18643         * org-exp.el (org-export-mark-lists): New function, replacing
18644         org-export-mark-list-ending.  It adds information as text
18645         properties to every list, before changes done by exporter destruct
18646         them.
18648 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18650         * org-list.el (org-list-get-first-item): New alias for
18651         `org-list-get-list-begin'.
18652         (org-list-get-last-item): New function.
18653         (org-list-get-list-end): Use `org-list-get-last-item'.
18655 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18657         * org.el (org-get-string-indentation): Move in generally useful
18658         functions section, as it wasn't specific to plain lists and that
18659         no code was using it in org-list.el.
18661 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18663         * org.el (org-skip-over-state-notes, org-store-log-note): Use new
18664         accessors.
18666 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18668         * org-list.el (org-list-indent-item-generic): Remove error
18669         messages happening before process.  This belongs to interactive
18670         functions.
18671         (org-indent-item, org-indent-item-tree)
18672         (org-outdent-item, org-outdent-item-tree): Ensure point or region
18673         is correct before computing list structure.  Return an error
18674         message otherwise.
18676 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18678         * org-list.el (org-apply-on-list): Use new structures.
18679         Function is now applied in reverse order so modifications do not change
18680         positions of items in buffer.
18682 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18684         * org-list.el (org-list-parse-list): Rewrite of function to allow
18685         text following a sub-list in the same item.  See docstring for an
18686         example of output.
18687         (org-list-to-generic): Use new parsing function.
18688         (org-list-to-latex, org-list-to-html): Minor change for clearer
18689         export.
18691 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18693         * org-list.el (org-list-has-child-p): Rename from
18694         `org-list-get-child'.  Returning first child is only useful as a
18695         predicate, as we are allowing an item to have more than one
18696         sub-list.
18697         (org-list-indent-item-generic): Use `org-list-has-child-p' instead
18698         of org-list-get-child.
18699         (org-in-item-p): Also return item beginning when list starts at
18700         context beginning.
18701         (org-list-get-parent): Use of `org-list-struct-parent-alist'
18702         helper function is not optional anymore.
18703         (org-list-get-all-items): Shorten code with the help of cl.el.
18704         (org-list-get-children): Now returns all children of item, even if
18705         they do not belong to the same list.  Renamed from
18706         `org-list-get-all-children'.
18707         (org-list-get-list-begin): Function wasn't return value when item
18708         was already the first item of the list at point.
18709         (org-list-get-list-end): Function wasn't return value when item
18710         was already the last item of the list at point.
18711         (org-list-struct-fix-box, org-update-checkbox-count): Now uses
18712         `org-list-get-children'.
18714 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18716         * org.el (org-indent-line-function): Indentation of item's body
18717         starts just after the bullet, not after a checkbox.  Moreover, As
18718         `org-in-item-p' also returns item beginning position when point is
18719         in a list, do not compute it a second time.
18721 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18723         * org.el (org-ctrl-c-ctrl-c): When called at a list item, replace
18724         usage `org-repair-list', forcing another reading of the list, with
18725         only needed subroutines.
18727 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18729         * org-list.el (org-list-separating-blank-lines-number): Use new
18730         accessors.
18731         (org-list-insert-item-generic): Use list structures to insert a
18732         new item.
18733         (org-list-exchange-items): Refactor and comment code.  Now return
18734         new struct instead of modifying it, as list sorting would
18735         sometimes eat first item.
18736         (org-move-item-down, org-move-item-up): Reflect changes to
18737         `org-list-exchange-items'.
18738         (org-insert-item): As `org-in-item-p' also computes item beginning
18739         when applicable, reuse the result.
18741 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18743         * org-list.el (org-list-in-item-p): Unify methods for this
18744         predicate.
18745         (org-list-in-item-p-with-indent): Remove function.
18746         (org-list-ending-between): Remove function.
18747         (org-list-maybe-skip-block): Remove function.
18748         (org-list-in-item-p-with-regexp): Remove function.
18749         (org-list-top-point-with-regexp): Remove function.
18750         (org-list-top-point-with-indent): Remove function.
18751         (org-list-bottom-point-with-indent): Remove function.
18752         (org-list-bottom-point-with-regexp): Remove function.
18753         (org-list-get-item-same-level): Remove function.
18754         (org-list-top-point): Remove function.
18755         (org-list-bottom-point): Remove function.
18756         (org-get-item-beginning): Rename to `org-list-get-item-begin' to
18757         be consistent with naming policy of non-interactive functions.
18758         (org-get-beginning-of-list): Remove function.
18759         (org-beginning-of-item-list): Use new accessors.
18760         (org-get-end-of-list): Remove function.
18761         (org-end-of-list): Use new accessors.
18762         (org-get-end-of-item): Remove function.
18763         (org-end-of-item): Use new accessors.
18764         (org-get-previous-item): Remove function.
18765         (org-previous-item): Use new accessors.
18766         (org-get-next-item): Remove function.
18767         (org-next-item): Use new accessors.
18768         (org-list-get-item-end-before-blank): Use new accessors.
18770 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18772         * org-list.el (org-list-repair): Remove optional argument
18773         FORCE-BULLET.  The job of this interactive function is to
18774         completely fix a list at point.  Changing bullets is a separate
18775         task.  Also removed others optional arguments TOP and BOTTOM to
18776         follow the new structures.
18777         (org-list-indent-item-generic): Remove need for TOP and BOTTOM.
18778         STRUCT is a new required argument.  This avoids computing a list
18779         structure many times when function is called more than once in a
18780         row, for example in `org-cycle-item-indentation'.  Use new
18781         accessors.  Now, also call `org-update-checkbox-count-maybe'.
18782         (org-outdent-item, org-indent-item, org-outdent-item-tree)
18783         (org-indent-item-tree): Remove need for TOP and BOTTOM.
18784         (org-list-insert-item-generic): Reflect changes to `org-list-repair'.
18785         (org-list-exchange-items): Use new accessors.  Now modify struct
18786         to avoid re-reading it later.
18787         (org-move-item-down): Reflect changes to `org-list-repair'.
18788         Use new accessors.
18789         (org-move-item-up): Reflect changes to `org-list-repair'.  Use new
18790         accessors.
18791         (org-cycle-list-bullet): Use new structures.  Also use a shortcut
18792         to `org-list-struct-fix-struct' in order to avoid unnecessary
18793         fixes, like `org-list-struct-fix-box'
18794         (org-sort-list): Use of new structures.  Renamed an internal
18795         function for a little more clarity.
18796         (org-cycle-item-indentation): Remove dependency on
18797         `org-list-repair'.  Use new accessors.
18798         (org-list-get-child): Correct bug when asking for the child of the
18799         last item.
18800         (org-list-exchange-items): Use new accessors.
18802 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18804         * org-list.el (org-list-blocks): New variable.
18805         (org-list-context): New function.
18806         (org-list-full-item-re): New variable.
18807         (org-list-struct-assoc-at-point): Use new variable.
18808         (org-list-struct): Rewrite of function.  Now, list data is
18809         collected by looking at the list line after line.  It reads the
18810         whole list each time because reading only a subtree was not enough
18811         for some operations, like fixing checkboxes.  It also removes the
18812         need to get `org-list-top-point' and `org-list-bottom-point'
18813         first.  An added data is the position of item ending.  This aims
18814         to be able to have list followed by text inside an item.
18815         (org-list-struct-assoc-end): New function.
18816         (org-list-struct-parent-alist): New function.
18817         (org-list-get-parent): New function.
18818         (org-list-get-child): New function.
18819         (org-list-get-next-item): New function.
18820         (org-list-get-prev-item): New function.
18821         (org-list-get-subtree): Use helper function `org-list-struct-prev-alist'.
18822         (org-list-get-all-items): New function.
18823         (org-list-get-all-children): New function.
18824         (org-list-get-top-point): New function.
18825         (org-list-get-bottom-point): New function.
18826         (org-list-get-counter): New function.
18827         (org-list-get-item-end): New function.
18828         (org-list-struct-fix-bul): Rewrite for cleaner code.  Make use of
18829         new accessors.
18830         (org-list-struct-fix-ind): Make use of new accessors.
18831         (org-list-struct-fix-box): New function.
18832         (org-list-struct-fix-checkboxes): Remove function.
18833         (org-list-struct-outdent): Use new accessors.  Use the fact that
18834         there is no longer a virtual item at beginning of structure.
18835         (org-list-struct-indent): Use helper functions
18836         `org-list-struct-prev-alist' and `org-list-struct-parent-alist'.
18837         Also use new accessors.
18838         (org-list-struct-fix-struct): Comment function.  Call directly
18839         `org-list-struct-apply-struct', without removing unchanged items
18840         first.
18841         (org-list-struct-apply-struct): Comment function.  Rewrite using
18842         new accessors.  Use new variable `org-list-full-item-re'.
18843         (org-list-shift-item-indentation): Remove function, now included
18844         in `org-list-struct-apply-struct' because it is too specific.
18846 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18848         * org-list.el (org-toggle-checkbox): Use structures to fix
18849         checkboxes of a list.
18850         (org-update-checkbox-count): Use structures to update cookies.
18852 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18854         * org-list.el (org-list-struct-fix-checkboxes): New function.
18855         (org-checkbox-blocked-p): Remove function.
18857 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18859         * org-list.el (org-list-get-all-items): New function.
18860         (org-list-get-all-children): New function.
18861         (org-list-get-nth): New function.
18862         (org-list-set-nth): New function.
18863         (org-list-get-ind): New function.
18864         (org-list-set-ind): New function.
18865         (org-list-get-bullet): New function.
18866         (org-list-set-bullet): New function.
18867         (org-list-get-checkbox): New function.
18868         (org-list-set-checkbox): New function.
18869         (org-list-struct-fix-bul): Use new accessors.
18870         (org-list-repair): Use new accessors.
18871         (org-list-indent-item-generic): Make use of accessors.
18872         (org-list-get-parent): Rename from `org-list-struct-get-parent'.
18873         (org-list-get-child): Rename from `org-list-struct-get-child'.
18874         (org-list-struct-fix-ind): Make use of accessors.
18875         (org-list-get-next-item): New function.
18876         (org-list-get-subtree): New function.
18878 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
18880         * org-list.el (org-list-struct-assoc-at-point): Add checkbox to
18881         list structure.
18883         * org-list.el (org-list-struct-assoc-at-point): Add checkbox as
18884         value in structure.
18886         * org-list.el (org-list-struct-apply-struct): Also apply
18887         checkboxes.
18889 2011-07-28  Bastien Guerry  <bzg@gnu.org>
18891         * org-latex.el (org-export-latex-content): Bind local variables
18892         for export in the temporary export buffer.
18894 2011-07-28  David Maus  <dmaus@ictsoc.de>
18896         * org-protocol.el (org-protocol-unhex-single-byte-sequence)
18897         (org-protocol-unhex-string, org-protocol-unhex-compound):
18898         Change date of obsolete declaration to 2011-02-17.
18900 2011-07-28  David Maus  <dmaus@ictsoc.de>
18902         * org.el (org-link-escape): Throw error if encoding character in
18903         utf8 fails.
18905 2011-07-28  David Maus  <dmaus@ictsoc.de>
18907         * org-protocol.el (org-protocol-split-data)
18908         (org-protocol-open-source): Use `org-link-unescape' instead of
18909         obsolete unhex string function.
18911 2011-07-28  David Maus  <dmaus@ictsoc.de>
18913         * org.el (org-link-escape, org-link-escape-chars-browser)
18914         (org-link-escape-chars): Always percent escape the percent sign.
18916 2011-07-28  David Maus  <dmaus@ictsoc.de>
18918         * org.el (org-link-unescape): Simpler algorithm for replacing
18919         percent escapes.
18920         (org-link-unescape-compound): Use cond statements instead of nested
18921         if, convert hex string with string-to-number, save match data.
18922         (org-link-unescape-single-byte-sequence): Use mapconcat and
18923         string-to-number for unescaping single byte sequence.
18925 2011-07-28  David Maus  <dmaus@ictsoc.de>
18927         * org.el (org-link-escape): Rename lambda argument.
18929 2011-07-28  David Maus  <dmaus@ictsoc.de>
18931         * org.el (org-link-escape-chars-browser, org-link-escape-chars):
18932         Add percent sign to list of escape chars.
18934 2011-07-28  David Maus  <dmaus@ictsoc.de>
18936         * org-mobile.el (org-mobile-escape-olp): Use new percent escape
18937         character table format.
18939 2011-07-28  David Maus  <dmaus@ictsoc.de>
18941         * org-mobile.el (org-mobile-locate-entry): Remove obsolete
18942         argument in call to org-link-unescape.
18944 2011-07-28  David Maus  <dmaus@ictsoc.de>
18946         * org-protocol.el (org-protocol-unhex-string)
18947         (org-protocol-unhex-compound)
18948         (org-protocol-unhex-single-byte-sequence): Declare obsolete and
18949         alias to respective org-link-unescape-* functions.
18951 2011-07-28  David Maus  <dmaus@ictsoc.de>
18953         * org.el (org-link-unescape, org-link-unescape-compound)
18954         (org-link-unescape-single-byte-sequence): Functions moved and renamed
18955         from org-protocol.el.
18957 2011-07-28  David Maus  <dmaus@ictsoc.de>
18959         * org-macs.el (org-char-to-string): Inline function to properly
18960         decode utf8 characters in Emacs 22.  Moved and renamed from
18961         org-protocol.el.
18963 2011-07-28  David Maus  <dmaus@ictsoc.de>
18965         * org.el (org-link-escape): New optional argument.  Merge user
18966         table with default table.
18968 2011-07-28  David Maus  <dmaus@ictsoc.de>
18970         * org.el (org-link-escape): Fixup doc string.
18972 2011-07-28  David Maus  <dmaus@ictsoc.de>
18974         * org.el (org-link-escape-chars, org-link-escape-chars-browser):
18975         New format of percent escape table.
18976         (org-link-escape): Use new table format.
18978 2011-07-28  David Maus  <dmaus@ictsoc.de>
18980         * org.el (org-link-escape): New Unicode aware percent encoding
18981         algorithm.
18983 2011-07-28  Sebastian Rose  <sebastian_rose@gmx.de>
18985         * org-protocol.el (org-protocol-unhex-single-byte-sequence):
18986         New function.  Decode hex-encoded singly byte sequences.
18987         (org-protocol-unhex-compound): Use new function if decoding sequence
18988         as Unicode character failed.
18990 2011-07-28  Bastien Guerry  <bzg@gnu.org>
18992         * org-html.el (org-export-as-html): Expand the HTML title.
18994 2011-07-28  Bastien Guerry  <bzg@gnu.org>
18996         * org-publish.el (org-publish-cache-ctime-of-src):
18997         Improve docstring.
18998         (org-publish-find-title): New option to explicitly reset the title
18999         in the cache.
19000         (org-publish-format-file-entry): Use this new option.
19002 2011-07-28  Dan Davison  <dandavison7@gmail.com>
19004         * org-exp.el (org-export-preprocess-string): Set the source buffer
19005         and use `org-clone-local-variables' to get local variables from
19006         it.
19008 2011-07-28  Dan Davison  <dandavison7@gmail.com>
19010         * org-exp.el (org-export-format-source-code-or-example):
19011         Allow empty string as second element in minted/listings options.
19013 2011-07-28  Dan Davison  <dandavison7@gmail.com>
19015         * org-exp.el (org-export-format-source-code-or-example):
19016         Support new user-customizable options.
19017         (org-export-latex-custom-lang-environments): Ensure new variable
19018         is defined.
19019         (org-export-latex-listings-options): Ensure new variable is defined.
19020         (org-export-latex-minted-options): Ensure new variable is defined.
19022 2011-07-28  Bastien Guerry  <bzg@gnu.org>
19024         * org-html.el (org-export-as-html): Handle the case when
19025         `org-export-html-validation-link' is nil to keep backward
19026         compatible with the old default value of this variable.
19028 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
19030         * ob.el (org-babel-insert-result): Don't choke if indent is not a
19031         number.
19033 2011-07-28  Christian Moe  <mail@christianmoe.com>  (tiny change)
19035         * org-bbdb.el (org-bbdb-export): When a link description has been
19036         added by `org-export-normalize-links', use path instead (remove
19037         the `bbdb:' prefix).
19039 2011-07-28  Bastien Guerry  <bzg@gnu.org>
19041         * org-ascii.el (org-export-ascii-underline): Put the level's
19042         characters in the right order, as documented by the docstring.
19043         (org-ascii-level-start): Select the right char for underlining
19044         headlines.
19046 2011-07-28  Bastien Guerry  <bzg@gnu.org>
19048         * org-src.el (org-edit-src-code): Allow to edit source code from
19049         modes derived from Org.
19051 2011-07-28  Niels Giesen  <niels.giesen@gmail.com>
19053         * org-clock.el (org-clock-clocktable-language-setup): Add list of
19054         dutch strings.
19056 2011-07-28  Dan Davison  <dandavison7@gmail.com>
19058         * org-beamer.el: Mark frame as fragile when it is using minted for
19059         src block export.
19061 2011-07-28  Bastien Guerry  <bzg@gnu.org>
19063         * org-agenda.el (org-agenda-date-later)
19064         (org-agenda-date-earlier): Enhance docstrings.
19065         (org-agenda-bulk-mark-regexp): Only match against headlines.
19066         Send a message when no entry is marked.
19067         (org-agenda-bulk-action): Fix bug about scattering deadlines.
19068         Send an error when trying to scatter outside an agenda or a
19069         timeline view.  Silently fail when trying to scatter sexp entries.
19071 2011-07-28  Bastien Guerry  <bzg@gnu.org>
19073         * org-clock.el (org-clock-clocktable-language-setup): New custom
19074         variable.
19075         (org-clocktable-defaults): Set the default language.
19076         (org-clocktable-write-default): Use the new variable.
19078 2011-07-28  Dan Davison  <dandavison7@gmail.com>
19080         * ob.el (org-babel-src-block-names): Don't strip text properties
19081         from search hits.
19082         (org-babel-result-names): Don't strip text properties from search
19083         hits.
19085 2011-07-28  Dan Davison  <dandavison7@gmail.com>
19087         * ob-python.el (org-babel-python-evaluate-session): Pass nil as
19088         remove-echo part of META argument to
19089         `org-babel-comint-with-output'.
19091 2011-07-28  Dan Davison  <dandavison7@gmail.com>
19093         * ob.el (org-babel-script-escape): Use `substring' comparison
19094         instead of regexp matching.
19096 2011-07-28  Dan Davison  <dandavison7@gmail.com>
19098         * org-src.el (org-edit-src-code): When generating the code edit
19099         buffer, it is necessary for several variables to inherit their
19100         values from the parent org buffer.  These changes collect all such
19101         variables together into a single association list of
19102         `(variable-name value)' pairs.  In addition, a new variable is
19103         added to the list: `org-edit-src-content-indentation'.  This has
19104         the effect that a buffer local value can be used for that
19105         variable.
19107 2011-07-28  Dan Davison  <dandavison7@gmail.com>
19109         * ob-table.el (sbe): Don't truncate sbe results.
19111 2011-07-28  Lawrence Mitchell  <wence@gmx.li>
19113         * org-exp.el (org-export-add-options-to-plist): Require match to
19114         start at a word-boundary.
19116 2011-07-28  Bastien Guerry  <bzg@gnu.org>
19118         * org-latex.el (org-export-latex-hyperref-format):
19119         Update docstring.
19121 2011-07-28  Tom Dye  <tsd@tsdye.com>
19123         * org.el: Update documentation of `org-add-link-type'.
19125 2011-07-28  Dan Davison  <dandavison7@gmail.com>
19127         * org.el (org-open-at-point): Fix bug when using prefix arg to
19128         construct `org-link-search' call.  Rename prefix arg with a more
19129         generic name, to reflect its diverse uses in this function.
19131 2011-07-28  Rémi Vanicat  <vanicat@debian.org>
19133         * org-icalendar.el (org-icalendar-use-UTC-date-time): Remove.
19134         (org-icalendar-date-time-format): New custom variable.
19135         (org-icalendar-use-UTC-date-timep): New function.
19136         (org-ical-ts-to-string): Use the new variable.
19138 2011-07-28  Bastien Guerry  <bzg@gnu.org>
19140         * org-vm.el (org-vm-store-link): Make sure the buffer is
19141         associated with a file when trying to store an Org link.
19143 2011-07-28  Dan Davison  <dandavison7@gmail.com>
19145         * ob.el (org-babel-params-from-properties): Test for
19146         "header-arg-name" and ":header-arg-name", in that order.
19148 2011-07-28  Bastien Guerry  <bzg@gnu.org>
19150         * org-capture.el (org-capture-templates): Document "currentfile"
19151         for capture template.
19152         (org-capture-templates): Allow to use currentfile for capture
19153         templates.
19154         (org-capture-set-target-location): Handle currentfile as a way to
19155         setting the capture buffer.
19157 2011-07-28  Bastien Guerry  <bzg@gnu.org>
19159         * ob.el (org-babel-params-from-properties): Don't wrap
19160         `org-entry-get' into `condition-case'.
19162 2011-07-28  Dan Davison  <dandavison7@gmail.com>
19164         * org.el (org-entry-get): Don't look for a property drawer if we
19165         are before the first heading in the file.
19166         (org-entry-get-with-inheritance): Don't attempt to move up the
19167         tree if we are before the first heading in the file.  Also,
19168         enclose less of the function in the `save-excursion'.
19170 2011-07-28  Dan Davison  <dandavison7@gmail.com>
19172         * ob.el (org-babel-params-from-buffer): Return desired value
19173         rather than nil from failed re search.
19175 2011-07-28  Bastien Guerry  <bzg@gnu.org>
19177         * org-agenda.el (org-get-entries-from-diary): Put multiline diary
19178         entries on a single line when lines don't start with a diary time.
19180 2011-07-28  Bastien Guerry  <bzg@gnu.org>
19182         * org-html.el (org-export-html-protect-char-alist): New custom
19183         variable to define characters to be HTML protected.
19184         (org-html-protect): Use the new variable.
19186 2011-07-28  Bastien Guerry  <bzg@gnu.org>
19188         * org-info.el (org-info-store-link): Use "#" to separate the info
19189         file and the node.
19190         (org-info-follow-link): Use both "#" to separate the info file and
19191         the node.  Continue to use ":" for backward compatibility.
19193 2011-07-28  Bastien Guerry  <bzg@gnu.org>
19195         * org-icalendar.el (org-icalendar-honor-noexport-tag): New custom
19196         variable.
19197         (org-print-icalendar-entries): Use this new variable to prevent
19198         export of entries with a :noexport: tag.
19200 2011-07-28  Bastien Guerry  <bzg@gnu.org>
19202         * org-exp.el (org-export-initial-scope): New custom variable.
19203         (org-export): Use this new variable.  If there is an active
19204         region, tell it when prompting the user for an export command.
19205         Also change the way the function handles selection of buffer and
19206         subtree export.
19208 2011-07-28  Bastien Guerry  <bzg@gnu.org>
19210         * org-html.el (org-export-html-auto-preamble)
19211         (org-export-html-auto-postamble): Remove.
19212         (org-export-html-preamble, org-export-html-postamble): Turn into
19213         custom variables.  Update the docstrings.
19214         (org-export-html-preamble-format)
19215         (org-export-html-postamble-format): New custom variables.
19216         (org-export-as-html): Use `org-export-html-postamble-format' and
19217         `org-export-html-preamble-format'.
19218         (org-export-html-title-format): Delete.
19220 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
19222         * org-exp-blocks.el (org-export-blocks-format-ditaa):
19223         This function is begin deprecated in favor of begin_src blocks.
19224         (org-export-blocks-format-dot): This function is begin deprecated in
19225         favor of begin_src blocks.
19227 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
19229         * ob.el (org-babel-header-arg-names): no-expand is now part of the
19230         default header argument names list.
19232 2011-07-28  Manuel Giraud  <manuel.giraud@univ-nantes.fr>
19234         * org-publish.el (org-publish-sitemap-date-format)
19235         (org-publish-sitemap-file-entry-format): New custom variables.
19236         (org-publish-projects): Use these variables to format the sitemap
19237         entries.
19239 2011-07-28  Ulf Stegemann  <ulf-news@zeitform.de>
19241         * org-gnus.el (org-gnus-store-link): Allow `org-link' creation
19242         from `message-mode'.
19244 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
19246         * org-agenda.el (org-agenda-filter-by-tag): Refresh agenda when
19247         updating the filter while the clock report is following the
19248         filter.
19250 2011-07-28  Julien Danjou  <julien@danjou.info>
19252         * org-agenda.el (org-agenda): Kill all local variables.
19253         This assures we are not keeping buffer variable from an old agenda view
19254         when switching to a new custom agenda.
19256 2011-07-28  Julien Danjou  <julien@danjou.info>
19258         * org-crypt.el (org-encrypt-string): New function.
19259         (org-encrypt-entry): Use org-encrypt-string to encrypt, so we use
19260         cached crypted values.
19261         (org-decrypt-entry): Store crypted text in decrypted text.
19263 2011-07-28  Dan Davison  <dandavison7@gmail.com>
19265         * ob-exp.el (org-babel-exp-lob-one-liners): Only replace the match
19266         if a non-nil result is returned.
19268 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
19270         * org-agenda.el (org-agenda-get-day-entries): Compare DATE with
19271         modified today.
19273 2011-07-28  Bastien Guerry  <bzg@gnu.org>
19275         * org.el (org-update-parent-todo-statistics): Fix bug when
19276         updating statistics from the column view.
19278 2011-07-28  Bastien Guerry  <bzg@gnu.org>
19280         * org-agenda.el (org-agenda-bulk-mark-regexp): New command.
19281         (org-agenda-menu): Add the new command to the menu.
19282         (org-agenda-mode-map): Add % as the keybinding for the new
19283         command.
19285 2011-07-28  Bastien Guerry  <bzg@gnu.org>
19287         * org-exp.el (org-export-target-internal-links): Locally turn on
19288         `org-link-search-must-match-exact-headline' to match exact
19289         internal links.
19291 2011-07-28  Julien Danjou  <julien@danjou.info>
19293         * org-faces.el (org-special-keyword): Make it inherited from
19294         `font-lock-keyword-face'.
19296 2011-07-28  Julien Danjou  <julien@danjou.info>
19298         * org-faces.el (org-link): Make `org-link' inherits from `link'
19299         face.
19301 2011-07-28  Bastien Guerry  <bzg@gnu.org>
19303         * org.el (org-narrow-to-block): New function to narrow to block.
19304         Bound this function to `C-x n b'.
19306 2011-07-28  Bastien Guerry  <bzg@gnu.org>
19308         * org.el (org-schedule, org-deadline): Fix bug: take care of
19309         repeating timestamps like ".+1d/3d" or "+1d 10d".
19311 2011-07-28  Bastien Guerry  <bzg@gnu.org>
19313         * org-agenda.el (org-agenda-repeating-timestamp-show-all): Allow
19314         to use a list of TODO keywords as the value of this variable.
19315         The agenda will show repeating stamps for entries matching these TODO
19316         keywords.
19317         (org-agenda-get-timestamps, org-agenda-get-deadlines)
19318         (org-agenda-get-scheduled): Allow the use of a list of keywords in
19319         `org-agenda-repeating-timestamp-show-all'.
19321 2011-07-28  Bastien Guerry  <bzg@gnu.org>
19323         * org-latex.el (org-export-latex-emph-format): Don't use
19324         `org-export-latex-use-verb'.  Remove this variable.
19326 2011-07-28  Jason Dunsmore  <emacs-orgmode@dunsmor.com>  (tiny change)
19328         * org-html.el (org-html-handle-time-stamps): Fix bug when
19329         exporting inactive timestamps.
19331 2011-07-28  Bastien Guerry  <bzg@gnu.org>
19333         * org-archive.el (org-archive-save-context-info): Fix docstring
19334         typo.
19335         (org-archive-subtree-add-inherited-tags): New variable to control
19336         whether inherited tags should be appended to local tags when
19337         archiving subtrees.
19338         (org-archive-subtree): Use the new variable.
19340 2011-07-28  Bastien Guerry  <bzg@gnu.org>
19342         * org-archive.el (org-archive-save-context-info): Fix docstring.
19344 2011-07-28  Julien Danjou  <julien@danjou.info>
19346         * org-crypt.el (org-decrypt-entry): Delete \n on top level
19347         heading.  This avoids a display bug showing the heading outlined
19348         where the text is not since it does not have the outline property.
19349         Restore subtree visibility state after decryption.
19351 2011-07-28  Julien Danjou  <julien@danjou.info>
19353         * org-agenda.el (org-agenda-list): Use `org-agenda-current-span'
19354         as a possible default span if it is set.
19356 2011-07-28  Dan Davison  <dandavison7@gmail.com>
19358         * org-src.el (org-edit-src-persistent-message): Change docstring.
19359         (org-edit-src-code): Get rid of help message in echo area.
19361         * ob.el (org-babel-do-in-edit-buffer): Do not pass 'quietly
19362         argument to org-edit-src-code as this has been removed.
19364 2011-07-28  Bastien Guerry  <bzg@gnu.org>
19366         * org-latex.el (org-export-latex-emphasis-alist):
19367         Use \protectedtexttt for the =...= emphasis and \verb for the ~...~
19368         emphasis.
19369         (org-export-latex-use-verb): Now defaults to t.
19370         (org-export-latex-emph-format): Distinguish between =...= and
19371         ~...~ emphasis.
19373 2011-07-28  Julien Danjou  <julien@danjou.info>
19375         * org.el (org-link-expand-abbrev): Allow any type of character in
19376         link expand.
19378 2011-07-28  Dan Davison  <dandavison7@gmail.com>
19380         * ob-lob.el (org-babel-lob-ingest): Add prefix to file prompt.
19382 2011-07-28  Dan Davison  <dandavison7@gmail.com>
19384         * ob-ref.el (org-babel-ref-resolve): `save-window-excursion' when
19385         resolving references.
19387 2011-07-28  Bastien Guerry  <bzg@gnu.org>
19389         * org-html.el (org-export-html-html-helper-timestamp): Use <hr/>
19390         instead of <hr> to keep w3c validator happy.
19392 2011-07-28  Dan Davison  <dandavison7@gmail.com>
19394         * ob.el (org-babel-where-is-src-block-head): Detect src block if
19395         point is on a #+header line.
19397 2011-07-28  Dan Davison  <dandavison7@gmail.com>
19399         * ob.el (org-babel-where-is-src-block-head): Skip over intervening
19400         #+header lines when searching for block associated with block name
19401         line.
19403 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
19405         * ob.el (org-babel-result-end): Replace call to `org-in-item-p' to
19406         the more specific `org-at-item-p'.
19408 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
19410         * org-latex.el (org-latex-default-figure-position): New defcustom
19411         for default placement of latex figures.
19412         (org-export-latex-tables): Positioning tables using the new
19413         defcustom variable.
19414         (org-export-latex-format-image): Positioning images using the new
19415         defcustom variable.
19417 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
19419         * ob-ditaa.el (org-babel-execute:ditaa): Throw error when
19420         evaluated and :file header argument is missing.
19422 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
19424         * ob-exp.el (org-babel-exp-do-export): Simplify, no longer need
19425         to do anything to export code.
19426         (org-babel-exp-results): No longer returns a replacement for the
19427         code block.
19428         (org-babel-exp-inline-src-blocks): Simplify.
19429         (org-babel-exp-src-block): Remove unnecessary pluralization from
19430         function name.
19432 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
19434         * ob-exp.el (org-babel-exp-inline-src-blocks):
19435         Simplify exportation of inline code blocks using normal code block
19436         execution mechanism to insert results.
19437         (org-babel-exp-results): Results exportation mechanism is unified
19438         for both inline and regular code blocks.
19440         * ob.el (org-babel-where-is-src-block-result): Returns the point
19441         after an inline code block for inline code blocks.
19443 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
19445         * ob.el (org-babel-insert-result): Special handling of the
19446         position of results of inline code blocks.
19447         (org-babel-examplize-region): Now able to comment inline regions.
19449 2011-07-28  Lawrence Mitchell  <wence@gmx.li>
19451         * org-exp.el (org-export-with-LaTeX-fragments): Fix docstring so
19452         that \\[ a = b \\] is not interpreted as a keybinding by
19453         `substitute-command-keys'.
19455 2011-07-28  Dan Davison  <dandavison7@gmail.com>
19457         * org-latex.el (org-export-as-latex): Process export property list
19458         with `org-export-process-option-filters' early in latex export.
19460 2011-07-28  Julien Danjou  <julien@danjou.info>
19462         * org.el: Remove `org-invisible-p': `outline-invisible-p' is
19463         available in Emacs 22 and in recent XEmacs 21.  Replace in various
19464         files.
19466 2011-07-28  Julien Danjou  <julien@danjou.info>
19468         * org-agenda.el (org-agenda-get-progress): Fix regexp for statep:
19469         it must has \\ at the end of the line.  This avoid matching the
19470         following heading when there's no newline between the logged state
19471         and the next heading.
19473 2011-07-28  Julien Danjou  <julien@danjou.info>
19475         * org-agenda.el (org-format-agenda-item): Simplify time comuting.
19477 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
19479         * org.el (org-current-level, org-store-link, org-mark-subtree):
19480         Use `org-with-limited-levels'.
19482 2011-07-28  Jan Seeger  <jan.seeger@thenybble.de>  (tiny change)
19484         * org-publish.el (org-publish-get-base-files): Add sitemap file.
19486 2011-07-28  Matt Lundin  <mdl@imapmail.org>
19488         * org-agenda.el (org-agenda-todo-ignore-deadlines): New option.
19489         (org-agenda-todo-ignore-scheduled): New option.
19490         (org-agenda-todo-ignore-timestamp): New option.
19491         (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item):
19492         Allow user to specify custom distance to ignore (future or past).
19493         (org-agenda-todo-custom-ignore-p): New function.
19495 2011-07-28  Matt Lundin  <mdl@imapmail.org>
19497         * org-habit.el (org-habit-parse-todo) Don't parse more days than
19498         needed.
19500 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
19502         * ob.el (org-babel-map-inline-src-blocks): Macro for executing
19503         code in each inline code block.
19504         (org-babel-execute-buffer): Executes inline code blocks as well as
19505         regular code blocks.
19507 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
19509         * ob.el (org-babel-result-end): Now recognizes "#+begin_org"
19510         blocks for removal.
19512 2011-07-28  Benjamin Drieu  <bdrieu@april.org>  (tiny change)
19514         * org-clock.el (org-clock-before-select-task-hook): New hook.
19515         (org-clock-select-task): Run new hook.
19517 2011-07-28  Julien Danjou  <julien@danjou.info>
19519         * org-agenda.el (org-agenda-get-blocks): Fix time of start/end of
19520         events with range.  This display things like: <2011-01-22 Sat
19521         14:00>--<2011-01-23 Sun 20:00> correctly, with the event starting
19522         at 14:00 and ending at 20:00.
19524 2011-07-28  Dan Davison  <dandavison7@gmail.com>
19526         * ob.el (org-babel-inline-src-block-regexp): Character preceding
19527         "src_" can now be anything as long as it is neither alphanumeric
19528         nor '-'.
19530 2011-07-28  Dan Davison  <dandavison7@gmail.com>
19532         * ob.el (org-babel-merge-params): Docstring typo.
19534 2011-07-28  Dan Davison  <dandavison7@gmail.com>
19536         * ob.el (org-babel-params-from-buffer): Process all #+babel: lines
19537         in the buffer.
19539 2011-07-28  Dan Davison  <dandavison7@gmail.com>
19541         * ob.el (org-babel-get-src-block-info): Alter order of merge
19542         arguments.
19544 2011-07-28  Dan Davison  <dandavison7@gmail.com>
19546         * ob-python.el: Test whether non-nil buffer is #<killed buffer>.
19548 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
19550         * ob.el (org-babel-insert-result): Ensure all parts of result
19551         wrappers end in newlines.
19553 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
19555         * ob-tangle.el (org-babel-tangle): New :mkdirp header argument
19556         optionally creates parent directories of tangle targets.
19558 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
19560         * org-ascii.el (org-ascii-level-start): Catch the case of levels
19561         which do not have an equivalent in the list of underline
19562         characters.
19564 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
19566         * ob-sh.el (org-babel-sh-var-quote-fmt): Now possible to customize
19567         the format string used to escape arguments to shell code blocks.
19569 2011-07-28  Julien Danjou  <julien@danjou.info>
19571         * org-agenda.el (org-agenda-reset-view): New function.
19572         (org-agenda-view-mode-dispatch): Bind space to org-agenda-reset-view.
19574 2011-07-28  Puneeth Chaganti  <punchagan@gmail.com>
19576         * org-exp.el (org-export-handle-include-files): Support :lines
19577         property.
19578         (org-get-file-contents): New argument lines to include specify a
19579         range of lines to include.
19581 2011-07-28  Bastien Guerry  <bzg@gnu.org>
19583         * org.el (org-fast-tag-selection): Fix bug when assigning keys.
19585 2011-07-28  Lawrence Mitchell  <wence@gmx.li>
19587         * org-latex.el (org-export-latex-make-header): Export email in
19588         author line if `org-export-email-info' is non-nil.
19590 2011-07-28  Julien Danjou  <julien@danjou.info>
19592         * org-agenda.el (org-agenda-goto-today): Respect current span.
19594 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
19596         * org-complete.el (pcomplete/org-mode/link)
19597         (pcomplete/org-mode/todo, pcomplete/org-mode/prop): Copy list
19598         before uniquifying.
19600 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
19602         * ob-tangle.el (org-babel-spec-to-string): Adding "noweb" as a
19603         linking comment type
19604         (org-babel-tangle-comment-links): Returns comment links for the
19605         source code block at point.
19607 2011-07-28  Bastien Guerry  <bzg@gnu.org>
19609         * org.el (org-refile-check-position): Send a more explicit message
19610         on how to clear the cache before refiling again.
19612 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
19614         * org-agenda.el (org-agenda-skip-function-global): New option.
19615         (org-agenda-skip-eval): New function.
19616         (org-agenda-skip): Use `org-agenda-skip-eval' and also check for
19617         the global skipping condition.
19619 2011-07-28  David Maus  <dmaus@ictsoc.de>
19621         * org-html.el (org-export-as-html): Handle timestamps after
19622         handling links.
19624 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
19626         * ob-tangle.el (org-babel-tangle-jump-to-org): Ever wider searches
19627         until either a matching block is found, or the limits of the file
19628         are reached.
19630 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
19632         * ob.el (org-babel-update-block-body): Literal argument to
19633         `replace-match' to allow insertion of text containing '\'.
19635 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
19637         * ob-ref.el (org-babel-ref-parse): Allow passing empty strings
19638         into code blocks.
19640 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
19642         * org.el (org-sort-entries): Fix sorting with a bold emphasis at bol.
19644 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
19646         * ob.el (org-babel-open-src-block-result): Must collect result
19647         *before* jumping to the result buffer.
19649 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
19651         * ob.el (org-babel-src-block-names): Fix bug, wrong match-string
19652         used after update to regexp.
19654 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
19656         * ob.el (org-babel-temp-file): Ensure that
19657         `org-babel-temporary-directory' is bound before using.
19658         (org-babel-remove-temporary-directory): Safer error throwing.
19660 2011-07-28  niels giesen  <niels.giesen@gmail.com>
19662         * org-docbook.el (org-export-docbook-finalize-table): Do literal
19663         replacements.
19665 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
19667         * ob.el (org-babel-execute-src-block): Uses org-src-lang-modes to
19668         resolve language names for evaluation.
19670 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
19672         * org-capture.el (org-capture-templates): Add %f and %F escapes
19673         (org-capture): Add more information to capture property list
19674         (org-capture-fill-template): Handle %f and %F escapes.
19676 2011-07-28  David Maus  <dmaus@ictsoc.de>
19678         * org-publish.el (org-publish-cache-ctime-of-src): Use mtime of
19679         symlink target.
19681 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
19683         * org.el (org-occur-next-match): New function.
19684         (org-mode): Set the variable `next-error-function'.
19685         (org-highlight-new-match): Add an `org-type' property to the
19686         overlays.
19688 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
19690         * ob-calc.el: No longer require `calc-trail' on XEmacs.
19692 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
19694         * org.el (org-modules): Add `org-eshell'.
19696 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
19698         * org-special-blocks.el (htmlp, latexp, line): Add defvars for
19699         dynamically scoped variables.
19701         * org.el (org-modules): Move `org-special-blocks' into the core
19702         modules section.
19704 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
19706         * org-special-blocks.el: New file.
19708 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
19710         * org.el (org-plist-delete): Remove duplicate definition.
19712 2011-07-28  Bernt Hansen  <bernt@norang.ca>
19714         * org-agenda.el (org-agenda-goto): Display invisible entry text.
19716         * org-agenda.el (org-agenda-switch-to): Display invisible entry
19717         text.
19719 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
19721         * org.el (org-get-category): New optional argument FORCE-REFRESH.
19722         Automatically refresh if the property is not there.
19723         (org-entry-properties): Remove refresh - this is now done in
19724         org-get-category.
19726         * org-clock.el (org-clock-insert-selection-line):
19727         Let `org-get-category' do the property refresh.
19729         * org-archive.el (org-archive-subtree): Force a refresh of
19730         category properties.
19732 2011-07-28  Julien Danjou  <julien@danjou.info>
19734         * org-icalendar.el (org-print-icalendar-entries): Do not manually
19735         refresh categories.
19737 2011-07-28  Dan Davison  <dandavison7@gmail.com>
19739         * org.el (org-display-inline-images): Check for clear-image-cache
19740         before using it.
19742 2011-07-28  Bernt Hansen  <bernt@norang.ca>
19744         * org.el: Document missing value for org-link-frame-setup.
19746 2011-07-28  Dan Davison  <dandavison7@gmail.com>
19748         * ob-R.el (org-babel-R-write-object-command): Force evaluation of
19749         user code prior to the R exception-handling, so that errors in
19750         user code are unhandled.
19752 2011-07-28  Dan Davison  <dandavison7@gmail.com>
19754         * org-src.el (org-src-font-lock-fontify-block): Test, early on,
19755         that a major-mode function corresponding to the language string
19756         exists.
19758 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
19760         * org-exp.el (org-export-mark-list-ending): Insert additional
19761         newline characters if end-list-marker is at a wrong position.
19763 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
19765         * ob.el (org-babel-script-escape): Replace commas with spaces for
19766         better list reading when list items are packed with commas,
19767         e.g. Haskell list output.
19769 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
19771         * ob-sass.el (org-babel-execute:sass): Uses ob-eval for better
19772         error reporting.
19774 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
19776         * ob.el (org-babel-confirm-evaluate): Fix for the case when
19777         org-confirm-babel-evaluate is a function (used to always ask no
19778         matter what the function returns).
19780 2011-07-28  Dan Davison  <dandavison7@gmail.com>
19782         * ob-R.el: Delete duplicated function.
19784 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
19786         * ob.el (org-babel-execute-src-block): Remove unused flet
19787         function.
19789 2011-07-28  Dan Davison  <dandavison7@gmail.com>
19791         * ob-asymptote.el (org-babel-execute:asymptote): Return nil to
19792         signal that the intended content has been written to file.
19794         * ob-ditaa.el (org-babel-execute:ditaa): Return nil to signal that
19795         the intended content has been written to file.
19797         * ob-dot.el (org-babel-execute:dot): Return nil to signal that the
19798         intended content has been written to file.
19800         * ob-gnuplot.el (org-babel-execute:gnuplot): Return nil to signal
19801         that the intended content has been written to file.
19803         * ob-latex.el (org-babel-execute:latex): Return nil to signal that
19804         the intended content has been written to file.
19806         * ob-mscgen.el (org-babel-execute:mscgen): Return nil to signal
19807         that the intended content has been written to file.
19809         * ob-octave.el (org-babel-execute:octave): Return result; not name
19810         of output file.
19812         * ob-plantuml.el (org-babel-execute:plantuml): Return nil to
19813         signal that the intended content has been written to file.
19815         * ob-python.el (org-babel-execute:python): Return result; not name
19816         of output file.
19818         * ob-ruby.el (org-babel-execute:ruby): Return result; not name of
19819         output file.
19821         * ob-sass.el (org-babel-execute:sass): Return nil if result has
19822         been written to file.
19824 2011-07-28  Dan Davison  <dandavison7@gmail.com>
19826         * ob-R.el (org-babel-R-graphical-output-file): New function
19827         returns the name of the output file iff R has been instructed to
19828         send graphical output to file by means of the ":results graphics"
19829         directive.
19830         (org-babel-expand-body:R): Use `org-babel-R-graphical-output-file'
19831         when constructing the R code to evaluate, which may be augmented
19832         with code implementing the writing of graohical output to file.
19833         (org-babel-execute:R): Use `org-babel-R-graphical-output-file' to
19834         determine whether R is taking responsibility for writing output to
19835         file; if so, this is signaled to ob.el by returning a nil result.
19837 2011-07-28  Dan Davison  <dandavison7@gmail.com>
19839         * ob.el (org-babel-format-result): New function to format results
19840         of src block execution.
19841         (org-babel-execute-src-block): Use `org-babel-format-result' when
19842         writing to file.
19843         (org-babel-open-src-block-result): Use `org-babel-format-result'
19844         when displaying results in a buffer.  Name results buffer
19845         differently.
19847 2011-07-28  Dan Davison  <dandavison7@gmail.com>
19849         * ob.el (org-babel-execute-src-block): Avoid calling
19850         `orgtbl-to-generic' on number results.
19852 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
19854         * ob.el (org-babel-execute-src-block): Allow specification of
19855         table separator with :sep header argument.
19856         (org-babel-open-src-block-result): Allow specification of table
19857         separator with :sep header argument.
19859 2011-07-28  Dan Davison  <dandavison7@gmail.com>
19861         * ob.el (org-babel-execute-buffer): Wipe error buffer at outset of
19862         executing buffer (note that this handles execute subtree also).
19864 2011-07-28  Nicolas Goaziou  <n.goaziou@gmail.com>
19866         * org-inlinetask.el (org-inlinetask-in-task-p): Small refactoring,
19867         do not modify match data either.
19868         (org-inlinetask-goto-end): Small refactoring, remove
19869         case-sensitivity.
19870         (org-inlinetask-goto-beginning): Small refactoring, remove
19871         case-sensitivity.
19873 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
19875         * org-capture.el (org-capture-set-target-location):
19876         Use `current-time'.
19878 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
19880         * org-capture.el (org-capture-set-target-location):
19881         Use `current-time'.
19883 2011-07-28  Bernt Hansen  <bernt@norang.ca>
19885         * org.el (org-before-first-heading-p): If point is on an org-mode
19886         heading line then we are not before the first heading.
19888 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>  (tiny change)
19890         * org-timer.el (org-timer-continue-hook): Define the variable
19891         (org-timer-pause-or-continue): Run hook after relative timer is
19892         continued.
19894 2011-07-28  Julien Danjou  <julien@danjou.info>
19896         * org-agenda.el (org-compile-prefix-format): Allow %() expression.
19898 2011-07-28  Julien Danjou  <julien@danjou.info>
19900         * org-capture.el (org-capture-fill-template): Use org-eval.
19902 2011-07-28  Julien Danjou  <julien@danjou.info>
19904         * org-agenda.el (org-eval): New function.
19906 2011-07-28  Dan Davison  <dandavison7@gmail.com>
19908         * ob.el (org-babel-execute-src-block): With :results file, when
19909         :file is not supplied, interpret result as a file link as long as
19910         it is a string.
19912 2011-07-28  David Maus  <dmaus@ictsoc.de>
19914         * org-latex.el (org-export-latex-preprocess): Don't convert link
19915         description parts that look like numeric footnote.
19917 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
19919         * org-latex.el (org-export-latex-tables): Allowing specification
19920         of tabular[xy] inner environments through the ATTR_LaTeX line.
19922 2011-07-28  Julien Danjou  <julien@danjou.info>
19924         * org-capture.el (org-capture-fill-template):
19925         Use `org-set-property' directly.
19927 2011-07-28  Julien Danjou  <julien@danjou.info>
19929         * org-agenda.el (org-agenda-prefix-format): Add missing `search'
19930         item in docstring.
19932 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
19934         * org-exp.el (org-export-string): Use `format' to construct
19935         function call to allow symbolic or string arguments.
19937 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
19939         * org-capture.el (org-capture-place-entry):
19940         (org-capture-insert-template-here): Check tree for validity before
19941         pasting it.
19943 2011-07-28  Julien Danjou  <julien@danjou.info>
19945         * org-gnus.el (org-gnus-store-link): Trim date.
19947 2011-07-28  Julien Danjou  <julien@danjou.info>
19949         * org.el (org-email-link-description): Allow to retrieve email
19950         link date.
19952 2011-07-28  Lawrence Mitchell  <wence@gmx.li>
19954         * org.el (org-make-target-link-regexp): `regexp-quote' target
19955         before replacing whitespace.
19957 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
19959         * ob.el (org-babel-expand-noweb-references): Noweb references can
19960         now be resolved from the library of babel.
19962 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
19964         * ob.el (org-babel-result-end): No longer leaving trailing new
19965         line after block removal.
19967 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
19969         * org-latex.el (org-export-latex-first-lines): Anchor outline
19970         regexp during LaTeX tree export.
19972 2011-07-28  Konrad Hinsen  <konrad.hinsen@fastmail.net>
19974         * ob-python.el (org-babel-python-initiate-session-by-key):
19975         Make sure that py-which-bufname is initialized, as otherwise it will be
19976         overwritten the first time a Python buffer is created.
19978 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
19980         * ob-sh.el (org-babel-sh-var-to-sh): Better escaping of variables
19981         with spaces.
19983 2011-07-28  Eric Schulte  <schulte.eric@gmail.com>
19985         * ob-org.el (org-babel-execute:org): Padding code block with an
19986         empty title on LaTeX export.
19988 2011-07-28  Matt Lundin  <mdl@imapmail.org>
19990         * org.el (org-entry-properties): Stop scanning for timestamps if a
19991         specific timestamp property (e.g., DEADLINE, SCHEDULED, etc.) is
19992         requested and a match is found.  Also, if a specific timestamp
19993         property is requested, do not push non-relevant timestamps onto
19994         property list.
19996 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
19998         * org-agenda.el (org-agenda-add-time-grid-maybe): Show time only
19999         when grid is being made for today.
20001 2011-07-28  Matt Lundin  <mdl@imapmail.org>
20003         * org-agenda.el (org-agenda-get-scheduled): Don't call
20004         `org-is-habit-p' until after checking for
20005         `org-agenda-skip-scheduled-if-done'.
20007 2011-07-28  Achim Gratz  <Stromeko@nexgo.de>
20009         * org.el: Remove spurious linebreak introduced by earlier patch.
20011         * ob.el, ob-ref.el: Remove double fix of the same problem.
20013 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
20015         * org-table.el (orgtbl-ctrl-c-ctrl-c): Parse buffer for constants.
20017 2011-07-28  Łukasz Stelmach  <lukasz.stelmach@iem.pw.edu.pl>
20019         * org-html.el (org-export-html-mathjax-template):
20020         Displaymath environment and MathJax.
20022 2011-07-28  Carsten Dominik  <carsten.dominik@gmail.com>
20024         * org-faces.el (org-agenda-current-time): New face.
20026         * org-agenda.el (org-agenda-show-current-time-in-grid):
20027         (org-agenda-current-time-string): New options.
20028         (org-agenda-add-time-grid-maybe): Add current time to time grid.
20030 2011-05-10  Jim Meyering  <meyering@redhat.com>
20032         Fix doubled-word typos.
20033         * org-agenda.el (org-agenda-entry-types): the the -> the
20034         * org-table.el (org-table-get-remote-range): or or -> or
20035         * org-wl.el (org-wl-folder-type): the the -> the
20036         * org.el (org-goto, org-inside-LaTeX-fragment-p): Likewise.
20038 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
20040         * org-src.el (org-src-switch-to-buffer):
20041         * org-plot.el (org-plot/gnuplot-script, org-plot/gnuplot):
20042         * org-mouse.el (org-mouse-agenda-type):
20043         * org-freemind.el (org-freemind-node-to-org):
20044         * ob-sql.el (org-babel-execute:sql):
20045         * ob-exp.el (org-babel-exp-do-export, org-babel-exp-code):
20046         * ob-ref.el (org-babel-ref-resolve): Fix use of case.
20048 2011-03-07  Chong Yidong  <cyd@stupidchicken.com>
20050         * Version 23.3 released.
20052 2011-03-06  Juanma Barranquero  <lekktu@gmail.com>
20054         * org.el (org-blank-before-new-entry, org-context-in-file-links)
20055         (org-refile-targets, org-log-repeat, org-insert-link)
20056         (org-speed-command-default-hook, org-speed-command-hook)
20057         (org-in-regexps-block-p, org-yank-generic, org-goto-first-child):
20058         Fix typos in docstrings.
20059         (org-toggle-pretty-entities): Fix typo in message.
20061 2011-03-06  Juanma Barranquero  <lekktu@gmail.com>
20063         * org-id.el: Don't set `kill-emacs-hook' on noninteractive sessions.
20065 2011-02-10  Stefan Monnier  <monnier@iro.umontreal.ca>
20067         * org-remember.el (org-remember-mode-map):
20068         * org-src.el (org-src-mode-map): Move initialization into declaration.
20070 2011-01-13  Stefan Monnier  <monnier@iro.umontreal.ca>
20072         * org-remember.el (org-remember-mode):
20073         * org-capture.el (org-capture-mode): Don't run hook redundantly.
20075 2011-01-09  Chong Yidong  <cyd@stupidchicken.com>
20077         * org-faces.el (org-link): Inherit from link face.
20078         Suggested by Joakim Verona.
20080 2010-12-11  Tassilo Horn  <tassilo@member.fsf.org>
20082         * org-footnote.el (org-footnote-create-definition): Place
20083         Footnotes section before message-signature-separator also in modes
20084         derived from message-mode.
20086 2010-12-11  Julien Danjou  <julien@danjou.info>
20088         * org.el (org-make-tags-matcher): Remove useless cat-p value.
20090 2010-12-11  Julien Danjou  <julien@danjou.info>
20092         * org.el (org-entry-properties): Enhance docstring.
20094 2010-12-11  Nicolas Goaziou  <n.goaziou@gmail.com>
20096         * org-list.el (org-list-top-point-with-indent)
20097         (org-list-bottom-point-with-indent): Pay also attention to
20098         'original-indentation property of text, as blocks are put to
20099         column 0 upon exporting.
20101 2010-12-11  Dan Davison  <dandavison7@gmail.com>
20103         * ob.el (org-babel-remove-temporary-directory): Handle exception
20104         with message informing of failure to remove directory.
20106 2010-12-11  Eric Schulte  <schulte.eric@gmail.com>
20108         * ob-clojure.el (org-babel-header-arg-names:clojure): Add
20109         `package' to the list of Clojure header arguments which will be read
20110         from heading properties.
20112 2010-12-11  Nicolas Goaziou  <n.goaziou@gmail.com>
20114         * org-inlinetask.el (org-inlinetask-export-templates): Add
20115         Sébastien Vauban's suggestion for LaTeX export in docstring.  This is
20116         not default as it requires an additional LaTeX package: "todonotes".
20118 2010-12-11  Nicolas Goaziou  <n.goaziou@gmail.com>
20120         * org-inlinetask.el (org-inlinetask-export-templates): New variable.
20122         * org-inlinetask.el (org-inlinetask-export-handler): Make use of
20123         templates to export inline tasks.
20125 2010-12-11  Nicolas Goaziou  <n.goaziou@gmail.com>
20127         * org.el (org-current-level): Ignore inline tasks when getting current
20128         level of entry.
20130 2010-12-11  Nicolas Goaziou  <n.goaziou@gmail.com>
20132         * org.el (org-indent-line-function): Ignore drawers inside inline
20133         tasks  if the line to indent isn't inside an inline task itself.
20135 2010-12-11  Nicolas Goaziou  <n.goaziou@gmail.com>
20137         * org-inlinetask.el (org-inlinetask-get-task-level): New function.
20139         * org-indent.el (org-indent-add-properties): Find true level of
20140         indentation wrt inline tasks.
20142 2010-12-11  Nicolas Goaziou  <n.goaziou@gmail.com>
20144         * org-inlinetask.el (org-inlinetask-outline-regexp): New function.
20146         * org-inlinetask.el (org-inlinetask-goto-beginning): New function.
20148         * org-inlinetask.el (org-inlinetask-goto-end): New function.
20150         * org.el (org-mark-subtree): New command.
20152         * org.el (org-speed-commands-default, org-mode-map): Make use of
20153         new command.
20155 2010-12-11  Nicolas Goaziou  <n.goaziou@gmail.com>
20157         * org-inlinetask.el (org-inlinetask-export-handler): Remove protection
20158         from @<span class...> so it can be removed during LaTeX export.
20160 2010-12-11  Eric Schulte  <schulte.eric@gmail.com>
20162         * ob.el (org-babel-insert-result): More informative code block
20163         evaluation messages.
20165 2010-12-11  Matt Lundin  <mdl@imapmail.org>
20167         * org.el (org-make-heading-search-string): Optionally limit number
20168         of lines stored in file link search strings.
20169         (org-context-in-file-links): Add option to set to integer specifying
20170         number of lines.
20172 2010-12-11  Carsten Dominik  <carsten.dominik@gmail.com>
20174         * org-capture.el (org-capture-finalize): New prefix argument
20175         STAY-WITH-CAPTURE.
20176         (org-capture-refile): Improve docstring.
20178 2010-12-11  Eric Schulte  <schulte.eric@gmail.com>
20180         * ob-sql.el (org-babel-execute:sql): Add msosql as optional sql
20181         interaction engine.
20183 2010-12-11  Carsten Dominik  <carsten.dominik@gmail.com>
20185         * org-agenda.el (org-agenda-list):
20186         (org-agenda-goto-today): Use `org-today'.
20188 2010-12-11  Carsten Dominik  <carsten.dominik@gmail.com>
20190         * org-latex.el (org-export-latex-make-header): Swap \begin{document}
20191         and the title/author definitions.
20193 2010-12-11  Carsten Dominik  <carsten.dominik@gmail.com>
20195         * org-macs.el: Better backup definition for
20196         `with-silent-modifications'.
20198 2010-12-11  Eric Schulte  <schulte.eric@gmail.com>
20200         * ob-python.el (org-babel-execute:python): Rename "prefix" to
20201         "preamble".
20202         (org-babel-python-evaluate): Rename "prefix" to "preamble".
20203         (org-babel-python-evaluate-external-process): Rename "prefix" to
20204         "preamble".
20206 2010-12-11  Eric Schulte  <schulte.eric@gmail.com>
20208         * ob.el (org-babel-examplize-region): Check if `end' is a marker
20209         or a point and handle appropriately.
20211 2010-12-11  Eric Schulte  <schulte.eric@gmail.com>
20213         * ob-sql.el (org-babel-execute:sql): Explicitly set field
20214         separator to \t when importing tabular data.
20216 2010-12-11  Julien Danjou  <julien@danjou.info>
20218         * org-agenda.el (org-agenda-custom-commands-local-options):
20219         Allow org-agenda-span to be a symbol.
20220         (org-agenda-ndays): Make obsolete.
20221         (org-agenda-span): New variable superseding org-agenda-ndays.
20222         (org-agenda-menu): Use org-agenda-current-span.
20223         (org-agenda-current-span): New local variable storing current
20224         span.
20225         (org-agenda-list): Take a span instead of ndays as argument.
20226         This function is now responsible for computing the ndays based
20227         on span.
20228         (org-agenda-ndays-to-span): Return span only if number of days
20229         really matches.
20230         (org-agenda-span-to-ndays): New function.
20231         (org-agenda-manipulate-query): Use org-agenda-compute-starting-span.
20232         (org-agenda-goto-today): Use org-agenda-compute-starting-span.
20233         (org-agenda-later): Do not give compute a new span, use the
20234         current one.
20235         (org-agenda-day-view, org-agenda-week-view)
20236         (org-agenda-month-view, org-agenda-year-view): Stop touching
20237         org-agenda-ndays.
20238         (org-agenda-change-time-span): Only compute starting-span.
20239         (org-agenda-compute-starting-span): New function derived from
20240         the old org-agenda-compute-time-span.
20241         (org-agenda-set-mode-name): Compute mode based on
20242         org-agenda-current-span.
20243         (org-agenda-span-name): New function.
20245 2010-12-11  Robert Pluim  <rpluim@gmail.com>  (tiny change)
20247         * org-agenda.el (org-agenda-toggle-deadlines): Fix docstring.
20249 2010-12-11  Carsten Dominik  <carsten.dominik@gmail.com>
20251         * org-clock.el (org-quarter-to-date): Define variables.
20252         (org-clock-special-range): Defin variables.  Use org-floor*.
20253         (org-clocktable-write-default): Define tcol.
20255         * org-compat.el (org-floor*): New function.
20257 2010-12-11  Carsten Dominik  <carsten.dominik@gmail.com>
20258             John Wiegley  <jwiegley@gmail.com>
20260         * org-complete.el: New file.
20262 2010-12-11  Carsten Dominik  <carsten.dominik@gmail.com>
20264         * org-clock.el (org-clocktable-write-default): Fix the % formula.
20266 2010-12-11  Matt Lundin  <mdl@imapmail.org>
20268         * org-agenda.el (org-format-agenda-item): The value of
20269         org-category is not converted to a string unless it is defined.
20271 2010-12-11  Eric Schulte  <schulte.eric@gmail.com>
20273         * ob-python.el (org-babel-execute:python): Pass the new "prefix"
20274         header argument through to external evaluation.
20275         (org-babel-python-evaluate): Pass the new "prefix" header argument
20276         through to external evaluation.
20277         (org-babel-python-evaluate-external-process): When specified prepend
20278         "prefix" to the file used in external evaluation.
20280 2010-12-11  Dan Davison  <dandavison7@gmail.com>
20282         * ob-python.el (org-babel-python-evaluate-session): Change python
20283         module name from 'pp' to 'pprint'.
20285 2010-12-11  Eric Schulte  <schulte.eric@gmail.com>
20287         * ob-R.el (org-babel-R-evaluate-session): Removing empty lines
20288         from R session output, these are often the result of variable
20289         assignments.
20291 2010-12-11  Eric Schulte  <schulte.eric@gmail.com>
20293         * ob-sql.el (orgtbl-to-csv): Declaring an external function to
20294         fix a compiler warning.
20296 2010-12-11  Eric Schulte  <schulte.eric@gmail.com>
20298         * ob-eval.el (require): No longer require ob.el to allow
20299         requiring by ob.el.
20301         * ob.el (ob-eval): Require ob-eval.
20303 2010-12-11  Eric Schulte  <schulte.eric@gmail.com>
20305         * ob.el (org-babel-confirm-evaluate): Show code block's name when
20306         it is available during evaluation query.
20308 2010-12-11  Eric Schulte  <schulte.eric@gmail.com>
20310         * ob-sql.el (org-babel-expand-body:sql): Expand the body of a sql
20311         code block.
20312         (org-babel-execute:sql): Use sql specific body expansion function.
20313         (org-babel-sql-expand-vars): Insert variables into a sql code block.
20315 2010-12-11  Eric Schulte  <schulte.eric@gmail.com>
20317         * ob.el (org-babel-insert-result): Using markers instead of
20318         points for more robust buffer anchors.
20320 2010-12-11  Julien Danjou  <julien@danjou.info>
20322         * org-capture.el: Use org-today.
20324 2010-12-11  Julien Danjou  <julien@danjou.info>
20326         * org-habit.el: Use org-today.
20328 2010-12-11  Julien Danjou  <julien@danjou.info>
20330         * org.el (org-auto-repeat-maybe): Use org-today.
20332 2010-12-11  Carsten Dominik  <carsten.dominik@gmail.com>
20334         * org-clock.el (org-day-of-week): New function.
20335         (org-quarter-to-date): New function.
20336         (org-clock-special-range): Implement quarters.
20338 2010-12-11  Sébastien Vauban  <wxhgmqzgwmuf@spammotel.com>
20340         * org.el (org-complete-tags-always-offer-all-agenda-tags):
20341         Fix docstring.
20343 2010-12-11  Julien Danjou  <julien@danjou.info>
20345         * org-agenda.el (org-format-agenda-item): Convert category to a string
20346         if it is a symbol.  This fixes the following call to
20347         org-agenda-get-category-icon which fails if category is not a string.
20349 2010-12-11  Eric Schulte  <schulte.eric@gmail.com>
20351         * ob-clojure.el: Updated requirements documentation to mention
20352         the minimum version of Clojure.
20353         (org-babel-expand-body:clojure): Fully qualified function name.
20355 2010-12-11  Nicolas Goaziou  <n.goaziou@gmail.com>
20357         * org-latex.el (org-export-latex-lists): Do not add an
20358         unnecessary newline character after a list.
20360         * org-list.el (org-list-bottom-point-with-indent): Ensure bottom
20361         point is just after a non blank line.
20363 2010-12-11  Eric Schulte  <schulte.eric@gmail.com>
20365         * ob.el (org-babel-examplize-region): Remove old assertion which
20366         no longer applies to the result insertion code.
20368 2010-12-11  Eric Schulte  <schulte.eric@gmail.com>
20370         * ob-python.el (org-babel-execute:python): Use a :return header
20371         argument for external evaluation in which the code block body need
20372         to be wrapped in a function.
20374 2010-12-11  Eric Schulte  <schulte.eric@gmail.com>
20376         * ob-clojure.el (org-babel-expand-body:clojure): Trapped free
20377         variable.
20379 2010-12-11  Carsten Dominik  <carsten.dominik@gmail.com>
20381         * org.el (org-edit-special): Edit formulas when in TBLMF line.
20383 2010-12-11  Allen S. Rout  <asr@ufl.edu>  (tiny change)
20385         * org-capture.el (org-capture-after-finalize-hook): New hook.
20386         (org-capture-finalize): Run the new hook.
20388 2010-12-11  Eric Schulte  <schulte.eric@gmail.com>
20390         * ob-clojure.el (org-babel-expand-body:clojure): Support for
20391         pretty printing of Clojure code and data.
20393 2010-12-11  Eric Schulte  <schulte.eric@gmail.com>
20395         * ob.el (org-babel-insert-result): No longer escape results which
20396         will be wrapped in a block.
20398 2010-12-11  Eric Schulte  <schulte.eric@gmail.com>
20400         * ob-eval.el (org-babel-eval-wipe-error-buffer): Fix compiler
20401         warning and added documentation string.
20403 2010-12-11  Eric Schulte  <schulte.eric@gmail.com>
20405         * ob-clojure.el (org-babel-execute:clojure): Remade using slime
20406         for all code evaluation.
20408 2010-12-11  Carsten Dominik  <carsten.dominik@gmail.com>
20410         * org-beamer.el (org-beamer-sectioning): Allow overlay arguments for
20411         the column as well.
20413 2010-12-11  Eric Schulte  <schulte.eric@gmail.com>
20415         * ob.el (org-babel-confirm-evaluate): More descriptive message
20416         when evaluation is aborted or disabled.
20418 2010-12-11  Eric Schulte  <schulte.eric@gmail.com>
20420         * ob.el (org-babel-insert-result): Responds to new "wrap" header
20421         argument.
20422         (org-babel-merge-params): Includes new "wrap" header argument in
20423         one of the results header argument exclusive groups.
20425 2010-12-11  David Maus  <dmaus@ictsoc.de>
20427         * org-macs.el (with-silent-modifications): Fix condition for
20428         with-silent-modification.
20430 2010-12-11  Eric Schulte  <schulte.eric@gmail.com>
20432         * ob.el (org-babel-parse-header-arguments): Stripping trailing
20433         spaces off of header arguments (even the first one).
20435 2010-12-11  Eric Schulte  <schulte.eric@gmail.com>
20437         * ob-sh.el (org-babel-sh-var-to-sh): Wrap end token of heredoc in
20438         single quotes which is the best practice.
20439         (org-babel-sh-table-or-results): Use `org-babel-script-escape' for
20440         more robust parsing of shell output.
20442 2010-12-11  Dan Davison  <dandavison7@gmail.com>
20444         * org.el (org-additional-option-like-keywords): Add more keywords,
20445         and colons to some old ones.
20447 2010-12-11  Dan Davison  <dandavison7@gmail.com>
20449         * ob-eval.el (org-babel-error-buffer-name): Define new variable.
20451 2010-12-11  Eric Schulte  <schulte.eric@gmail.com>
20453         * ob-python.el (org-babel-python-table-or-string):
20454         Using `org-babel-script-escape' for reading string input from scripting
20455         languages.
20457 2010-12-11  Achim Gratz  <Stromeko@nexgo.de>  (tiny change)
20459         * org-macs.el (org-called-interactively-p): Wrap function call in
20460         with-no-warnings.
20461         (with-silent-modifications): Declare macro for Emacs < 23.2.
20463 2010-12-11  Eric Schulte  <schulte.eric@gmail.com>
20465         * ob.el (org-babel-parse-header-arguments): Remove addition of
20466         ":" to singleton first header arguments as it was leading to errors.
20468 2010-12-11  Carsten Dominik  <carsten.dominik@gmail.com>
20470         * org-latex.el (org-export-latex-make-header): Run the title through
20471         `org-export-latex-fontify-headline'.
20472         (org-export-latex-fontify-headline): Do the protection of math
20473         snippets also here.
20475 2010-12-11  Richard Lawrence  <richard.lawrence@berkeley.edu>
20477         * org-latex.el (org-export-as-latex): Sent the section title
20478         through the preprocessor.
20480 2010-12-11  Carsten Dominik  <carsten.dominik@gmail.com>
20482         * org-html.el (org-html-level-start): Mark listified headings
20483         with a custom id.
20485 2010-12-11  Carsten Dominik  <carsten.dominik@gmail.com>
20487         * org.el (org-open-at-point): Don't do footnote action if cursor is
20488         on a bracket link.
20490 2010-12-11  Carsten Dominik  <carsten.dominik@gmail.com>
20492         * org.el (org-edit-special): Check also for TBLFM line.
20494 2010-12-11  Achim Gratz  <Stromeko@Stromeko.DE>  (tiny change)
20496         * org-clock.el (org-get-clocktable): Previous patch incorrectly
20497         required whitespace in front of #+BEGIN: and #+END:.
20499 2010-12-11  Dan Davison  <dandavison7@gmail.com>
20501         * org-src.el (org-edit-src-code): Allow region to be inherited by
20502         edit buffer when mark is one character beyond end of src block.
20504 2010-12-11  Nicolas Goaziou  <n.goaziou@gmail.com>
20506         * org-list.el (org-cycle-list-bullet): Ensure point is at bol before
20507         checking item indentation.
20509 2010-12-11  Eric Schulte  <schulte.eric@gmail.com>
20511         * ob.el (org-babel-map-src-blocks): Move to earlier in the file
20512         and now autoloading.
20514 2010-12-11  Eric Schulte  <schulte.eric@gmail.com>
20516         * ob-ref.el (org-babel-ref-at-ref-p): Use higher level function
20517         for testing list membership.
20519         * ob.el (org-babel-read-result): Use higher level function for
20520         testing list membership.
20521         (org-babel-result-end): Use higher level function for testing list
20522         membership.
20524 2010-12-11  Eric Schulte  <schulte.eric@gmail.com>
20526         * ob-sqlite.el (ob-eval): Require ob-eval for external command
20527         execution.
20528         (org-babel-execute:sqlite): No longer uses the init option for
20529         passing commands to sqlite.
20531 2010-12-11  Nicolas Goaziou  <n.goaziou@gmail.com>
20533         * org.el (org-indent-line-function): Drawers and blocks have no
20534         influence on indentation of text below.  Also fix indentation
20535         problem with a block at column 0 and add a special case for
20536         literal examples.
20538 2010-12-11  Eric Schulte  <schulte.eric@gmail.com>
20540         * ob.el (org-babel-map-src-blocks): Ensure that the file argument
20541         is only evaluated once.
20543 2010-12-11  Eric Schulte  <schulte.eric@gmail.com>
20545         * ob-ref.el (org-babel-ref-resolve): Recognize `list' as a unique
20546         type of data
20547         (org-babel-ref-at-ref-p): Recognize `list' as a unique type of data.
20549 2010-12-11  Eric Schulte  <schulte.eric@gmail.com>
20551         * ob-tangle.el (org-babel-load-file): Can be called interactively.
20553 2010-12-11  Carsten Dominik  <carsten.dominik@gmail.com>  (tiny change)
20555         * org-table.el (orgtbl-after-send-table-hook): New hook.
20556         (orgtbl-ctrl-c-ctrl-c): Run `orgtbl-after-send-table-hook' when a
20557         table was sent.
20558         (orgtbl-send-table): Return the number of sent tables, or nil if no
20559         sending has happened.
20561 2010-12-11  Carsten Dominik  <carsten.dominik@gmail.com>
20563         * org.el (org-get-priority-function): New option.
20564         (org-get-priority): Call `org-get-priority-function' if that
20565         has been set.
20567 2010-12-11  Dan Davison  <dandavison7@gmail.com>
20569         * ob-table.el (org-babel-table-truncate-at-newline): Only add
20570         "..." if there is something after the newline.
20572 2010-12-11  Achim Gratz  <Stromeko@nexgo.de>  (tiny change)
20574         * org-clock.el (org-get-clocktable):
20575         (org-in-clocktable-p):
20576         (org-clocktable-shift):
20577         (org-clocktable-steps): Fix regexp to allow for indented clock tables.
20579 2010-12-11  Puneeth Chaganti  <punchagan@gmail.com>
20581         * org-exp.el (org-export-handle-include-files): Support :minlevel
20582         property.
20583         (org-get-file-contents): New argument minlevel to demote included
20584         content.
20586 2010-12-11  Noorul Islam  <noorul@noorul.com>
20588         * org-latex.el (org-export-latex-hyperref-format): New option.
20589         (org-export-latex-href-format): Rename the existing variable
20590         `org-export-latex-hyperref-format' as `org-export-latex-href-format'
20591         (org-export-latex-links): Use `org-export-latex-hyperref-format' and
20592         `org-export-latex-href-format'.
20594 2010-12-11  Eric Schulte  <schulte.eric@gmail.com>
20596         * ob-calc.el (org-babel-execute:calc): Ensure the *Calculator*
20597         buffer exists before it is used.
20599 2010-12-11  Nicolas Goaziou  <n.goaziou@gmail.com>
20601         * org-exp.el (org-export-preprocess-string): Delay code block
20602         processing a bit to allow correct list parsing in the export string.
20604 2010-12-11  Christopher Allan Webber  <cwebber@dustycloud.org>
20606         * org-agenda.el (org-agenda-timegrid-use-ampm): New option.
20607         (org-agenda-time-of-day-to-ampm): New function.
20608         (org-agenda-time-of-day-to-ampm-maybe): New function.
20609         (org-format-agenda-item): Call org-agenda-time-of-day-to-ampm-maybe.
20611 2010-12-11  Carsten Dominik  <carsten.dominik@gmail.com>
20613         * org-faces.el (org-cycle-level-faces): New option.
20615         * org.el (org-get-level-face): Honor org-cycle-level-faces.
20617 2010-12-11  Julien Danjou  <julien@danjou.info>
20619         * org-agenda.el (org-agenda-today): New function.
20620         (org-agenda-get-day-face): New function.
20621         (org-timeline): Use org-agenda-today and org-agenda-get-day-face.
20622         (org-agenda-list): Use org-agenda-today and org-agenda-get-day-face.
20623         (org-todo-list): Use org-agenda-today.
20624         (org-get-all-dates): Use org-agenda-today.
20625         (org-agenda-day-face-function): New variable.
20626         (org-agenda-get-day-face): Use org-agenda-day-face-function.
20628 2010-12-11  Carsten Dominik  <carsten.dominik@gmail.com>
20630         * org.el (org-ctrl-c-ctrl-c): Consider sending a radio table also
20631         in Org.
20633 2010-12-11  Carsten Dominik  <carsten.dominik@gmail.com>
20635         * org-html.el (org-export-as-html): Do not treat partially
20636         protected lines as if they were fully protected.
20638 2010-12-11  Dan Davison  <dandavison7@gmail.com>
20640         * org-exp.el (org-export-format-source-code-or-example):
20641         Remove hard-wired configuration of minted export
20642         (org-export-latex-minted-with-line-numbers): Remove variable.
20644 2010-12-11  Bastien Guerry  <bzg@gnu.org>
20646         * org-clock.el (org-dblock-write:clocktable): Fix double
20647         reference to `link' in let construct.
20648         (org-clock-clocktable-formatter): Fix typo in docstring.
20649         (org-clocktable-write-default): Fix typo in docstring.
20651 2010-12-11  David Maus  <dmaus@ictsoc.de>
20653         * org-protocol.el (org-protocol-unhex-string): Normalize percent
20654         escape sequence to upper case letters.
20656 2010-12-11  Eric Schulte  <schulte.eric@gmail.com>
20658         * ob-lob.el (org-babel-lob-get-info): Include pass-through
20659         header arguments in results variable header argument string.
20661 2010-12-11  David Maus  <dmaus@ictsoc.de>
20663         * org-exp.el (org-export-visible): Limit search for in-buffer options
20664         beginning of first headline.
20666 2010-12-11  David Maus  <dmaus@ictsoc.de>
20668         * org.el (org-open-at-point): Remove stale link handler for news:
20669         links.
20671 2010-12-11  Carsten Dominik  <carsten.dominik@gmail.com>
20673         * org-clock.el (org-clocktable-write-default): Better handling of
20674         narrowing.
20676 2010-12-11  Julien Danjou  <julien@danjou.info>
20678         * org-agenda.el (org-agenda-category-icon-alist): Fix defcustom type.
20680 2010-12-11  Nicolas Goaziou  <n.goaziou@gmail.com>
20682         * org.el (org-indent-line-function): Simplify code and remove bug that
20683         would insert a tab at the beginning of the line when trying to
20684         indent the item.
20686 2010-12-11  Julien Danjou  <julien@danjou.info>
20688         * org.el (org-diary-sexp-entry): Split sexp result strings at semicolon.
20690 2010-12-11  Julien Danjou  <julien@danjou.info>
20692         * org-agenda.el (org-agenda-prefix-format): Insert place holder
20693         for icon.
20694         (org-agenda-category-icon-alist): New option.
20695         (org-agenda-get-category-icon): New function.
20696         (org-format-agenda-item): Support for icons.
20697         (org-compile-prefix-format): Support for icons.
20699 2010-12-11  Julien Danjou  <julien@danjou.info>
20701         * org-compat.el: Create defalias for `string-match-p' and
20702         looking-at-p.
20704 2010-12-11  Eric Schulte  <schulte.eric@gmail.com>
20706         * ob-calc.el (org-babel-execute:calc): Support for variables --
20707         converts :var variables in calc variables.
20709 2010-12-11  Carsten Dominik  <carsten.dominik@gmail.com>
20711         * org.el (org-sparse-tree): Mention [r] in dispatch menu.
20713 2010-12-11  Carsten Dominik  <carsten.dominik@gmail.com>
20715         * org-list.el (org-list-parse-list): Use `org-looking-at-p'.
20717 2010-12-11  Carsten Dominik  <carsten.dominik@gmail.com>
20719         * org-id.el (org-id-store-link): Test for org-mode before checking
20720         for IDs.
20722 2010-12-11  Carsten Dominik  <carsten.dominik@gmail.com>
20724         * org.el (org-shorten-string): New function.
20726         * org-exp.el (org-export-convert-protected-spaces): New function.
20727         (org-export-preprocess-string):
20728         Call `org-export-convert-protected-spaces' to handle new hard spaces.
20730 2010-12-11  David Maus  <dmaus@ictsoc.de>
20732         * org.el (org-narrow-to-subtree): Check for heading that ends at end
20733         of buffer.
20735 2010-11-12  Carsten Dominik  <carsten.dominik@gmail.com>
20737         * org-capture.el (org-capture-templates): Remove autoload from
20738         defcustom.
20740         * ob-lisp.el (slime): Don't expect slime to be present.
20742 2010-11-11  Dan Davison  <dandavison7@gmail.com>
20744         * ob.el: `copy-sequence' suffices to copy alist; no need for
20745         `copy-tree'.
20747 2010-11-11  Dan Davison  <dandavison7@gmail.com>
20749         * ob.el (org-babel-execute-src-block): If ":results file" is in
20750         effect, then ensure that the value of :file is returned as the
20751         result; don't rely on language files for this.
20753 2010-11-11  Dan Davison  <dandavison7@gmail.com>
20755         * ob.el (org-babel-sha1-hash): Avoid corrupting `info' data
20756         structure by side-effects of `sort'.
20758 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
20760         * org-list.el (org-list-bottom-point-with-indent): Do not check
20761         indentation of a non-empty blank line.
20763         * org-list.el (org-sort-list): Sort a list with point anywhere
20764         inside it.
20766 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
20768         * ob-calc.el (org-babel-execute:calc): Safer evaluation and
20769         hopefully better error messages.
20771 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
20773         * org.el (org-babel-load-languages): Adding calc.
20775 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
20777         * ob.el (org-babel-initiate-session): Don't resolve variable
20778         references unless prefix arg is supplied.
20780 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
20782         * ob-calc.el (org-babel-execute:calc): Ensure that calc stack
20783         refers to the correct stack.
20785 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
20787         * ob-calc.el: Adding the beginnings of support for calc code
20788         blocks.
20790 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
20792         * ob-tangle.el (org-babel-update-block-body): Declaring function
20793         for updating code block bodies.
20794         (org-babel-spec-to-string):
20795         (org-babel-detangle): Detangle all tangled and commented code
20796         blocks in the current file back to org.
20797         (org-babel-tangle-jump-to-org): Jump from a tangled and commented
20798         file back to the originating org-mode code block ob-tangle:
20799         detangle changes in code files back to the original org files.
20801 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
20803         * ob-tangle.el (org-babel-tangle-comment-format-beg): Fix typo.
20804         (org-babel-tangle-comment-format-end): Fix typo.
20806 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
20808         * org-exp.el (org-export-format-source-code-or-example):
20809         Use minted for latex source code export if `org-export-latex-listings'
20810         has the value 'minted.
20812         * org-latex.el (org-export-latex-listings): Document special value
20813         'minted.
20815         * org-latex.el (org-export-latex-minted): Delete variable.
20817 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
20819         * ob.el (org-babel-get-src-block-info): Retrieve contents of
20820         parentheses, excluding parentheses themselves.
20822 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
20824         * ob-gnuplot.el (org-babel-variable-assignments:gnuplot):
20825         Fix bug in gnuplot data file assignment using user variables.
20827 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
20829         * ob-latex.el (org-babel-execute:latex): Adding new :headers
20830         header argument for latex code blocks.
20832 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
20834         * org-capture.el (org-capture-templates): New capture property
20835         `:kill-buffer'.
20836         (org-capture-finalize): Kill target buffer if that is desired.
20837         (org-capture-target-buffer): Remember if we have to make the buffer.
20839 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
20841         * org-clock.el (org-dblock-write:clocktable): Fix bug when
20842         computing clock tables.
20844 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
20846         * org-clock.el (org-dblock-write:clocktable): Pass file minutes up
20847         to caller even if no table is generated.
20849 2010-11-11  Łukasz Stelmach  <lukasz.stelmach@iem.pw.edu.pl>
20851         * org-agenda.el (org-agenda-get-sexps): Handle lists as return
20852         values from diary entries.
20854         * org-bbdb.el (org-bbdb-anniversaries): Handle lists of
20855         anniversaries.
20857         * org.el (org-diary-sexp-entry): Handle lists as return values
20858         from diary entries.
20860 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
20862         * org-capture.el (org-capture-empty-lines-before):
20863         (org-capture-empty-lines-after): Make sure the n=0 does not insert
20864         any newlines.
20866 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
20868         * ob-clojure.el (org-babel-clojure-babel-clojure-cmd): Fix error
20869         message when clojure binary is not found.
20871 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
20873         * org-html.el (org-format-table-html): New argument DOCBOOK.
20874         (org-format-org-table-html): New argument DOCBOOK.  When set, use
20875         align instead of class to align table fields.
20877         * org-docbook.el (org-export-as-docbook): Specify the docbook
20878         argument for the table converter.
20880 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
20882         * org-macs.el (org-called-interactively-p): New macro.
20884         * org-freemind.el: No longer require 'rx.
20885         (org-freemind): New customization group, use it for all the
20886         variables.
20887         (org-export-as-freemind): Add docstring.
20888         (org-freemind-show): Improve filen naming.
20889         (org-freemind-convert-links-helper): New function.
20890         (org-freemind-bol-helper-base-indent): New variable.
20891         (org-freemind-bol-helper): New function.
20892         (org-freemind-node-css-style): New option.
20893         (org-freemind-node-pattern): New variable.
20894         (org-freemind-from-org-mode): Better docstring.
20896 2010-11-11  David Maus  <dmaus@ictsoc.de>
20898         * ob-haskell.el (org-babel-variable-assignments:haskell):
20899         Don't pass more than two arguments to mapc.
20901 2010-11-11  David Maus  <dmaus@ictsoc.de>
20903         * ob.el (org-babel-ref-resolve): Declare to silence byte compiler.
20905 2010-11-11  David Maus  <dmaus@ictsoc.de>
20907         * org-footnote.el (message-signature-separator): Defvar to silence
20908         byte compiler.
20910 2010-11-11  David Maus  <dmaus@ictsoc.de>
20912         * org-exp.el (org-export-string): Fix reference to wrong symbol.
20914 2010-11-11  Jambunathan K  <kjambunathan@gmail.com>
20916         * org.el (org-link-search): Return 'dedicated on successful match
20917         when org-link-search-must-match-exact-headline is set to t.
20919 2010-11-11  Daniel Clemente  <n142857@gmail.com>
20921         * org-html.el (org-html-make-link): Append fragment to file: links
20922         if present.
20924 2010-11-11  Tassilo Horn  <tassilo@member.fsf.org>
20926         * org-footnote.el (org-footnote-create-definition)
20927         (org-footnote-goto-local-insertion-point): Add footnotes before
20928         signature when in message-mode.
20930 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
20932         * org.el (org-display-inline-images): Improve regexp.
20934 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
20936         * org.el (org-cycle): Make sure resetting to startup visibility
20937         works after another cycle command.
20939 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
20941         * org-exp.el (org-export-string): New function org-export-string
20942         can be used to convert a string of test in org-mode markup to a
20943         specified format.
20945 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
20947         * org.el (org-display-inline-images): Allow non-ASCII characters
20948         in image file names.  Save match data.
20950 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
20952         * org.el (org-auto-repeat-maybe): Fix shifting multiple time
20953         stamps.
20955 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
20957         * org-exp.el (org-store-forced-table-alignment):
20958         (org-export-remove-special-table-lines): Allow the "c" cookie for
20959         table alignment.
20961         * org-html.el (org-export-table-header-tags):
20962         (org-export-table-data-tags): Add another %s format for the
20963         alignment.
20964         (org-export-html-table-align-individual-fields): New option.
20965         (org-format-org-table-html): Implement field-by-field alignment
20966         and support centering.
20967         (org-format-table-table-html): Make sure the new table tag formats
20968         don't break this function.
20970         * org-table.el (org-table-cookie-line-p):
20971         (org-table-align): Allow for the <c> cookie.
20973         * org.el (org-set-font-lock-defaults): Allow for the <c> cookie.
20975 2010-11-11  David Maus  <dmaus@ictsoc.de>
20977         * org-exp.el (org-export-normalize-links): Skip normalization of
20978         plain links that are part of another link.
20980 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
20982         * ob-R.el (org-babel-expand-body:R): Fix bug in let binding.
20984 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
20986         * org-indent.el (org-indent-add-properties):
20987         Use `with-silent-modifications'.
20988         (org-indent-remove-properties): Use `with-silent-modifications'.
20990 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
20992         * org-table.el (org-table-cookie-line-p): Fix indentation.
20994         * org-exp.el (org-store-forced-table-alignment): New function.
20995         (org-export-preprocess-string):
20996         Call `org-store-forced-table-alignment'.
20998         * org-html.el (org-format-org-table-html): Use stored alignment
20999         information.
21001 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21003         * ob.el (org-babel-execute-src-block): Respects prefix argument
21004         (which forces re-calculation).
21006 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21008         * ob.el (org-babel-execute-src-block): Remove needless param
21009         sorting from ob-execute-src-block, the params are sorted already
21010         by ob-sha1-hash.
21012 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21014         * ob.el (org-babel-sha1-hash): Ensure that info is sorted at the
21015         header argument level.
21017 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21019         * ob.el (org-babel-sha1-hash): Consider words in different order
21020         as different input.
21022 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21024         * ob.el (org-babel-sha1-hash): Fix check for zero length sequences.
21026 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21028         * ob-sh.el (org-babel-sh-var-to-sh): Ensure value has the
21029         structure of an Org-mode table (list of lists).
21031 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21033         * ob-tangle.el (org-babel-tangle-collect-blocks): Fix bug
21034         (reference to unassigned variable `src-lang' and avoid calling
21035         org-babel-get-src-block-info twice.
21037 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21039         * ob.el (org-babel-demarcate-block): Update to reflect the new
21040         info list contents.
21042 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21044         * org-src.el (org-edit-src-code): Supply non-nil argument to
21045         `org-babel-get-src-block-info' to avoid resolving variable
21046         references.
21048 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21050         * ob.el (org-babel-map-src-blocks): Fix minor bug in and
21051         improved efficiency of org-babel-map-src-blocks.
21053 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21055         * ob-tangle.el (org-babel-tangle-collect-blocks): Now explicitly
21056         checks that a code block will actually be tangled before
21057         collecting it's full information (a process which could involve
21058         the execution of other code blocks).
21060 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21062         * ob.el (org-babel-demarcate-block): Use light version of
21063         `org-babel-get-src-block-info'.
21065 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21067         * ob.el (org-babel-sha1-hash): Now handles more complex types in
21068         params.
21070 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21072         * ob.el (org-babel-execute-src-block): Generally using the new
21073         more informative params
21074         (org-babel-process-params): Don't forget the :var portion of
21075         variable assignments.
21077 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21079         * ob-table.el (sbe): Simplify to reflect to var resolution.
21081 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21083         * ob-ref.el (org-babel-ref-resolve): Bringing the referent
21084         arguments back to their params before evaluation.
21086 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21088         * ob-ref.el (org-babel-ref-resolve): Cleanup of variable usage and
21089         indentation.
21091 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21093         * ob-table.el (sbe): Use `org-babel-process-params params' instead
21094         of `org-babel-expand-variables'.
21096 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21098         * ob-C.el (org-babel-C-execute): Remove call to
21099         org-babel-process-params which should no longer be called from
21100         within a language file.
21102         * ob-R.el (org-babel-execute:R): Remove call to
21103         org-babel-process-params which should no longer be called from
21104         within a language file
21105         (org-babel-R-variable-assignments): Remove call to
21106         org-babel-process-params which should no longer be called from
21107         within a language file.
21109         * ob-asymptote.el (org-babel-execute:asymptote): Remove call to
21110         org-babel-process-params which should no longer be called from
21111         within a language file.
21113         * ob-clojure.el (org-babel-execute:clojure): Remove call to
21114         org-babel-process-params which should no longer be called from
21115         within a language file.
21117         * ob-dot.el (org-babel-execute:dot): Remove call to
21118         org-babel-process-params which should no longer be called from
21119         within a language file.
21121         * ob-emacs-lisp.el (org-babel-expand-body:emacs-lisp): Remove
21122         call to org-babel-process-params which should no longer be called
21123         from within a language file
21124         (org-babel-execute:emacs-lisp): Remove call to
21125         org-babel-process-params which should no longer be called from
21126         within a language file.
21128         * ob-haskell.el (org-babel-execute:haskell): Remove call to
21129         org-babel-process-params which should no longer be called from
21130         within a language file.
21132         * ob-js.el (org-babel-execute:js): Remove call to
21133         org-babel-process-params which should no longer be called from
21134         within a language file.
21136         * ob-lisp.el (org-babel-execute:lisp): Remove call to
21137         org-babel-process-params which should no longer be called from
21138         within a language file.
21140         * ob-ocaml.el (org-babel-execute:ocaml): Remove call to
21141         org-babel-process-params which should no longer be called from
21142         within a language file.
21144         * ob-octave.el (org-babel-execute:octave): Remove call to
21145         org-babel-process-params which should no longer be called from
21146         within a language file.
21148         * ob-perl.el (org-babel-execute:perl): Remove call to
21149         org-babel-process-params which should no longer be called from
21150         within a language file.
21152         * ob-python.el (org-babel-execute:python): Remove call to
21153         org-babel-process-params which should no longer be called from
21154         within a language file.
21156         * ob-ruby.el (org-babel-execute:ruby): Remove call to
21157         org-babel-process-params which should no longer be called from
21158         within a language file.
21160         * ob-scheme.el (org-babel-execute:scheme): Remove call to
21161         org-babel-process-params which should no longer be called from
21162         within a language file.
21164         * ob-screen.el (org-babel-execute:screen): Remove call to
21165         org-babel-process-params which should no longer be called from
21166         within a language file
21167         (org-babel-prep-session:screen): Remove call to
21168         org-babel-process-params which should no longer be called from
21169         within a language file.
21171         * ob-sh.el (org-babel-execute:sh): Remove call to
21172         org-babel-process-params which should no longer be called from
21173         within a language file.
21175         * ob-sql.el (org-babel-execute:sql): Remove call to
21176         org-babel-process-params which should no longer be called from
21177         within a language file.
21179         * ob-haskell.el (org-babel-execute:haskell): Remove reference to
21180         processed params.
21182         * ob-clojure.el (org-babel-execute:clojure): Remove reference to
21183         processed params.
21185         * ob-R.el (org-babel-execute:R): Remove reference to processed
21186         params.
21188 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21190         * ob-sql.el (org-babel-execute:sql): Use generic expansion
21191         function
21192         (org-babel-expand-body:sql): Delete function.
21194 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21196         * ob-sh.el (org-babel-execute:sh): Use generic expansion function
21197         (org-babel-expand-body:sh): Delete function
21198         (org-babel-prep-session:sh): Change name of called function
21199         (org-babel-variable-assignments:sh): Change function name.
21201 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21203         * ob-screen.el (org-babel-execute:screen): Use generic expansion
21204         function
21205         (org-babel-expand-body:screen): Delete function
21206         (org-babel-prep-session:screen): Remove references to processed
21207         params.
21209 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21211         * ob-sass.el (org-babel-execute:sass): Use generic expansion
21212         function
21213         (org-babel-expand-body:sass): Delete function.
21215 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21217         * ob-ruby.el (org-babel-execute:ruby): Use generic expansion
21218         function
21219         (org-babel-prep-session:ruby): Use new variable assignment
21220         function
21221         (org-babel-variable-assignments:ruby): New function
21222         (org-babel-expand-body:ruby): Delete function.
21224 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21226         * ob-python.el (org-babel-execute:python): Use generic expansion
21227         function
21228         (org-babel-prep-session:python): Change name of called function
21229         (org-babel-variable-assignments:python): Change function name
21230         (org-babel-expand-body:python): Delete function.
21232 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21234         * ob-plantuml.el (org-babel-expand-body:plantuml): Delete function
21235         (automatically handled by generic version).
21237 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21239         * ob-perl.el (org-babel-execute:perl): Use generic expansion
21240         function
21241         (org-babel-expand-body:perl): Delete function
21242         (org-babel-variable-assignments:perl): New function.
21244 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21246         * ob-org.el (org-babel-expand-body:org): Delete function
21247         (automatically handled by generic version).
21249 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21251         * ob-octave.el (org-babel-execute:octave): Use generic expansion
21252         function
21253         (org-babel-variable-assignments:octave): Change name of function
21254         (org-babel-variable-assignments:matlab): New defalias
21255         (org-babel-prep-session:octave): Change name of function
21256         (org-babel-expand-body:matlab): Delete function
21257         (org-babel-expand-body:octave): Delete function.
21259 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21261         * ob-ocaml.el (org-babel-execute:ocaml): Use generic expansion
21262         function
21263         (org-babel-variable-assignments:ocaml): New function
21264         (org-babel-expand-body:ocaml): Delete function.
21266 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21268         * ob-mscgen.el (org-babel-expand-body:mscgen): Delete function
21269         (automatically handled by generic version).
21271 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21273         * ob-js.el (org-babel-execute:js): Use new variable assignment
21274         function
21275         (org-babel-expand-body:js): Delete function
21276         (org-babel-prep-session:js): Use new variable assignment function
21277         (org-babel-variable-assignments:js): New function.
21279 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21281         * ob-haskell.el (org-babel-execute:haskell): Use generic expansion
21282         function
21283         (org-babel-expand-body:haskell): Delete function
21284         (org-babel-prep-session:haskell): Use variable assignment function
21285         (org-babel-variable-assignments:haskell): New function.
21287 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21289         * ob-gnuplot.el (org-babel-expand-body:gnuplot): Use variable
21290         assignment function
21291         (org-babel-prep-session:gnuplot): Use variable assignment function
21292         (org-babel-variable-assignments:gnuplot): New function.
21294 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21296         * ob-ditaa.el (org-babel-expand-body:ditaa): Delete function
21297         (automatically handled by generic version).
21299 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21301         * ob-css.el (org-babel-expand-body:css): Delete function
21302         (automatically handled by generic version).
21304 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21306         * ob-asymptote.el (org-babel-execute:asymptote): Use generic
21307         expansion function
21308         (org-babel-expand-body:asymptote): Delete function
21309         (org-babel-variable-assignments:asymptote): New function.
21311 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21313         * ob-R.el (org-babel-expand-body:R): Use new function
21314         `org-babel-variable-assignments:R'; don't trim body.
21315         (org-babel-execute:R): Respond to changes in
21316         `org-babel-expand-body:R'
21317         (org-babel-prep-session:R): Called function is now named
21318         `org-babel-variable-assignments:R'
21319         (org-babel-variable-assignments:R): Receives processed-params as
21320         new optional argument.
21322 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21324         * ob-C.el (org-babel-C-expand): Don't trim body.
21326 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21328         * ob-scheme.el (org-babel-expand-body:scheme): Fix bug in
21329         obtaining variable references.
21331 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21333         * ob-tangle.el (org-babel-tangle-collect-blocks): Supply variable
21334         assignment lines to generic expansion command.
21336 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21338         * ob.el (org-babel-expand-src-block): Supply variable assignment
21339         lines to generic expansion function
21340         (org-babel-expand-body:generic): Prepend body with optional
21341         variable assignment lines.
21343 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21345         * ob-exp.el (org-babel-exp-results): Replaced old function call.
21347 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21349         * ob-lob.el (org-babel-lob-execute): Now expanding variable
21350         references before execution.
21352 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21354         * ob.el (org-babel-execute-src-block): Only sort parameters if
21355         it's required for caching.
21357 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21359         * ob-table.el (sbe): Reworking for better indentation and to
21360         integrate the new variable resolution.
21362 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21364         * ob-ref.el (org-babel-ref-resolve-reference): Now expanding
21365         variables when resolving references.
21367 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21369         * ob.el (org-babel-merge-params): Fix order or precedence for
21370         variables.
21372 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21374         * ob-C.el (org-babel-expand-body:c++, org-babel-C-expand):
21375         * ob-R.el (org-babel-expand-body:R, org-babel-execute:R)
21376         (org-babel-R-variable-assignments):
21377         * ob-asymptote.el (org-babel-expand-body:asymptote)
21378         (org-babel-execute:asymptote):
21379         * ob-clojure.el (org-babel-expand-body:clojure)
21380         (org-babel-execute:clojure):
21381         * ob-css.el (org-babel-expand-body:css):
21382         * ob-ditaa.el (org-babel-expand-body:ditaa):
21383         * ob-dot.el (org-babel-expand-body:dot, org-babel-execute:dot):
21384         * ob-emacs-lisp.el (org-babel-expand-body:emacs-lisp)
21385         (org-babel-execute:emacs-lisp):
21386         * ob-gnuplot.el (org-babel-expand-body:gnuplot)
21387         * ob-haskell.el (org-babel-expand-body:haskell)
21388         (org-babel-execute:haskell, org-babel-load-session:haskell)
21389         (org-babel-prep-session:haskell):
21390         * ob-js.el (org-babel-expand-body:js, org-babel-execute:js):
21391         * ob-latex.el (org-babel-expand-body:latex):
21392         * ob-lisp.el (org-babel-expand-body:lisp, org-babel-execute:lisp):
21393         * ob-mscgen.el (org-babel-expand-body:mscgen):
21394         * ob-ocaml.el (org-babel-expand-body:ocaml, org-babel-execute:ocaml):
21395         * ob-octave.el (org-babel-expand-body:matlab)
21396         (org-babel-expand-body:octave, org-babel-execute:octave)
21397         (org-babel-octave-variable-assignments):
21398         * ob-org.el (org-babel-expand-body:org):
21399         * ob-perl.el (org-babel-expand-body:perl, org-babel-execute:perl):
21400         * ob-plantuml.el (org-babel-expand-body:plantuml):
21401         * ob-python.el (org-babel-expand-body:python, org-babel-execute:python)
21402         (org-babel-python-variable-assignments):
21403         * ob-ruby.el (org-babel-expand-body:ruby, org-babel-execute:ruby):
21404         * ob-sass.el (org-babel-expand-body:sass):
21405         * ob-scheme.el (org-babel-expand-body:scheme, org-babel-execute:scheme):
21406         * ob-screen.el (org-babel-expand-body:screen):
21407         * ob-sh.el (org-babel-expand-body:sh, org-babel-execute:sh)
21408         (org-babel-sh-variable-assignments):
21409         * ob-sql.el (org-babel-expand-body:sql):
21410         * ob-sqlite.el (org-babel-expand-body:sqlite, org-babel-execute:sqlite):
21411         * ob.el (org-babel-expand-body:generic):
21412         Remove obsoleted optional third argument.
21414 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21416         * ob-clojure.el (org-babel-prep-session:clojure): Purging all
21417         calls to removed org-babel-ref-variables.
21419 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21421         * ob-lob.el (org-babel-lob-ingest): Now returns the count of
21422         ingested code blocks.
21424 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21426         * ob-exp.el (org-babel-exp-in-export-file): Wrapper for collecting
21427         information from within the original export file.
21429 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21431         * ob.el (org-babel-get-src-block-info): Small but crucial fix)
21432         (this should return nil if not match found.
21434 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21436         * ob-emacs-lisp.el (org-babel-expand-body:emacs-lisp):
21437         Whitespace (org-babel-execute:emacs-lisp): Whitespace.
21439 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21441         * ob-sh.el (org-babel-sh-variable-assignments): Provide missing
21442         docstring.
21444         * ob-python.el (org-babel-python-variable-assignments):
21445         Provide missing docstring.
21447 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21449         * ob-octave.el (org-babel-expand-body:octave): Refactor: break
21450         variable assignment part out into a separate function
21451         (org-babel-octave-variable-assignments): New function constructing
21452         list of variable assignment statements
21453         (org-babel-prep-session:octave): Use new function
21454         `org-babel-octave-variable-assignments' instead of previous
21455         (incorrect) variable assignment code.
21457 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21459         * ob-sh.el (org-babel-expand-body:sh): Refactor: break variable
21460         assignment part out into a separate function
21461         (org-babel-sh-variable-assignments): New function constructing
21462         list of variable assignment statements
21463         (org-babel-prep-session:sh): Use new function
21464         `org-babel-sh-variable-assignments' instead of previous
21465         (incorrect) variable assignment code.
21467 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21469         * ob-python.el (org-babel-expand-body:python): Refactor: break
21470         variable assignment part out into a separate function
21471         (org-babel-python-variable-assignments): New function constructing
21472         list of variable assignment statements
21473         (org-babel-prep-session:python): Use new function
21474         `org-babel-python-variable-assignments' instead of previous
21475         (incorrect) variable assignment code.
21477 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21479         * ob-R.el (org-babel-expand-body:R): Refactor: break variable
21480         assignment part out into a separate function
21481         (org-babel-R-variable-assignments): New function constructing list
21482         of variable assignment statements
21483         (org-babel-prep-session:R): Use new function
21484         `org-babel-R-variable-assignments' instead of previous
21485         (incorrect) variable assignment code.
21487 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21489         * ob.el (org-babel-initiate-session): Better variable names.
21491 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21493         * ob.el (org-number-sequence):
21494         Declared * ob-R.el (org-number-sequence): Declared.
21496 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21498         * ob.el (org-babel-map-src-blocks): Store correct value of
21499         `end-block'.
21501 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21503         * ob.el (org-babel-mark-block): New function to mark the body of a
21504         src block in the style of `mark-defun'.
21506 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
21508         * org-compat.el (org-number-sequence): New function.
21510         * ob-R.el (org-babel-expand-body:R): Use `org-number-sequence'.
21512         * ob.el (org-babel-where-is-src-block-result):
21513         Use `org-number-sequence'.
21514         (org-babel-current-buffer-properties): Fix variable definition.
21516         * ob-ref.el (org-babel-ref-index-list): Use `org-number-sequence'.
21518         * ob-latex.el (org-babel-latex-tex-to-pdf): Use the 2-argument
21519         version of `shell-command'.
21521         * org-latex.el (org-export-as-pdf): Use the 2-argument version of
21522         `shell-command'.
21524 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
21526         * org-list.el (org-list-search-unenclosed-generic): Replace call
21527         to booleanp.
21529 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
21531         * org.el (org-agenda-jump-prefer-future): New option.
21533         * org-agenda.el (org-agenda-goto-date):
21534         Use `org-agenda-jump-prefer-future'.
21536 2010-11-11  Noorul Islam  <noorul@noorul.com>
21538         * org-latex.el (org-export-latex-links): Replaced hard coded
21539         hyperref format with custom variable
21540         `org-export-latex-hyperref-format'.
21542 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
21544         * org.el (org-insert-heading): Fix docstring.
21546 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>  (tiny change)
21548         * org-capture.el (org-capture-place-entry): If the first line is
21549         already a headline, just stay there.
21551 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21553         * ob-sh.el (org-babel-sh-evaluate): No longer assumes that results
21554         are non-nil.
21556 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
21558         * org-ascii.el (org-ascii-replace-entities): Match an optional {}
21559         after an entity.
21561 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
21563         * org-table.el (orgtbl-to-html): Apply `org-html-expand' to the
21564         table fields.
21566 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
21568         * org.el (org-insert-heading): When on the headline of an inline
21569         task, insert another inline tasks.
21571 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21573         * ob-tangle.el (org-babel-tangle-collect-blocks): Only create
21574         links for blocks that will actually tangle.
21576 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21578         * ob-sh.el (org-babel-expand-body:sh): Don't insert extra newlines
21579         in expanded shell bodies.
21581 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21583         * ob-sh.el (org-babel-expand-body:sh): Avoid inserting extra
21584         newline characters.
21586 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21588         * ob-sh.el (org-babel-expand-body:sh): Align code.
21590 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21592         * ob.el (org-babel-params-from-properties): Max line with at <=80.
21594 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21596         * org-latex.el (org-export-latex-listings-langs): Clojure is now
21597         recognized as a lisp.
21599 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21601         * ob.el (org-babel-params-from-properties): Use `org-babel-read'
21602         to interpret property as header argument value.
21604 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21606         * ob.el (org-babel-parse-header-arguments): Simplify reading of
21607         header arg value.
21609 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
21611         * org-publish.el (org-publish-org-to-ascii):
21612         (org-publish-org-to-latin1):
21613         (org-publish-org-to-utf8): New functions.
21615 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
21617         * org.el (org-insert-heading): Skip inline tasks when trying to
21618         insert a new heading after the end of the subtree.
21620 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
21622         * org-inlinetask.el (org-inlinetask-min-level): Set customization
21623         type to integer or nil.
21625         * org.el (org-insert-heading): When after an inline task, do not
21626         use level but go back to headline level before the inline task.
21628 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
21630         * org-inlinetask.el (org-inlinetask-in-task-p): New function.
21632         * org.el (org-indent-line-function): Fix indentation of inline
21633         tasks.
21635 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
21637         * org.el (org-activate-links): Fix customize type.
21639 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
21641         * org-latex.el (org-latex-to-pdf-process): Add rubber as another
21642         default option.
21644 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21646         * org-latex.el (org-export-latex-minted): Document pygments
21647         dependency.
21649 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
21651         * org-mobile.el (org-mobile-create-index-file): Encrypt the index
21652         file if encryption has been turned on.
21653         (org-mobile-copy-agenda-files): Avoid double encryption of
21654         `mobileorg.org'.
21656 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21658         * org-exp.el (org-export-latex-minted-with-line-numbers):
21659         Ensure that variable is declared.
21661 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21663         * ob-python.el (org-src-preserve-indentation): Fix compiler
21664         warning.
21666 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21668         * org-exp.el (org-export-format-source-code-or-example):
21669         Latex formatting of source code blocks using the minted package
21670         (org-export-plist-vars): Add :latex-minted property
21671         (org-export-latex-minted): Ensure variable is defined
21672         (org-export-latex-minted-langs): Ensure variable is defined.
21674 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
21676         * org-src.el (org-edit-src-code): Use `org-region-active-p'.
21678 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21680         * ob-tangle.el (org-babel-spec-to-string): Whitespace changes.
21682 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21684         * ob-tangle.el (org-babel-spec-to-string): Don't trim whitespace
21685         when `org-src-preserve-indentation' is non-nil.
21687 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21689         * ob-lob.el (org-babel-lob-ingest): Provide message stating number
21690         of blocks added to Library of Babel.
21692 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21694         * ob-lob.el (org-babel-lob-ingest): Check for nil source block
21695         name.
21697 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
21699         * org-beamer.el (org-beamer-place-default-actions-for-lists):
21700         Fix typo in regexp.
21702 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
21704         * org-list.el (org-toggle-checkbox): Avoid some boundary error
21705         when inserting a checkbox in an empty last item of a list.
21707 2010-11-11  David Maus  <dmaus@ictsoc.de>
21709         * org-gnus.el (org-gnus-nnimap-query-article-no-from-file):
21710         Query article number from file is nil by default.
21712 2010-11-11  Stephen Eglen  <S.J.Eglen@damtp.cam.ac.uk>
21714         * org-beamer.el (org-beamer-amend-header): Fix typo in docstring.
21716 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
21718         * org-capture.el (org-capture-place-entry): Move to `beg' before
21719         searching for `%?'.
21721 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
21723         * org.el (org-format-latex): Fix mathjax treatment of single
21724         letters in between dollars.
21726 2010-11-11  Sébastien Vauban  <wxhgmqzgwmuf@spammotel.com>
21728         * org-latex.el (org-latex-to-pdf-process): Add a third pdflatex
21729         run.
21731 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
21733         * org.el (org-blank-before-new-entry): Improve docstring.
21735 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
21737         * org-mobile.el (org-mobile-force-id-on-agenda-items):
21738         Fix docstring.
21739         (org-mobile-write-agenda-for-mobile): Use outline path if we do
21740         not have an ID and are not allowed to make one.
21741         (org-mobile-get-outline-path-link): New function.
21743 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
21745         * org-mobile.el (org-mobile-copy-agenda-files): Encrypt the empty
21746         file.
21747         (org-mobile-write-agenda-for-mobile): Use the right name, even if
21748         the file get encrypted.
21749         (org-mobile-move-capture): Only delete tempfile if it does exist.
21751 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21753         * ob.el (org-babel-number-p): Fix documentation string.
21755 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21757         * ob-tangle.el (org-babel-tangle-collect-blocks): Accepting
21758         "tangle" as a positive argument for the :noweb header argument
21759         during tangling.
21761 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21763         * ob-exp.el (org-babel-exp-src-blocks): Fix export when headings
21764         have links, with tests.
21766 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
21768         * org-latex.el (org-latex-to-pdf-process): Use texi2dvi if
21769         available.
21770         (org-export-latex-get-error): New function.
21771         (org-export-as-pdf): Give an indication of the errors that
21772         happened during processing.
21774 2010-11-11  Łukasz Stelmach  <lukasz.stelmach@iem.pw.edu.pl>
21776         * org-exp.el (org-export-language-setup): Fix Polish entries.
21778 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
21780         * org.el (org-set-tags): Allow comma as a separator when
21781         specifying tags at the completion interface.
21782         (org-tags-completion-function): Allow comma as a separator when
21783         specifying tags at the completion interface.
21785 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21787         * ob-exp.el (org-babel-exp-src-blocks): Don't jump back to
21788         export-file if exporting from a buffer which is not visiting a
21789         file.
21791 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21793         * ob-exp.el (org-babel-exp-src-blocks): Only append "::" to a file
21794         name in link construction if there is a heading to follow it.
21796 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
21798         * org-html.el (org-export-html-inline-image-extensions): Add "svg"
21799         as an allowed extension.
21801 2010-11-11  Sébastien Vauban  <wxhgmqzgwmuf@spammotel.com>
21803         * org-agenda.el (org-agenda-add-time-grid-maybe): Pad clock times
21804         with zeros.  Start applying face earlier.
21806 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21808         * ob.el (or): Don't create org-babel-temporary-directory in batch
21809         as it won't be removed by emacs-kill-hook
21810         (org-babel-remove-temporary-directory): Only try to remove this
21811         directory if it exists.
21813 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21815         * ob.el (org-babel-temporary-directory): Fixing byte-compilation
21816         warning in ob.el.
21818 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21820         * ob-tangle.el (org-babel-tangle): Now sharing the file name in
21821         the tangling message.
21823 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21825         * ob.el (org-babel-load-languages): Fixes compiler warning.
21827 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21829         * ob-plantuml.el (org-babel-execute:plantuml): Fixes bug with svg
21830         output.
21832 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
21834         * org-ascii.el (org-export-as-ascii): Use the correct match group.
21836 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21838         * ob.el (boundp): Uncommenting defvar form for
21839         org-babel-temporary-directory
21840         (org-babel-temp-file): Now using the org-babel-temporary-directory
21841         for holding new babel temporary files
21842         (org-babel-remove-temporary-directory): Removes the babel temp dir
21843         when Emacs shutsdown
21844         (kill-emacs-hook): Now removing the babel temp dir on Emacs
21845         shutdown.
21847 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
21849         * org-capture.el (org-capture-fill-template): Initialize history
21850         variable.
21852 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21854         * org-src.el (org-edit-src-code): Don't move point when generating
21855         edit buffer.
21857 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21859         * org-src.el (org-edit-src-code): Deal with point being in
21860         #+end_src line.
21862 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
21864         * org-table.el (org-table-current-column): Add interactive to turn
21865         this into a command.
21867 2010-11-11  Bernt Hansen  <bernt@norang.ca>
21869         * org.el (org-insert-heading): Run org-insert-heading-hook when
21870         creating the first heading in a file.
21872 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
21874         * org.el (org-startup-with-inline-images): New option.
21875         (org-startup-options): Add new keywords inlineimages and
21876         noinlineimages.
21877         (org-mode): Inline images when this has been configured.
21879 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21881         * ob.el (org-babel-get-src-block-info): Remove optional
21882         HEADER-VARS-ONLY argument; further simplification.
21884 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21886         * ob.el (org-babel-confirm-evaluate): Fix bug causing extra
21887         prompt in ob-confirm-evaluate in some cases.
21889 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
21891         * ob.el (org-babel-demarcate-block): Visible region and completion
21892         during language selection.
21894 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21896         * ob.el (org-babel-get-src-block-info): Remove comment.
21898 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21900         * ob.el (org-babel-get-src-block-info): Simplify function.
21902 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21904         * ob.el (org-babel-get-src-block-info): Form info list correctly
21905         when parenthesized arguments are missing.
21907 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21909         * ob-exp.el (org-export-babel-evaluate): Docstring typo
21910         (org-babel-exp-code): Docstring typo.
21912 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
21914         * org-mobile.el (org-mobile-encryption-password):
21915         Improve docstring.
21916         (org-mobile-encryption-password-session): New variable.
21917         (org-mobile-encryption-password): New function.
21918         (org-mobile-check-setup):
21919         (org-mobile-encrypt-file):
21920         (org-mobile-decrypt-file): Use the new function.
21922 2010-11-11  David Maus  <dmaus@ictsoc.de>
21924         * org-capture.el (org-capture-place-template): Widen to remove
21925         possible restrictions in target buffer.
21927 2010-11-11  Jambunathan K  <kjambunathan@gmail.com>
21929         * org.el (org-speed-command-hook): Add org-speed-command-hook
21930         (org-babel-speed-command-hook): Hook for Babel's speed commands.
21932 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21934         * ob.el (org-babel-execute-buffer): Re-implement using
21935         `org-babel-map-src-blocks'.
21937 2010-11-11  David Maus  <dmaus@ictsoc.de>
21939         * org-capture.el (org-capture-templates): Update doc string with
21940         new message date related escapes.
21942 2010-11-11  David Maus  <dmaus@ictsoc.de>
21944         * org-wl.el (org-wl-store-link-message): Define properties %:date)
21945         (%:date-timestamp, and %:date-timestamp-inactive.
21947         * org-mew.el (org-mew-store-link): Dto.
21949         * org-mhe.el (org-mhe-store-link): Dto.
21951         * org-rmail.el (org-rmail-store-link): Dto.
21953         * org-vm.el (org-vm-store-link): Dto.
21955 2010-11-11  David Maus  <dmaus@ictsoc.de>
21957         * org-wl.el (org-wl-message-field): Always get literal content of
21958         header fields.
21960 2010-11-11  David Maus  <dmaus@ictsoc.de>
21962         * org-gnus.el (org-gnus-store-link): Define properties
21963         %:date-timestamp and %:date-timestamp-inactive.
21965 2010-11-11  David Maus  <dmaus@ictsoc.de>
21967         * org-gnus.el (org-gnus-store-link): Handle empty date header
21968         field.
21970 2010-11-11  Jambunathan K  <kjambunathan@gmail.com>  (tiny change)
21972         * org.el (org-speed-command-hook): New.  Hook for installing
21973         additional speed commands.  Use this for enabling speed commands on
21974         src blocks.
21975         (org-speed-command-default-hook): The default hook for
21976         org-speed-command-hook.  Factored out from org-self-insert-command
21977         and mimics existing behavior.
21978         (org-self-insert-command): Modify to use org-speed-command-hook.
21980 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
21982         * org-agenda.el (org-search-view): Recover spaces in search words
21983         if they were escaped with \ or inside a regexp.
21985 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
21987         * org.el (org-additional-option-like-keywords): Add PROPERTIES to
21988         the list of completable meta line words.
21989         (org-complete): Complete property names after #+PROPERTY.
21991 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21993         * ob-python.el (org-babel-python-evaluate-session): Make temp file
21994         names consistent.
21996 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
21998         * ob-clojure.el (org-babel-clojure-evaluate-external-process):
21999         Delete extra format argument.
22001 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
22003         * ob-org.el (org-babel-org-export): Typo in docstring.
22005 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
22007         * ob-sh.el (org-babel-sh-evaluate): Remove unused temporary file
22008         variable.
22010 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
22012         * ob-scheme.el (org-babel-execute:scheme): Alter temp file name.
22014 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
22016         * ob.el (org-babel-process-file-name): New function
22017         (org-babel-maybe-remote-file): Delete function.
22019 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
22021         * ob-C.el (org-babel-C-execute): Remove unused variable.
22023 2010-11-11  David Maus  <dmaus@ictsoc.de>
22025         * org.el (org-make-link-string): Prevent superfluous colon.
22027 2010-11-11  David Maus  <dmaus@ictsoc.de>
22029         * org.el (org-make-org-heading-search-string): Leave headline
22030         intact.
22032 2010-11-11  David Maus  <dmaus@ictsoc.de>
22034         * org.el (org-make-link-string): Don't escape characters in link
22035         type.
22037 2010-11-11  Bastien Guerry  <bzg@gnu.org>
22039         * org-capture.el (org-capture-templates): Update docstring to
22040         advertise %:org-date.
22042 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
22044         * ob-dot.el (org-babel-execute:dot): Automatically specifies
22045         "-T<ext>" based on file name extension.
22047 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
22049         * ob-org.el (org-babel-org-export): Raise error on nested export
22050         call.
22052 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
22054         * ob-plantuml.el (org-babel-execute:plantuml): Support for svg
22055         output files.
22057 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
22059         * ob.el (org-babel-demarcate-block): Better initialization of
22060         stars.
22062 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
22064         * org-src.el (org-src-tab-acts-natively): Add customize interface.
22066 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
22068         * org-src.el (org-src-strip-leading-and-trailing-blank-lines):
22069         New variable allowing prevention of automatic stripping of leading and
22070         trailing blank lines when exiting edit buffer.
22071         (org-edit-src-exit): Respect value of
22072         `org-src-strip-leading-and-trailing-blank-lines'
22073         (org-src-native-tab-command-maybe):
22074         Bind `org-src-strip-leading-and-trailing-blank-lines' to nil during
22075         this function.
22077 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
22079         * org-src.el (org-edit-src-code): If mark was inside code block
22080         then code edit buffer inherits mark with active region.
22082 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
22084         * ob.el (org-babel-demarcate-block): Fix compiler warnings.
22086 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
22088         * ob.el (org-babel-demarcate-block): Better handling of empty
22089         space around demarcated area.
22091 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
22093         * org-agenda.el (org-agenda-goto-date): Turn off prefer future for
22094         this command.
22096 2010-11-11  David Maus  <dmaus@ictsoc.de>
22098         * org-gnus.el (org-gnus-open-nntp): New function.
22100 2010-11-11  David Maus  <dmaus@ictsoc.de>
22102         * org-wl.el (org-wl-open-nntp): New function.
22104 2010-11-11  David Maus  <dmaus@ictsoc.de>
22106         * org-wl.el (org-wl-open): Open message by numeric reference if
22107         article part is not a message id.
22109 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
22111         * org-agenda.el (org-agenda-filter-apply): Move cursor to a
22112         visible line.
22114 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
22116         * ob.el (org-babel-demarcate-block): Interactive demarcation of
22117         code blocks.
22119         * ob-keys.el (org-babel-key-bindings): Key bindings for block
22120         demarcation.
22122 2010-11-11  Bastien Guerry  <bzg@gnu.org>
22124         * org.el (org-link-types): Add the "message" link type.
22126 2010-11-11  David Maus  <dmaus@ictsoc.de>
22128         * org.el (org-link-types): Add 'message:' link type to default
22129         link types.
22131 2010-11-11  Bastien Guerry  <bzg@gnu.org>
22133         * org-gnus.el (org-gnus-store-link): Add the :date property to
22134         gnus links, allowing the use of %:date in capture templates.
22136 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22138         * org-list.el (org-cycle-list-bullet): Follow order of bullets
22139         indicated in doc-string.
22141         * org-list.el (org-list-bottom-point-with-indent): List is ended
22142         when a line is less indented that the last item, not the less
22143         indented item.
22145 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
22147         * ob-exp.el (org-babel-exp-src-blocks): Now switching back to the
22148         original file before resolving code block parameters to ensure
22149         headline and buffer wide parameters are taken into consideration
22150         when only a narrowed portion of the file is exported.
22152 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
22154         * org.el (org-forward-same-level): Fix docstring.
22156 2010-11-11  Sebastian Rose  <sebastian_rose@gmx.de>
22158         * org-publish.el (org-publish-attachment): Put the attachment into
22159         the right directory.
22161 2010-11-11  Jambunathan K  <kjambunathan@gmail.com>  (tiny change)
22163         * org.el (org-goto-first-child): New command.
22165 2010-11-11  Matt Lundin  <mdl@imapmail.org>
22167         * org-agenda.el (org-prepare-agenda): If the agenda is called from
22168         within the agenda via an elisp link, such as
22169         [[elisp:(org-agenda-list)]], org-prepare-agenda erases the buffer
22170         of the file containing the link, since that buffer is current
22171         during org-prepare agenda (due to a with-current-buffer in
22172         org-agenda-open-link).  An additional test now ensures that the
22173         agenda buffer is in fact current when the buffer is erased and
22174         local variables for the agenda are set.
22176 2010-11-11  David Maus  <dmaus@ictsoc.de>  (tiny change)
22178         * org-exp.el (org-infile-export-plist): Define property macro.
22180 2010-11-11  David Maus  <dmaus@ictsoc.de>
22182         * org-mhe.el (org-mhe-get-header): Remove possible folding white
22183         space in message header field.
22185 2010-11-11  David Maus  <dmaus@ictsoc.de>
22187         * org-feed.el (org-feed): Fix typo in customization group :tag
22188         property.
22190 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
22192         * org-latex.el (org-export-latex-tag-markup): New option.
22193         (org-export-latex-keywords-maybe):
22194         Use `org-export-latex-tag-markup'.
22196 2010-11-11  Rémi Vanicat  <vanicat@debian.org>  (tiny change)
22198         * org-icalendar.el (org-icalendar-use-UTC-date-time): New option.
22199         (org-ical-ts-to-string): Use UTC time when requested.
22201 2010-11-11  Noorul Islam  <noorul@noorul.com>  (tiny change)
22203         * org-html.el (org-html-cvt-org-as-html): Do not convert protocol
22204         from 'file' to 'http'.
22206 2010-11-11  David Maus  <dmaus@ictsoc.de>
22208         * org.el (org-store-log-note): Fix wrong usage
22209         of`org-adapt-indentation'.
22211 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22213         * org.el (org-skip-over-state-notes): Do not compute bottom point
22214         at each item.
22216         * org-mouse.el (org-mouse-for-each-item): Use `org-apply-on-list'
22217         instead of moving to each item.
22219 2010-11-11  David Maus  <dmaus@ictsoc.de>
22221         * org-capture.el (org-capture-templates): Small fix in doc string.
22223 2010-11-11  aaa bbb  <dominik@powerbook-g4-12-van-aaa-bbb.local>
22225         * org-archive.el (org-get-local-archive-location):
22226         Use `org-archive-location' as default.
22228 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
22230         * ob-C.el (org): No longer requires org.
22232         * ob-ledger.el (org): No longer requires org.
22234 2010-11-11  David Maus  <dmaus@ictsoc.de>
22236         * org.el (org-priority): Save match data before call to
22237         `read-char-exclusive'.
22239 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22241         * org-list.el (org-list-to-generic): Descriptions labels can be
22242         any suit of symbols, and will end at double colons.
22244 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22246         * org.el (org-indent-line-function): Indent past [@num] and
22247         [@start:num], consistently with what is already done with
22248         checkboxes.
22250 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22252         * org.el (org-store-log-note): Indent new notes to the right
22253         column.  Also take `org-list-two-spaces-after-bullet-regexp' into
22254         consideration when creating the note.
22256 2010-11-11  David Maus  <dmaus@ictsoc.de>
22258         * org-gnus.el (nnimap-group-overview-filename): Declare function
22259         to silence byte compiler.
22261 2010-11-11  David Maus  <dmaus@ictsoc.de>
22263         * org-gnus.el (org-gnus-nnimap-query-article-no-from-file):
22264         New customization variable.
22265         (org-gnus-nnimap-cached-article-number): New function.
22266         (org-gnus-follow-link): Try to fetch cached article number of
22267         message-id.
22269 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
22271         * ob-org.el (org-babel-org-default-header): Used to insert a dummy
22272         first line into code blocks before export so that the first line
22273         is not interpreted as a title
22274         (org-babel-org-export): Use new dummy code block prefix.
22276 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
22278         * ob.el (org-babel-insert-result): No longer throws error when
22279         inserting an empty result.
22281 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
22283         * ob-tangle.el: Autoload org-babel-tangle-lang-exts from ob-tangle.
22285 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
22287         * ob.el (org-babel-do-in-edit-buffer):
22288         Use `org-babel-where-is-src-block-head' to test for source block at
22289         point.
22291 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
22293         * ob-keys.el (org-babel-key-bindings): Adding key-binding for
22294         `org-babel-goto-src-block-head'.
22296         * ob.el (org-babel-goto-src-block-head): Jump to the head of the
22297         current code block.
22299 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
22301         * ob.el (org-babel-next-src-block): Now raising more informative
22302         error when no further code blocks can be found.
22303         (org-babel-previous-src-block): Now raising more informative error
22304         when no previous code blocks can be found.
22306 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
22308         * org-exp-blocks.el
22309         (org-export-preprocess-after-include-files-hook): Now using this
22310         hook instead of `org-export-preprocess-hook'.
22312 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
22314         * ob-plantuml.el (org-babel-execute:plantuml): ????
22316 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
22318         * ob-python.el (org-babel-python-evaluate): Refactor as call to
22319         either `org-babel-python-evaluate-external-process' or
22320         `org-babel-python-evaluate-session'.
22321         (org-babel-python-evaluate-external-process): New function to
22322         handle evaluation in external process.
22323         (org-babel-python-evaluate-session): New function to handle
22324         evaluation in emacs inferior process.
22326 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
22328         * ob-org.el (org-babel-execute:org): Evaluates body to latex ascii
22329         or html respecting :results header arg
22330         (org-babel-org-export): Exports a string of text to an output
22331         format.
22333 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
22335         * ob.el (org-babel-insert-result): Remove existing results when
22336         nil results are returned.
22338 2010-11-11  David Maus  <dmaus@ictsoc.de>
22340         * org-ascii.el (org-export-as-ascii): Bind and set link path for
22341         link type specific markup function.
22343 2010-11-11  David Maus  <dmaus@ictsoc.de>
22345         * org-clock.el (notifications-notify): Properly declare function
22346         to silence byte compiler.
22348 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22350         * org-list.el (org-insert-item): Check invisibility of point at a
22351         meaningful location.
22353 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22355         * org-list.el (org-list-insert-item-generic): Updating checkboxes
22356         can modify bottom point of a list, so make it a marker before
22357         calling `org-update-checkbox-count-maybe'.
22359 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
22361         * org.el (org-src-fontify-natively): Set to nil by default.
22362         Supply customize interface.
22364 2010-11-11  Bastien Guerry  <bzg@gnu.org>
22366         * org-ascii.el (org-export-as-ascii): Fix bug in ASCII export: use
22367         `org-bracket-link-analytic-regexp++' to match the link type.
22369 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
22371         * ob-tangle.el (org-babel-tangle-collect-blocks): Rename `lang' to
22372         `language'.
22374 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
22376         * ob-tangle.el (org-babel-tangle-comment-format-beg):
22377         Format string specifying the link-comment preceding a code block
22378         (org-babel-tangle-comment-format-end): Format string specifying
22379         the link-comment following a code block
22380         (org-babel-tangle-collect-blocks): Storing more information in the
22381         spec of a tangling code block
22382         (org-babel-spec-to-string): Now makes use of customizable
22383         link-comment formats.
22385 2010-11-11  Achim Gratz  <Stromeko@stromeko.net>  (tiny change)
22387         * org.el (org-delete-backward-char): Check for nil overwrite-mode
22388         before inserting spaces.
22390 2010-11-11  David Maus  <dmaus@ictsoc.de>
22392         * org-icalendar.el (org-print-icalendar-entries): Exclude tags
22393         from summary of non-TODO ical entries.
22394         (org-print-icalendar-entries): Use `org-complex-heading-regexp' to
22395         exclude tags from summary of TODO ical entries.
22397 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
22399         * ob.el (org-babel-map-src-blocks): Now exposes much information
22400         about the code block in the form of let-bound local variables.
22402 2010-11-11  David Maus  <dmaus@ictsoc.de>
22404         * org-list.el (org-outline-regexp, org-ts-regexp)
22405         (org-ts-regexp-both, org-in-regexps-block-p)
22406         (org-level-increment, org-at-heading-p)
22407         (outline-previous-heading, org-icompleting-read)
22408         (org-time-string-to-seconds): Declare to fix compiler warning.
22410 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22412         * org-list.el (org-toggle-checkbox): Ignore items in drawers when
22413         used from an heading.  Send an error when no item is in region.
22415 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
22417         * ob.el (org-babel-do-in-edit-buffer): Use unwind-protect to
22418         ensure that edit buffer is exited.
22420 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
22422         * ob-tangle.el (org-babel-tangle-pad-newline): Can be used to
22423         control the amount of extra newlines inserted into tangled code
22424         (org-babel-tangle-collect-blocks): Now conditionally collects
22425         information to be used for "org" style comments
22426         (org-babel-spec-to-string): Now inserts "org" style comments, and
22427         obeys the newline configuration variable when inserting whitespace.
22429 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
22431         * ob-tangle.el (org-babel-pre-tangle-hook): Defines new tangle
22432         hook
22433         (org-babel-tangle): Calls new tangle hook.
22435 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
22437         * org-capture.el (org-capture): Compute the length of the correct
22438         string when removing properties.
22440 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
22442         * ob-plantuml.el (org-babel-execute:plantuml): Now expanding file
22443         names before shell quoting.
22445 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
22447         * org-src.el (org-src-tab-indents-natively): New variable
22448         controlling whether language-native TAB action should be performed
22449         (org-src-native-tab-command-maybe): New function to perform
22450         language-native TAB action.
22451         (org-tab-first-hook): Add `org-src-native-tab-command-maybe'.
22453 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
22455         * ob-plantuml.el (org-babel-execute:plantuml): Explicitly check
22456         `org-plantuml-jar-path' before use.
22458 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
22460         * org-src.el (org-src-font-lock-fontify-block): Re-use hidden
22461         language major mode buffers during fontification.
22463 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
22465         * org.el (org-fontify-meta-lines-and-blocks): Alter main regexp to
22466         match code blocks with switches and header args.
22467         Call `org-src-font-lock-fontify-block' for automatic fontification of
22468         code in code blocks, controlled by variable
22469         `org-src-fontify-natively'.
22470         (org-src-fontify-natively): New variable.
22472 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
22474         * ob-ruby.el (org-babel-expand-body:ruby): Remove requirement of
22475         inf-ruby.
22477 2010-11-11  Noorul Islam  <noorul@noorul.com>  (tiny change)
22479         * org-html.el (org-html-make-link): (expand-file-name) removes
22480         one "/" from "///path-to-file", so add one.  Anything other than
22481         'file' type should be exported along with the type.
22483 2010-11-11  Noorul Islam  <noorul@noorul.com>  (tiny change)
22485         * org.el (org-insert-subheading): Fix compiler warning
22486         (org-insert-todo-subheading): Fix compiler warning.
22488 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
22490         * org-capture.el (org-capture): Remove read-only text properties
22491         from capture text.
22492         (org-capture-set-target-location): Throw an error if file+headline
22493         target does not point into a file which is in Org mode.
22495 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
22497         * ob.el (org-babel-map-src-blocks): Prefer `when' to `if'.
22499 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
22501         * org-src.el (org-edit-src-code): Improve docstring.
22503 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
22505         * ob.el (org-babel-execute-src-block): Document prefix argument in
22506         docstring.
22508 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
22510         * ob-ditaa.el (org-babel-execute:ditaa): Now expanding
22511         org-ditaa-jar-path with expand-file-name.
22513 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
22515         * ob.el (org-babel-execute-subtree): Pass prefix arg through to
22516         `org-babel-execute-src-block'.
22518 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22520         * org-ascii.el (org-export-ascii-preprocess): Allow [@start:x] and
22521         [@x] syntax for list numbering.
22523 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22525         * org.el (org-indent-line-function): Indentation of source block
22526         is left to `org-edit-src-exit' and shouldn't be modified by
22527         `org-indent-line-function'.  Indentation of others blocks should be
22528         the same as the #+begin line.
22530 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
22532         * ob.el (org-babel-map-src-blocks): If FILE is nil evaluate BODY
22533         forms on source blocks in current buffer; restore point in current
22534         buffer.
22536 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22538         * org-list.el (org-list-struct): Accept list boundaries as an
22539         argument in order to avoid computing `org-list-top-point' and
22540         `org-list-bottom-point' twice when indenting.
22542 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22544         * org-list.el (org-list-ending-method): Default value is now
22545         `both', to ensure maximum compatibility before previous
22546         implementation.
22548 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22550         * org-list.el (org-list-in-item-p-with-indent): Test if first line
22551         is the item beginning.
22553         * org-list.el (org-list-top-point-with-indent): Test if first line
22554         is a valid list beginning.
22556 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22558         * org-list.el (org-list-ending-method): New customizable variable
22559         to tell Org Mode how lists end.  See docstring.
22561 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22563         * org-list.el (org-indent-item-tree): Shifting step of top-level
22564         item depends on `org-level-increment'.
22566 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22568         * org.el (org-indent-line-function): Indent first non blank line
22569         after a list according to current heading level.
22571 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22573         * org-docbook.el (org-export-as-docbook): Remove check for
22574         indentation on lines that do not start with a list bullet.
22576         * org-html.el (org-export-as-html): Same thing.
22578 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22580         * org-list.el (org-list-bottom-point): Take into consideration
22581         that bound of search can be before true ending of the list.
22583 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22585         * org-list.el (org-list-struct-apply-struct): No longer shift
22586         item's body twice: one after replacing bullet and one after
22587         changing indentation.
22589 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22591         * org-list.el (org-list-struct-indent): Add code to replace
22592         bullets if needed when indenting.
22594 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22596         * org-list.el (org-list-insert-item-generic): A single item
22597         already counting blank lines in his body should be separated with
22598         the next one by a blank line.  Moreover, if user already provided
22599         blank lines, follow his wishes.
22601 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22603         * org-list.el (org-indent-item-tree): When moving top item of a
22604         *-list to column 0, only the first item had its bullet changed to
22605         -.  It now changes all items of the top-level list, as expected.
22607 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22609         * org-list.el (org-toggle-checkbox): Go to beginning of line
22610         before processing.
22612 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22614         * org-list.el (org-list-struct-apply-struct): Check if ancestor
22615         exists.
22617 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22619         * org-list.el (org-renumber-ordered-list): Check for [@start:x] is
22620         done at each item.
22622 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22624         * org-list.el: Removed unused variable
22625         `org-suppress-item-indentation'.
22627         * org-list.el (org-renumber-ordered-list): Skip item if bullet
22628         number is already good.
22630 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22632         * org-list.el (org-list-automatic-rules): Doc-string reflects this
22633         change.
22635         * org-list.el (org-indent-item-tree): Prevent whole list from
22636         being moved when user is not moving subtree.
22637         Thus `org-cycle-item-indentation' will not allow to move the list.
22639 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22641         * org-list.el (org-indent-item-tree): Remove region code.  It was
22642         prone to errors and undocumented.
22644         * org-list.el (org-item-indent-positions): Better heuristics to
22645         determine what bullet the item will have when demoted.
22647 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22649         * org-list.el (org-list-bullet-string): First check if
22650         `org-list-two-spaces-after-bullet-regexp' isn't nil.
22652 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22654         * org-list.el (org-list-bullet-string): Do not modify match-data.
22656         * org.el (org-toggle-item): Now working again when changing list
22657         items into plain text.  Moreover take into consideration
22658         `org-list-two-spaces-after-bullet-regexp'.
22660 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22662         * org-list.el (org-indent-item-tree): Remove unnecessary bullets
22663         fix, and improved heuristics to determine bullet when indenting.
22665         * org-list.el (org-item-indent-positions): Function now returns
22666         sane results when there are two lists separated with blank lines
22667         only.
22669 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22671         * org-docbook.el (org-export-as-docbook): Use override="num" in
22672         any listitem matching [@start:num].
22674         * org-html.el (org-export-as-html): Use value="num" in any li
22675         matching [@start:num].
22677 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22679         * org.el (org-set-font-lock-defaults): Correct fontification for
22680         checkboxes found after [@start:?].
22682         * org-list.el (org-list-at-regexp-after-bullet-p): Skip any
22683         [@start:?]  when looking at a regex after a bullet.
22685         * org-list.el (org-toggle-checkbox): Correct insertion of
22686         checkboxes when there is already a [@start:?] in the item.
22688         * org-list.el (org-checkbox-blocked-p): Properly check if there's
22689         an unchecked item before.
22691         * org-list.el (org-list-parse-list): Function handles items having
22692         both a counter and a checkbox.
22694 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22696         * org-list.el (org-cycle-item-indentation): Org-tab-ind-state
22697         stores both indentation and bullet when cycle started.
22699 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22701         * org-list.el: `org-at-description-p' renamed to
22702         `org-at-item-description-p', `org-first-list-item-p' renamed to
22703         `org-list-first-item-p', `org-end-of-item-text-before-children'
22704         renamed to `org-end-of-item-or-at-child'.
22706 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22708         * org.el (org-ctrl-c-ctrl-c): Call `org-fix-bullet-type' instead
22709         of `org-maybe-renumber-ordered-list' and `org-fix-bullet-type'
22710         before toggling a checkbox.
22712 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22714         * org-list.el (org-list-bullet-string): New function returning
22715         bullet concatenated with an appropriate number of white spaces.
22717         * org-list.el (org-list-insert-item-generic): Insert the right
22718         bullet, with help of `org-list-bullet-string'.
22720         * org-list.el (org-indent-item-tree):
22721         Use `org-list-bullet-string'.
22723         * org-list.el (org-fix-bullet-type): Use `org-list-bullet-string'.
22725         * org-list.el (org-toggle-checkbox): Send an error when
22726         `org-toggle-checkbox' is trying to insert a checkbox at a
22727         description item.
22729         * org-list.el (org-item-re): Modify regexp so it can catch
22730         correct number of white space before item body.
22732         * org-list.el (org-list-at-regexp-after-bullet-p): Take into
22733         consideration new `org-item-re'.
22735 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22737         * org-list.el (org-list-insert-item-generic): The second item in a
22738         list will be separated from its predecessor with the number of
22739         blank lines separating the first item from its parent, if any, or
22740         no blank line.
22742 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22744         * org-list.el (org-indent-item-tree): Fix and reorder every list
22745         and sublist, from parent of list that has moved if indenting, or
22746         from list at point if outdenting.
22748 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22750         * org-list.el (org-indent-item-tree): Try to keep relative
22751         position on line.  It can't if point is in white spaces before
22752         bullet because mixed tabs and spaces make some columns
22753         unattainable.
22755 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22757         * org-list.el (org-cycle-item-indentation): Cycle when the whole
22758         item only contains bullet and maybe a checkbox.  Previously, TAB
22759         would cycle when the first line of the item was blank.
22761 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22763         * org-list.el (org-cycle-item-indentation): Allow a point just
22764         after a description item or a checkboxed item to start cycling.
22766 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22768         * org-list.el (org-cycle-list-bullet):
22769         Check `org-plain-list-ordered-item-terminator' before allowing 1. or 1)
22770         as valid bullets when cycling.
22772 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22774         * org-list.el (org-cycle-item-indentation): Do return t if and
22775         only if cycling is possible and succeded.
22777 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22779         * org-list.el (org-indent-item-tree): When outdenting a subtree,
22780         the last item shouldn't have a children.
22782 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22784         * org-list.el (org-cycle-item-indentation): Cycling should play
22785         nicely with indent rule in `org-list-automatic-rules'.
22787 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22789         * org-list.el (org-indent-item-tree): If indent rule is activated,
22790         it should be impossible to outdent an item having children without
22791         moving its subtree.  Improved reordering of lists modified by
22792         cycling indentation.
22794 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22796         * org-list.el (org-maybe-renumber-ordered-list): Remove call for
22797         `org-fix-bullet-type' to prevent infinite loop, and some checks
22798         already done in `org-renumber-ordered-list'.
22800         * org-list.el (org-fix-bullet-type): Remove a check and call
22801         directly `org-maybe-renumber-ordered-list'.
22803 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22805         * org-list.el (org-indent-item-tree): It shouldn't be possible to
22806         indent the first item of a sublist (though outdent is possible) as
22807         it would break list's structure.
22809 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22811         * org-list.el (org-list-insert-item-generic): When local search
22812         doesn't help, search the list globally for blank lines.  Moreover,
22813         don't bother with new lists, and add 1 blank line.
22815 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22817         * org-capture.el (org-capture-place-item):
22818         Use `org-search-forward-unenclosed' and
22819         `org-search-backward-unenclosed' and new variable
22820         `org-item-beginning-re'.
22822         * org-list.el (org-item-beginning-re): Regexp matching beginning
22823         of an item.
22825 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22827         * org-list.el (org-cycle-list-bullet): Put back support for
22828         'previous argument.
22830 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22832         * org-list.el (org-in-item-p): Handle case when point is at an
22833         heading.
22835         * org-list.el (org-list-make-subtree): Add protection when used
22836         outside of list.
22838         * org-list.el (org-insert-item): Remove useless hack now
22839         `org-in-item-p' is fixed.
22841         * org-timer.el (org-timer-item): Remove useless hack now
22842         `org-in-item-p' is fixed.
22844 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22846         * org-list.el (org-cycle-list-bullet): Prevent description items
22847         from being numbered.  String argument is also recognized now, as
22848         long as it is a valid bullet.
22850 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22852         * org-list.el (org-indent-item-tree): Moving indentation of top
22853         list item will make the whole list move.
22855         * org-list.el (org-apply-on-list): Function is less sensitive to
22856         changes of indentation.
22858 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22860         * org-list.el (org-at-item-checkbox-p): Add whitespaces at the end
22861         of the regexp.
22863         * org-list.el (org-checkbox-blocked-p): Use new checkbox regexp.
22865         * org-list.el (org-cycle-item-indentation): Allow cycling
22866         description items and checkbox items.
22868         * org-list.el (org-toggle-checkbox): Use new checkbox regexp.
22870         * org-list.el (org-reset-checkbox-state-subtree): Use new checkbox
22871         regexp.
22873 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22875         * org-list.el (org-insert-item-internal): Guessing of blank lines
22876         number is made by looking at neighboring items, if any.
22878 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22880         * org-list.el (org-sort-list): Add the possibility to sort timer
22881         lists with the ?t or ?T options.
22883 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22885         * org-list.el (org-search-unenclosed-internal): New function to
22886         handle both `org-search-forward-unenclosed' and
22887         `org-search-backward-unenclosed'.
22889         * org-list.el (org-search-backward-unenclosed): Can send errors
22890         now.  Removed useless usage of COUNT.
22892         * org-list.el (org-search-forward-unenclosed): Can send errors
22893         now.  Removed useless usage of COUNT.
22895         * org-list.el (org-update-checkbox-count):
22896         Use `org-search-forward-unenclosed' and
22897         `org-search-backward-unenclosed' instead of `re-search-forward'
22898         and `re-search-backward'.
22900         * org-list.el (org-sort-list): Use `org-search-forward-unenclosed'
22901         and `org-search-backward-unenclosed' instead of
22902         `re-search-forward' and `re-search-backward'.
22904         * org-list.el (org-list-make-subtree):
22905         Use `org-search-forward-unenclosed' and
22906         `org-search-backward-unenclosed' instead of `re-search-forward'
22907         and `re-search-backward'.
22909 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22911         * org-list.el (org-insert-item-internal): Fixes the problem when
22912         point was before the first char of the item's body.
22914 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22916         * org-timer.el (org-timer-item): Refactoring.  Compute timer string
22917         before inserting it in the buffer.
22919         * org-timer.el (org-timer): Add an optional argument to return
22920         timer string instead of inserting it.
22922 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22924         * org-list.el (org-insert-item-internal): New function to handle
22925         positioning and contents of an item being inserted at a specific
22926         pos.  It is not possible anymore to split a term in a description
22927         list or a checkbox when inserting a new item.
22929         * org-list.el (org-insert-item): Refactored by using the new
22930         `org-insert-item-internal' function.
22932         * org-timer.el (org-timer-item): Refactored by using the new
22933         `org-insert-item-internal' function.
22935 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22937         * org-list.el (org-list-bottom-point): Be sure to check real
22938         ORG-OUTLINE-REGEXP and not outline-regexp, that might be modified.
22940         * org.el (org-cycle-internal-local): Cycle up to end of subtree or
22941         end of item if we are in a list.
22943 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22945         * org-list.el (org-insert-item): Move before any special block in
22946         a list prior to add a new item.
22948         * org-timer.el (org-timer-item): When in a timer list, insert a
22949         new timer item like `org-insert-item'.  If in another list, send an
22950         error.  Otherwise, start a new timer list.
22952 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22954         * org-list.el: Minor refactoring.
22956 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22958         * org-timer.el (org-timer-item): Insert description list item at
22959         the right column.
22961         * org-list.el (org-insert-item): Insert the right number of blank
22962         lines before a relative timer.
22964 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22966         * org-list.el (org-insert-item): Remove restriction on latex
22967         blocks.
22969 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22971         * org-list.el (org-search-backward-unenclosed): Do not stop in
22972         protected places.
22974         * org-list.el (org-search-forward-unenclosed): Do not stop in
22975         protected places.
22977         * org-latex.el (org-export-latex-lists): Use the fact that
22978         org-search-forward do not stop anymore at protected places.
22980 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22982         * org-list.el (org-search-backward-unenclosed): Do not prevent
22983         list items from being inside LaTeX blocks.
22985         * org-list.el (org-search-forward-unenclosed): Do not prevent list
22986         items from being inside LaTeX blocks.
22988 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22990         * org-list.el (org-in-item-p): Do not widen before checking if we
22991         are in item.
22993         * org-list.el (org-list-send-list): We cannot count on
22994         `org-list-top-point' and `org-list-bottom-point' before buffer is
22995         narrowed.  Find bounds of list otherwise.
22997 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
22999         * org-list.el (org-list-end-regexp): By default, list ending is
23000         exactly 2 blank lines.
23002 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
23004         * org-docbook.el (org-export-as-docbook): When we find an empty
23005         line, we do not need to check for
23006         `org-empty-line-terminates-plain-lists' because we would have
23007         found end-list marker before.
23009         * org-html.el (org-export-as-html): Same.
23011 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
23013         * org-list.el (org-insert-item): Simplify count of blank lines to
23014         insert.
23016 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
23018         * org-list.el (org-list-end-regexp): New customizable variable to
23019         define what string should end lists.
23021         * org-list.el (org-list-end-re): Function is now aware of
23022         `org-list-end-regexp'.
23024 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
23026         * org-html.el (org-export-as-html): Code cleanup.
23028 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
23030         * org-docbook.el (org-export-as-docbook): Properly close any open
23031         list when seeing ORG-LIST-END.  Removed any reference to now
23032         unneeded DIDCLOSE variable.
23034 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
23036         * org-exp.el (org-export-mark-list-ending): Fix number of blank
23037         lines inserted after a list.
23039         * org-list.el (org-list-parse-list): Fix case when
23040         `org-list-end-re' would have an indentation greater than current
23041         list.
23043 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
23045         * org-exp.el (org-export-mark-list-ending): Differentiate between
23046         export backends, and replace `org-list-end-re' by a blank line
23047         upon exporting.
23049 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
23051         * org-html.el (org-export-as-html): Delete didclose and everything
23052         related to it, as it is no longer needed.
23054 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
23056         * org-html.el (org-export-html-preprocess): Remove unneeded
23057         insertion of list end marker, as it is now handled by
23058         `org-export-mark-list-ending'.
23060         * org-html.el (org-export-as-html): Cleaner termination of lists.
23062         * org-exp.el (org-export-mark-list-ending): New function to insert
23063         specific markers at the end of lists when exporting to a backend
23064         not using `org-list-parse-list'.  This function is called early in
23065         `org-export-preprocess-string', while it is still able to
23066         recognize lists.
23068         * org-latex.el (org-export-latex-lists): Better search for
23069         lists.  It now only finds items not enclosed and not protected.
23071 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
23073         * org-list.el: Replaced `re-search-forward' by
23074         `org-search-forward-unenclosed' where it made sense.
23076 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
23078         * org-list.el (org-apply-to-list): Now a return value is handed at
23079         each new call of the function applied.
23081         * org-list.el (org-fix-bullet-type): Use the new
23082         `org-apply-to-list' format.
23084         * org-list.el (org-renumber-ordered-list): Use the new
23085         `org-apply-to-list' format.
23087 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
23089         * org.el (org-in-regexps-block-p): Minor fix: limit wasn't
23090         correctly used.
23092         * org-list.el (org-search-forward-unenclosed): Better regexp used.
23094         * org-list.el (org-search-backward-unenclosed): Better regexp
23095         used.
23097 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
23099         * org-list.el (org-sort-list): End-rec function was ill-defined.
23101 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
23103         * org-list.el (org-search-forward-unenclosed): Fix behavior when
23104         last occurrence was enclosed.
23106         * org-list.el (org-search-backward-unenclosed): Fix behavior when
23107         last occurrence was enclosed.
23109 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
23111         * org.el (org-in-regexps-block-p): Fix documentation.
23113 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
23115         * org-list.el (org-search-backward-unenclosed): Fix block regexp.
23117         * org-list.el (org-search-forward-unenclosed): Fix block regexp.
23119         * org-list.el (org-list-parse-list): Minor fix.
23121 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
23123         * org-list.el (org-list-parse-list): Delete `org-list-end-re' when
23124         called with t argument.
23126 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
23128         * org-html.el (org-export-html-preprocess):
23129         Replace `org-list-end-re' by a blank line during pre-process.
23131 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
23133         * org-list.el (org-list-bottom-point): No need for square brackets
23134         for `skip-chars-backward'.
23136 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
23138         * org-html.el: Do not delete space between end of list and
23139         beginning of the following.
23141 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
23143         * org-html.el: Preprocess buffer string and add ORG-LIST-END where
23144         needed.  Lists should not end before seeing this.
23146 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
23148         * org-html.el: Notice end of lists.
23150 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
23152         * org-list.el (org-list-parse-list): Better handling of
23153         restrictions when function is called on a list with sublists.
23155         * org-list.el (org-list-send-list): Find the true ending of the
23156         list being sent.
23158         * org-list.el (org-list-radio-list-templates): Templates are more
23159         specific to lists.
23161 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
23163         * ob-js.el (org-babel-js-eoe): Indicate end of input
23164         (org-babel-execute:js): Support for session evaluation
23165         (org-babel-prep-session:js): Fleshed out definition
23166         (org-babel-js-initiate-session): Can initiate a session using
23167         mozrepl.
23169 2010-11-11  David Maus  <dmaus@ictsoc.de>
23171         * org.el (org-set-regexps-and-options): Protect escape char in
23172         `org-complex-heading-regexp-format'.
23174 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
23176         * ob-scheme.el (org-babel-scheme-eoe): For marking the end of
23177         session-based evaluation
23178         (org-babel-execute:scheme): Now supports session-based evaluation
23179         (org-babel-prep-session:scheme): Now works and defines variables
23180         (org-babel-scheme-initiate-session): Now works using run-scheme
23181         from cmuscheme.
23183 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
23185         * org.el (org-export-latex-default-packages-alist): Remove the
23186         t1enc package - this is already covered by fontenc.
23188 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
23190         * ob.el (with-parsed-tramp-file-name): Declared
23191         (org-babel-tramp-localname): Ensure variable name exists locally.
23193 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
23195         * ob.el (org-babel-temp-file): Don't use babel temporary directory
23196         in remote case; use make-temp-file with remote file name so that
23197         temp file is guaranteed not to exist previously on remote machine.
23198         (org-babel-tramp-localname): New function to return local name
23199         portion of possibly remote file specification.
23201 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
23203         * ob-R.el (org-babel-R-write-object-command): New unified R
23204         command for writing results to file
23205         (org-babel-R-wrapper-method): Remove variable
23206         (org-babel-R-wrapper-lastvar): Remove variable
23207         (org-babel-R-evaluate-external-process): Use new R command
23208         (org-babel-R-evaluate-session): Use new R command.
23210 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
23212         * ob-comint.el
23213         (org-babel-comint-eval-invisibly-and-wait-for-file): New function
23214         to evaluate code invisibly and block until output file exists.
23216         * ob-R.el (org-babel-R-evaluate-session): Use `ess-eval-buffer' to
23217         evaluate R code in session for :results value.  Write result to
23218         file invisibly using new function
23219         `org-babel-comint-eval-invisibly-and-wait-for-file'.
23221 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
23223         * org-capture.el (org-capture-fill-template): Align tags after
23224         insertion.
23226 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
23228         * org-exp.el (org-export-concatenate-multiline-emphasis):
23229         Ignore matches that start in a headline.
23231 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
23233         * ob-plantuml.el (org-babel-execute:plantuml): Wrapping in-file
23234         and out-file in shell-quote-argument.
23236 2010-11-11  David Maus  <dmaus@ictsoc.de>
23238         * org-docview.el (org-docview-store-link): Use expanded macro to
23239         get current page.
23240         (doc-view-goto-page, image-mode-window-get): Declare functions for
23241         byte compiler.
23243 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
23245         * ob-scheme.el: Very preliminary support for evaluating scheme
23246         code blocks.
23248         * org.el (org-babel-load-languages): Adding scheme.
23250 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
23252         * ob.el (require): Remove circular (require 'org).
23254 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
23256         * ob-R.el (ess-make-buffer-current): Declared.
23257         (ess-ask-for-ess-directory): Declared.
23258         (ess-local-process-name): Declared.
23259         * ob-latex.el (org-babel-latex-tex-to-pdf): Capturing free variable.
23261         * ob.el (org-edit-src-code): Fixing arguments.
23262         (org-edit-src-exit): Declared.
23263         (org-outline-overlay-data): Declared.
23264         (org-set-outline-overlay-data): Declared.
23266 2010-11-11  Glenn Morris  <rgm@gnu.org>
23268         * ob.el: Require org when compiling.
23269         (org-save-outline-visibility): Remove macro declaration.
23271         * ob-emacs-lisp.el: Require ob-comint when compiling, for macros.
23272         Remove unnecessary/macro declarations.
23274         * org-docview.el: Require doc-view when compiling.
23275         (doc-view-goto-page): Autoload rather than declaring.
23276         (doc-view-current-page): Remove macro declaration.
23278         * ob.el (tramp-compat-make-temp-file, org-edit-src-code)
23279         (org-entry-get, org-table-import): Fix declarations.
23280         (org-match-string-no-properties): Remove declaration.
23282         * ob-sh.el (org-babel-comint-in-buffer)
23283         (org-babel-comint-wait-for-output, org-babel-comint-buffer-livep)
23284         (org-babel-comint-with-output): Remove unnecessary declarations.
23286         * ob-R.el (orgtbl-to-tsv): Fix declaration.
23288         * org-list.el (org-entry-get): Fix declaration.
23290 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
23292         * ob.el (org-babel-remove-temporary-directory): Remove explicit
23293         second argument.
23295 2010-11-11  Magnus Henoch  <magnus.henoch@gmail.com>  (tiny change)
23297         * org-clock.el (org-clocktable-steps): Allow ts and te to be day
23298         numbers.
23300 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
23302         * org-macs.el (org-save-outline-visibility): Move from org.el.
23304 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
23306         * ob-org.el (org-babel-default-header-args:org): Additional
23307         ":results silent" default header argument for org code blocks.
23309 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
23311         * ob-exp.el (org-babel-exp-do-export): Remove hacky ":noeval",
23312         which is now an alias to ":eval no".
23314 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
23316         * ob.el (org-babel-remove-temporary-directory): The version of
23317         `delete-directory' found in files.el can not be assumed to be
23318         present on all versions, so this copies the recursive behavior of
23319         that command in such a way that all calls to delete-directory will
23320         also work with the built-in internal C implementation of that
23321         function.  This is not overly difficult as all elements of the
23322         directory can be assumed to be files.
23324 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
23326         * ob-C.el (org-babel-C-execute): Corrected arguments to
23327         org-babel-temp-file.
23329 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
23331         * ob.el (org-babel-temporary-directory): Variable to hold the
23332         value of the Babel temporary directory.
23334 2010-11-11  Aditya Siram  <aditya.siram@gmail.com>
23336         * ob.el (org-babel-load-in-session): Expanding noweb references
23337         when appropriate.
23339 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
23341         * org.el (org-make-link-regexps): Modify regexp of
23342         org-plain-link-re.
23344 2010-11-11  Noorul Islam  <noorul@noorul.com>  (tiny change)
23346         * org-habit.el (org-habit-parse-todo): Find sr-days only if
23347         scheduled-repeat is non nil.  Use 4th element of the list returned
23348         by (org-heading-components) as habit-entry.  Modify the error
23349         message to be more meaningful.
23351 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
23353         * ob-latex.el (org-babel-execute:latex): Adding new ":fit" and
23354         ":border" header arguments which both use the "preview" latex
23355         package to fit the resulting PDF image to the figure.
23357 2010-11-11  David Maus  <dmaus@ictsoc.de>
23359         * org-wl.el (org-wl-store-link): Don't try to store link if point
23360         is at end of buffer.
23362 2010-11-11  Harri Kiiskinen  <harkiisk@gmail.com>
23364         * org-publish.el (org-publish-project-alist): Document the new
23365         body-only property.
23366         (org-publish-org-to): Use the body-only property.
23368 2010-11-11  Jambunathan K  <kjambunathan@gmail.com>  (tiny change)
23370         * org.el (org-store-link): Return link when invoked
23371         non-interactively from an agenda buffer.
23373 2010-11-11  Jambunathan K  <kjambunathan@gmail.com>  (tiny change)
23375         * org.el (org-store-link): Storing of links to headlines in
23376         indirect buffers was broken.  Fix it.
23378 2010-11-11  Aidan Kehoe  <kehoea@parhasard.net>
23380         * ob-tangle.el (org-babel-tangle): Change the MODE argument to
23381         #'set-file-modes to use integer, not character syntax, avoiding
23382         compile problems with recent XEmacs.
23384 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
23386         * org-agenda.el (org-agenda-add-entry-text): Make sure we move
23387         forward even if there is no text to be added.
23389 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
23391         * org.el (org-make-tags-matcher): Read "\\-" as "-" in the
23392         tags/property matcher.
23394 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
23396         * org-exp.el (org-infile-export-plist): Bind case-fold-search to
23397         t.
23399 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
23401         * org-agenda.el (org-agenda-with-point-at-orig-entry): New macro.
23403 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
23405         * org-latex.el (org-export-latex-set-initial-vars):
23406         Bind `case-fold-search' to t around the search for special LaTeX setup.
23408         * org-beamer.el (org-beamer-after-initial-vars):
23409         Bind `case-fold-search' to t around the search for special BEAMER
23410         setup.
23412 2010-11-11  David Maus  <dmaus@ictsoc.de>
23414         * org-agenda.el (org-write-agenda): Delete PostScript file after
23415         creating conversion to PDF.
23417 2010-11-11  David Maus  <dmaus@ictsoc.de>
23419         * org-agenda.el (org-write-agenda): Move require statements to
23420         proper place in evaluated lisp expression.
23422 2010-11-11  David Maus  <dmaus@ictsoc.de>
23424         * org-agenda.el (org-write-agenda): Rename temporary buffer to
23425         remove dependency of `flet' macro.
23427 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
23429         * ob-lob.el (org-babel-lob-get-info): Edit docstring.
23431 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
23433         * ob-exp.el (org-babel-exp-lob-one-liners): Get parameter values
23434         from all standard sources when executing #+lob/#+call lines.
23436 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
23438         * ob-R.el (org-babel-R-evaluate): Break the two branches into two
23439         separate functions
23440         (org-babel-R-evaluate-external-process): New function to handle
23441         external process evaluation
23442         (org-babel-R-evaluate-session): New function to handle session
23443         evaluation.
23445 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
23447         * ob.el (org-babel-initiate-session): New function derived from
23448         previous `org-babel-switch-to-session'
23449         (org-babel-switch-to-session): Refactored to use new
23450         `org-babel-initiate-session'.
23452 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
23454         * ob.el (org-babel-switch-to-session): Supply missing "P" argument
23455         to (interactive).
23457 2010-11-11  David Maus  <dmaus@ictsoc.de>
23459         * org-feed.el (org-feed-format-entry): Decode entry according to
23460         its character encoding.
23462 2010-11-11  David Maus  <dmaus@ictsoc.de>  (tiny change)
23464         * org-feed.el (xml-substitute-special): Declare function for byte
23465         compiler.
23466         (org-feed-unescape): Remove.
23467         (org-feed-parse-rss-entry, org-feed-parse-atom-entry):
23468         Use `xml-substitute-special' to unescape XML entities.
23470 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
23472         * ob.el (org-babel-switch-to-session): Throw error if block if
23473         :session not in effect for the block.
23475 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
23477         * org-table.el (org-table-create-with-table.el): Align table
23478         before converting.
23480 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
23482         * ob.el (org-babel-do-in-edit-buffer): Suppress message and check
23483         that org-src buffer is current before attempting exit.
23485 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
23487         * org-src.el (ob-comint): Require 'ob-comint
23488         (org-src-babel-info): Define variable.
23490 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
23492         * ob.el (org-babel-do-in-edit-buffer): New macro to evaluate lisp
23493         in the language major mode edit buffer.
23494         (org-babel-do-key-sequence-in-edit-buffer): New function to call
23495         an arbitrary key sequence in the language major mode edit buffer.
23497         * org-src.el (org-src-switch-to-buffer): Add new allowed value
23498         'switch-invisibly for `org-src-window-setup'.
23500 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
23502         * org-src.el (ob-keys): Require ob-keys, because `org-babel-map'
23503         is used.
23504         (org-src-do-at-code-block): New macro to evaluate lisp with point
23505         at the start of the Org code block containing the code in this
23506         edit buffer.
23507         (org-src-do-key-sequence-at-code-block): New function to execute
23508         command bound to key at the Org code block containing the code in
23509         this edit buffer.
23511 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
23513         * ob-R.el (org-babel-R-associate-session): New function to
23514         associate R code edit buffers with ESS comint session.
23516 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
23518         * org-src.el (org-edit-src-code): If at src block, store babel
23519         info as buffer local variable.
23520         (org-src-associate-babel-session): New function to associate code
23521         edit buffer with comint session.  Does nothing unless a
23522         language-specific function named
23523         `org-babel-LANG-associate-session' exists.
23524         (org-src-babel-configure-edit-buffer): New function to be called
23525         in `org-src-mode-hook'.
23526         (org-src-mode-hook): Add `org-src-babel-configure-edit-buffer' to
23527         hook.
23529 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
23531         * ob.el (org-babel-switch-to-session-with-code): New function to
23532         generate split frame displaying edit buffer and session.
23534 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
23536         * org.el (org-set-tags): Consider org-indent-mode when computing
23537         the tags column.
23539 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
23541         * org-compat.el (org-looking-at-p): Only use looking-at-p when
23542         defined.
23544 2010-11-11  David Maus  <dmaus@ictsoc.de>
23546         * org-agenda.el (org-finalize-agenda-entries): Delete excluded
23547         lines directly after call to sorting filter function.
23549 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
23551         * org.el (org-complex-heading-regexp-format): Document the
23552         variable.
23553         (org-get-refile-targets): Use `org-complex-heading-regexp-format'
23554         to make the regular expression for matching the headline.
23556 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
23558         * org.el (org-refile-check-position): New function.
23559         (org-goto):
23560         (org-refile-get-location): Call `org-refile-check-position'.
23562 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
23564         * ob-python.el (org-babel-python-initiate-session-by-key): Use eq
23565         instead of equal to compare symbols.
23567 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
23569         * org-agenda.el (org-agenda-before-sorting-filter-function):
23570         New hook function.
23571         (org-finalize-agenda-entries):
23572         Apply `org-agenda-before-sorting-filter-function'.
23574 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
23576         * org-latex.el (org-export-latex-first-lines): Do not protect meta
23577         lines that have nothing to do with babel.
23579 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
23581         * org-capture.el (org-capture-place-template): Handle the
23582         checkitem case.
23583         (org-capture-place-item): Provide boundaries for the search to
23584         make sure we do not get a match in a different tree.
23586 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
23588         * org-exp.el (org-export-preprocess-apply-macros): Fix the macro
23589         argument parser.
23591 2010-11-11  Noorul Islam  <noorul@noorul.com>
23593         * org-latex.el (org-latex-to-pdf-process): Add output-directory
23594         option for the command pdflatex.
23595         (org-export-as-pdf): Respect directory in path of
23596         EXPORT_FILE_NAME.
23598 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
23600         * org-exp.el (org-export-with-LaTeX-fragments): New default t,
23601         which now means to use MathJax processing for HTML.  Also allow
23602         new value `dvipng' to force the old image processing.
23603         (org-infile-export-plist): Parse for MATHJAX setup line.
23605         * org-html.el (org-export-html-mathjax-options): New option.
23606         (org-export-html-mathjax-config): New function.
23607         (org-export-html-mathjax-template): New option.
23608         (org-export-html-preprocess): Call the LaTeX snippet processor
23609         with an additional argument to declare special ways of processing.
23610         (org-export-as-html): Bind the dynamical variable
23611         `org-export-have-math'.  Insert the MathJax script template when
23612         it is needed by the document.
23614         * org.el (org-preview-latex-fragment): Call `org-format-latex'
23615         with the additional processing argument.
23616         (org-export-have-math): New variable, for dynamic scoping.
23617         (org-format-latex): Implement specific ways of processing.
23618         New function argument for processing type.
23619         (org-org-menu): Remove the entry to configure LaTeX snippet
23620         processing.
23622 2010-11-11  Bastien Guerry  <bzg@gnu.org>
23624         * org-agenda.el (org-agenda-clock-goto): Use `\C-c\C-x\C-j' for
23625         `org-clock-goto' and `J' for `org-agenda-clock-goto'.  If the
23626         heading currently clocked in is not listed in the agenda, display
23627         this entry in another buffer.  If there is no running clock,
23628         display a help message.
23630 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
23632         * org-latex.el (org-export-latex-tables): Return "" instead of nil
23633         when no label is attached.
23635 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
23637         * org-agenda.el (org-agenda-menu-show-match): New option.
23638         (org-agenda-menu-two-column): New option.
23639         (org-agenda-get-restriction-and-command): Implement dispatch menu
23640         without showing the matcher, and with two-column display.
23642 2010-11-11  Bernt Hansen  <bernt@norang.ca>
23644         * org-indent.el (org-indent-mode): Fix grammar for message when
23645         mode is refused.
23647 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
23649         * ob.el (org-babel-insert-result): Ensures `beg' is set, even if
23650         no previous result exists.
23652 2010-11-11  Noorul Islam  <noorul@noorul.com>
23654         * ob.el Declare org-babel-lob-execute-maybe() to avoid compiler
23655         warning.
23657 2010-11-11  Noorul Islam  <noorul@noorul.com>
23659         * org.el (org-set-visibility-according-to-property): Use backward
23660         search instead of forward, so that top hierarchy gets priority.
23662 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
23664         * org-agenda.el (org-timeline): Allow indirect buffer.
23666 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
23668         * org-exp.el (org-export-preprocess-after-radio-targets-hook):
23669         (org-export-define-heading-targets-headline-hook): New hooks.
23671         * org.el (org-modules): Add entry for org-wikinodes.el.
23672         (org-font-lock-set-keywords-hook): New hook.
23673         (org-open-at-point-functions): New hook.
23674         (org-find-exact-headling-in-buffer):
23675         (org-find-exact-heading-in-directory): New functions.
23676         (org-mode-flyspell-verify): Better cursor position for checking if
23677         flyspell should ignore a word.
23679 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
23681         * org-indent.el (org-indent-remove-properties):
23682         (org-indent-add-properties): Make sure changing these properties
23683         does not trigger modification hooks.
23685 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
23687         * org.el (org-link-search-must-match-exact-headline): New option.
23688         (org-link-search-inhibit-query): New variable.
23689         (org-link-search): Search for exact headline match in Org files.
23691 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
23693         * ob.el (org-babel-execute-src-block-maybe): Remove check for
23694         `org-babel-no-eval-on-ctrl-c-ctrl-c'; this is done in the new
23695         function `org-babel-execute-safely-maybe'.
23697 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
23699         * ob.el (org-babel-load-in-session): Set directory in case :dir
23700         arg is in effect.
23702 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
23704         * ob-tangle.el (org-babel-tangle-collect-blocks): Don't throw
23705         errors when we're not under of a headline.
23707 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
23709         * ob-octave.el (org-babel-octave-wrapper-method): Use dlmwrite to
23710         write delimited text instead of save -ascii
23711         (org-babel-octave-import-elisp-from-file): Specify that data
23712         written to file is tab-delimited.
23714 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
23716         * ob-R.el (org-babel-R-evaluate): Specify that tabular data is
23717         tab-delimited.
23719 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
23721         * ob.el (org-babel-import-elisp-from-file): Allow separator to be
23722         specified.
23724 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
23726         * ob-python.el (org-babel-python-table-or-string): Fix recognition
23727         of lists and tuples.
23729 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
23731         * ob-octave.el (org-babel-octave-evaluate-external-process):
23732         Allow remote files.
23734 2010-11-11  Juan Pechiar  <pechiar@computer.org>
23736         * ob-octave.el (org-babel-octave-evaluate-external-process):
23737         Use `org-babel-octave-import-elisp-from-file' instead of
23738         `org-babel-eval-read-file'.
23739         (org-babel-octave-var-to-octave): Separate matrix rows with ';',
23740         and use '%s' as format specifier instead of '%S'.
23742 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
23744         * ob-octave.el: Only (require 'matlab) when necessary.
23745         (org-babel-octave-initiate-session): (require) octave-inf or matlab
23746         as appropriate.
23747         (org-babel-execute:matlab): Remove (require).
23748         (org-babel-prep-session:matlab): Remove (require).
23749         (org-babel-matlab-initiate-session): Remove (require).
23751 2010-11-11  Dan Davison  <davison@stats.ox.ac.uk>
23753         * ob-octave.el (org-babel-octave-evaluate): Fix formal argument
23754         list.
23756 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
23758         * ob-python.el (org-babel-python-table-or-string): Can now handle
23759         VERY long result lines.
23761 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
23763         * org-latex.el (org-export-latex-tables): Add label if any.
23765         * org-latex.el (org-export-latex-convert-table.el-table):
23766         Fix little mistake when inserting label.
23768 2010-11-11  Nicolas Goaziou  <n.goaziou@gmail.com>
23770         * org.el (org-cycle-internal-local): Remove an unnecessary call
23771         to `org-back-to-heading' that was preventing point to stay at its
23772         column when cycling visibility.
23774 2010-11-11  Noorul Islam  <noorul@noorul.com>
23776         * org-capture.el (org-capture-finalize): Make messages consistent.
23778 2010-11-11  Noorul Islam  <noorul@noorul.com>
23780         * org-gnus.el: Suppress compiler warning by declaring outside
23781         function nnimap-retrieve-headers-from-file.
23783 2010-11-11  Noorul Islam  <noorul@noorul.com>
23785         * org-colview.el Use org-beamer-select-environment instead of
23786         org-beamer-set-environment-tag.
23788 2010-11-11  Matt Lundin  <mdl@imapmail.org>
23790         * org.el (org-insert-time-stamp): Fix org-insert-time-stamp so
23791         that the value of org-last-inserted-timestamp includes time range.
23793 2010-11-11  David Maus  <dmaus@ictsoc.de>
23795         * org-wl.el (org-wl-store-link-message): Provide link property for
23796         message-id without angle brackets.
23798 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
23800         * ob-R.el (org-babel-R-evaluate): Improve prompt-stripping regexp.
23802 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
23804         * ob-tangle.el (org-babel-find-file-noselect-refresh): Finds a
23805         file ensuing that the latest changes on disk are represented.
23807 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
23809         * ob-sqlite.el (org-babel-sqlite-expand-vars): Now inserts string
23810         arguments w/o quotes.
23812 2010-11-11  Bernt Hansen  <bernt@norang.ca>
23814         * org-capture.el (org-capture-finalize): Fix clock in of
23815         interrupted task during capture finalize.
23817 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
23819         * ob-R.el (org-babel-R-evaluate): Clean up extra prompts in
23820         session output.
23822 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
23824         * ob-C.el (org-babel-C-ensure-main-wrap): More generous regular
23825         expression for matching main function.
23827 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
23829         * ob-lob.el (org-babel-lob-one-liner-regexp): Fix error in lob
23830         regexp -- it wasn't matching lob lines w/o indices.
23832 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
23834         * org-exp.el (org-export-latex-listings-w-names): Fix compiler
23835         warning in org-exp.el.
23837 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
23839         * org-publish.el (org-publish-file): Better error message if
23840         base-directory or publishing-directory are not defined.
23842 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
23844         * org-colview.el (org-columns-display-here): Use overlays to
23845         overrule line prefix properties during column view.
23847 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
23849         * org-agenda.el (org-agenda-filter-preset): Document the
23850         limitation for the filter preset - it can only be used for an
23851         entire agenda view, not in an individual block in a block agenda.
23853 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
23855         * ob-table.el (sbe): Now able to accept range references from
23856         tables.
23858 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
23860         * ob.el (org-babel-pick-name): If colnames or rownames contain a
23861         list of names, then use those directly.
23863 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
23865         * org-exp.el (org-export-format-source-code-or-example):
23866         Escape underscores in code block names on latex listings export.
23868 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
23870         * ob-tangle.el (org-babel-with-temp-filebuffer):
23871         Use find-file-noselect to avoid excess buffer movement.
23873 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
23875         * org-html.el (org-html-should-inline-p): Only inline images if
23876         they should be.
23878 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
23880         * org-id.el (org-id-store-link): Autoload.
23882         * org.el ("org-id"): Autoload `org-id-store-link'.
23884 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
23886         * org-html.el (org-html-should-inline-p): Only inline images if
23887         they should be.
23889 2010-11-11  Eric S Fraga  <e.fraga@ucl.ac.uk>
23891         * org-icalendar.el (org-icalendar-alarm-time): New option.
23893         * org-icalendar.el (org-print-icalendar-entries): Timed events are
23894         exported with alarm events, a.k.a. reminders.
23896 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
23898         * org-capture.el (org-capture-target-buffer): Throw an error if we
23899         have no target file.
23900         (org-capture-select-template): Use a default template if the user
23901         has not specified any.
23903 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
23905         * org.el (org-modules): Add entry for org-velocity.
23907 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
23909         * ob-lob.el (org-babel-lob-execute): Changing indentation to
23910         improve line length.
23912 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
23914         * org-exp.el (org-export-handle-table-metalines): Choose a better
23915         position for checking protectedness.
23917 2010-11-11  Eric Schulte  <schulte.eric@gmail.com>
23919         * org-table.el (org-table-convert-region): Don't continue csv
23920         importation which the point catches the end, this fixes an
23921         infinite loop which was caused by the (point) never catching up
23922         with the "end" marker.
23924 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
23926         * org-macs.el (org-string-nw-p): New function.
23928         * org-capture.el (org-capture-import-remember-templates):
23929         Interpret an empty string as request to use
23930         `org-default-notes-file'.
23931         (org-capture-target-buffer): If the FILE is not a (non-empty)
23932         string, use `org-default-notes-file'.
23934 2010-11-11  Carsten Dominik  <carsten.dominik@gmail.com>
23936         * org-capture.el (org-capture-templates): Fix customize type.
23938 2010-09-25  Juanma Barranquero  <lekktu@gmail.com>
23940         * org.el (org-refile-targets):
23941         * org-agenda.el (org-agenda-hide-tags-regexp): Fix typos in docstrings.
23943 2010-08-19  Glenn Morris  <rgm@gnu.org>
23945         * org.el (org-outline-overlay-data, org-set-outline-overlay-data)
23946         (org-save-outline-visibility): Move to org-macs.
23947         * org-macs.el (org-outline-overlay-data, org-set-outline-overlay-data)
23948         (org-save-outline-visibility): Move here from org.el.
23949         (show-all): Autoload it.
23950         * ob.el: Don't require org when compiling.
23952 2010-08-18  Glenn Morris  <rgm@gnu.org>
23954         * ob.el: Require org when compiling.
23955         (org-save-outline-visibility): Remove macro declaration.
23956         * ob-emacs-lisp.el: Require ob-comint when compiling, for macros.
23957         Remove unnecessary/macro declarations.
23958         * org-docview.el: Require doc-view when compiling.
23959         (doc-view-goto-page): Autoload rather than declaring.
23960         (doc-view-current-page): Remove macro declaration.
23962 2010-08-17  Glenn Morris  <rgm@gnu.org>
23964         * ob.el (tramp-compat-make-temp-file, org-edit-src-code)
23965         (org-entry-get, org-table-import): Fix declarations.
23966         (org-match-string-no-properties): Remove unnecessary declaration.
23967         * ob-sh.el (org-babel-comint-in-buffer)
23968         (org-babel-comint-wait-for-output, org-babel-comint-buffer-livep)
23969         (org-babel-comint-with-output): Remove unnecessary declarations.
23970         * ob-R.el (orgtbl-to-tsv): Fix declaration.
23971         * org-list.el (org-entry-get): Fix declaration.
23973 2010-07-19  Eric Schulte  <schulte.eric@gmail.com>
23975         * ob-C.el: New file.
23976         * ob-R.el: New file.
23977         * ob-asymptote.el: New file.
23978         * ob-clojure.el: New file.
23979         * ob-comint.el: New file.
23980         * ob-css.el: New file.
23981         * ob-ditaa.el: New file.
23982         * ob-dot.el: New file.
23983         * ob-emacs-lisp.el: New file.
23984         * ob-eval.el: New file.
23985         * ob-exp.el: New file.
23986         * ob-gnuplot.el: New file.
23987         * ob-haskell.el: New file.
23988         * ob-keys.el: New file.
23989         * ob-latex.el: New file.
23990         * ob-lob.el: New file.
23991         * ob-matlab.el: New file.
23992         * ob-mscgen.el: New file.
23993         * ob-ocaml.el: New file.
23994         * ob-octave.el: New file.
23995         * ob-perl.el: New file.
23996         * ob-python.el: New file.
23997         * ob-ref.el: New file.
23998         * ob-ruby.el: New file.
23999         * ob-sass.el: New file.
24000         * ob-screen.el: New file.
24001         * ob-sh.el: New file.
24002         * ob-sql.el: New file.
24003         * ob-sqlite.el: New file.
24004         * ob-table.el: New file.
24005         * ob-tangle.el: New file.
24006         * ob.el: New file.
24008 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24010         * org-mks.el: New file.
24011         * org-capture.el: New file.
24013 2010-07-19  Christian Egli  <christian.egli@sbszh.ch>
24015         * org-taskjuggler.el: New file.
24017 2010-07-19  Matt Lundin  <mdl@imapmail.org>
24019         * org-agenda.el (org-search-view): Fix inclusion of agenda-archives
24020         in org-agenda-text-search-extra-files.
24022 2010-07-19  David Maus  <dmaus@ictsoc.de>
24024         * org-list.el (org-list-send-list): Locally bind variable `txt'.
24026 2010-07-19  Eric Schulte  <schulte.eric@gmail.com>
24028         * org.el (org-reload): Now also reloading babel files.
24030 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24032         * org-capture.el (org-capture-set-plist): Make sure txt is a string
24033         before calling `string-match'.
24034         (org-capture-templates): Fix customization type.
24036 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24038         * org-latex.el (org-export-latex-preprocess): Make a special case
24039         for \nbsp.
24040         (org-latex-entities): Remove the entry for \nbsp.
24041         (org-latex-entities-exceptions): Variable removed.
24043 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24045         * org-capture.el (org-capture-refile): Do not try to manipulate
24046         bookmark list.
24048         * org.el (org-refile): Use the correct bookmark here.
24050 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24052         * org-list.el (org-list-send-list): Parse list from its true beginning.
24054         * org.el (org-ctrl-c-ctrl-c): Maybe send the list when at a list item.
24056 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24058         * org.el (org-insert-link): Correctly determine if we should use
24059         a relative path.
24061 2010-07-19  Nicolas Goaziou  <n.goaziou@gmail.com>
24063         * org-list.el (org-list-radio-list-templates): Fix templates.
24065 2010-07-19  Nicolas Goaziou  <n.goaziou@gmail.com>
24067         * org-list.el (org-list-send-list): Regexp defining the start of
24068         a radio list is now on par with the one used for radio tables.
24070 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24072         * org-entities.el (org-entities-help): Add a headline for
24073         the user-defined entities.
24075 2010-07-19  Dirk-Jan C. Binnema  <djcb.bulk@gmail.com>  (tiny change)
24077         * org-agenda.el (org-agenda-action): Document capture key and add it
24078         to the prompt.
24080 2010-07-19  Eric Schulte  <schulte.eric@gmail.com>
24082         * org-latex.el (org-export-latex-listings-langs): Add (sqlite "SQL").
24084 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24086         * org-latex.el (org-export-latex-first-lines): Do not mark
24087         meta lines for removal.  Do not remove BABEL config lines during export.
24089 2010-07-19  David Maus  <dmaus@ictsoc.de>
24091         * org-capture.el (org-capture): Check if
24092         `org-capture-link-is-already-stored' is bound before evaluating.
24094 2010-07-19  Eric Schulte  <schulte.eric@gmail.com>
24096         * org.el: Add autoload for org-babel-do-load-languages.
24098 2010-07-19  Eric Schulte  <schulte.eric@gmail.com>
24100         * org-src.el (org-src-lang-modes): Add sqlite to sql-mode.
24102 2010-07-19  David Maus  <dmaus@ictsoc.de>
24104         * org-feed.el: Change indentation to match coding style
24105         guideline.
24107 2010-07-19  David Maus  <dmaus@ictsoc.de>
24109         * org-feed.el (org-feed-unescape, org-feed-parse-atom-feed): Load XML
24110         library if necessary.
24112 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24114         * org-beamer.el (org-beamer-amend-header): Standardize the
24115         header cookie for the beamer extra stuff.
24117 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24119         * org-beamer.el (org-beamer-amend-header): Put extra header
24120         last in header.
24122 2010-07-19  David Maus  <dmaus@ictsoc.de>
24124         * org-exp-blocks.el (org-export-blocks-format-ditaa)
24125         (org-export-blocks-format-dot): Remove text properties of body before
24126         calculating cache hash.
24128 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24130         * org-latex.el (org-export-latex-tabular-environment): New option.
24131         (org-export-latex-tables): Use `org-export-latex-tabular-environment'.
24133 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24135         * org-compat.el (org-version-check): New function.
24137         * org-indent.el (org-indent-mode): Check for exact emacs version.
24139 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24141         * org-capture.el (org-capture-templates): Allow the template
24142         to come from a file or function call.
24143         (org-capture-place-entry): Get the template from file or function.
24145 2010-07-19  David Maus  <dmaus@ictsoc.de>
24147         * org-agenda.el (org-agenda-bulk-action): Don't create marker for
24148         position if target is entire file.
24150 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24152         * org.el (org-autoload): Autoload a few more org-table functions.
24154 2010-07-19  Eric Schulte  <schulte.eric@gmail.com>
24156         * org.el (org-babel-load-languages): Add ob-mscgen.
24158 2010-07-19  Eric Schulte  <schulte.eric@gmail.com>
24160         * org-latex.el (org-export-latex-tables): Format string now
24161         matches options.
24163 2010-07-19  Eric Schulte  <schulte.eric@gmail.com>
24165         * org.el (org-babel-load-languages): This variable controls which
24166         languages will be loaded by org-babel.  It is customizable through
24167         the customize interface.
24169 2010-07-19  Eric Schulte  <schulte.eric@gmail.com>
24171         * org-latex.el (org-export-latex-format-image): Update number of
24172         arguments to allow for an optional short-name.
24174 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24176         * org-indent.el (org-indent-mode): Refuse to turn on prior to Emacs 23.2.
24178 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24180         * org-capture.el (org-capture-set-target-location):
24181         Store exact positions for file+regexp and file+function targets.
24182         (org-capture-place-entry, org-capture-place-item)
24183         (org-capture-place-table-line, org-capture-place-plain-text):
24184         Respect exact positions.
24185         (org-capture-finalize): Make sure we are at the beginning of a line
24186         when fixing the empty lines after the entry.
24188 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24190         * org.el (org-entry-get-with-inheritance): New argument LITERAL-NIL.
24191         (org-entry-get): Pass `literal-nil' into
24192         `org-entry-get-with-inheritance'.
24193         (org-todo): React to nil values of the LOGGING property.
24195 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24197         * org.el (org-default-notes-file): Update docstring.
24199 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24201         * org.el (org-link-frame-setup): Use `org-gnus-no-new-news' as default.
24203 2010-07-19  Eric Schulte  <schulte.eric@gmail.com>
24205         * org-exp.el (org-export-attach-captions-and-attributes):
24206         Add a shortname attribute to caption strings under the symbol name
24207         org-caption-shortn.
24209 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24211         * org.el (org-switchb): Rename from `org-iswitchb'.
24212         Improve docstring.
24213         (org-iswitchb): New alias.
24214         (org-ido-switchb): Make alias point to `org-switchb'.
24216 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24218         * org-capture.el (org-capture-fill-template):
24219         Respect time-of-day preference in template prompt.
24221 2010-07-19  David Maus  <dmaus@ictsoc.de>
24223         * org-feed.el (org-feed-unescape): Remove superfluous lambda.
24225 2010-07-19  David Maus  <dmaus@ictsoc.de>
24227         * org-wl.el (org-wl-disable-folder-check): New customization
24228         variable.
24229         (org-wl-open): Disable folder check depending on
24230         `org-wl-disable-folder-check'.
24232 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24234         * org-capture.el (org-capture-set-target-location):
24235         Fix file+function interpretation.
24237 2010-07-19  David Maus  <dmaus@ictsoc.de>
24239         * org-feed.el (org-feed-parse-rss-entry): Unescape rss element
24240         content.
24242 2010-07-19  David Maus  <dmaus@ictsoc.de>
24244         * org-feed.el (xml-entity-alist): Declare variable
24245         `xml-entity-alist' for byte compiler.
24247 2010-07-19  David Maus  <dmaus@ictsoc.de>
24249         * org-feed.el (org-feed-unescape): New function.
24250         Unescape protected entities.
24251         (org-feed-parse-atom-entry): Use function for atom:content
24252         type text and html.
24254 2010-07-19  David Maus  <dmaus@ictsoc.de>
24256         * org-feed.el (org-feed-parse-rss-feed): Ignore case of rss
24257         element names.
24259 2010-07-19  Bernt Hansen  <bernt@norang.ca>
24261         * org.el (org-time-string-to-absolute): Ignore cyclic repeater
24262         when displaying items on todays agenda date.
24264 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24266         * org-agenda.el (org-agenda-get-progress): Avoid reusing previous
24267         value of EXTRA.
24269 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24271         * org-publish.el (org-publish-initialize-cache):
24272         Make timestamp directory, the entire path to it.
24274 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24276         * org-exp.el (org-export-handle-comments): Make sure to check
24277         for protection in the comment line, and not in the line after it.
24279 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24281         * org-html.el (org-export-html-preprocess): Call org-format-latex,
24282         possibly with a protect-only argument.
24284         * org.el (org-format-latex): New argument PROTECT-ONLY.
24286 2010-07-19  Eric Schulte  <schulte.eric@gmail.com>
24288         * org-exp.el (org-export-handle-table-metalines): This function
24289         removes table specific meta-lines, now that we aren't wiping
24290         everything that looks remotely like a comment at the end of the
24291         export process we have to be sure to catch all of the specific lines
24292         in org-exp.el.
24294 2010-07-19  Nicolas Goaziou  <n.goaziou@gmail.com>
24296         * org-exp.el (org-export-select-backend-specific-text): Properly
24297         get rid of #+Backend and #+ATTR_Backend specifics to backends not
24298         matching the one we're exporting to.
24300 2010-07-19  Eric Schulte  <schulte.eric@gmail.com>
24302         * org-table.el (orgtbl-to-generic): Add the :remove-newlines
24303         option which will strip newline characters from the text of table
24304         cells and replace then with "\n".
24306 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24308         * org.el (org-confirm-shell-link-function)
24309         (org-confirm-elisp-link-function): Limit the values that can be set by
24310         file variables.
24312 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24314         * org.el (org-compute-latex-and-specials-regexp): Deal with
24315         string elements by discarding them.
24317 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24319         * org.el (org-iswitchb): Make sure to use at least iswitchb.
24321 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24323         * org-capture.el (org-capture-position-for-last-stored)
24324         (org-capture-bookmark-last-stored-position): New functions.
24325         (org-capture-place-table-line): Better error catching.
24326         (org-capture-place-item, org-capture-place-entry)
24327         (org-capture-place-plain-text):
24328         Call `org-capture-position-for-last-stored'.
24329         (org-capture-finalize): Just call
24330         `org-capture-bookmark-last-stored-position'.
24332 2010-07-19  Eric Schulte  <schulte.eric@gmail.com>
24334         * org-exp.el (org-export-mark-blockquote-verse-center):
24335         Fix small bug, now grabbing match data before overwritten by looking-at
24336         this fixes a problem with remainders of #+end_quote lines appearing
24337         in exported output.
24339 2010-07-19  David Maus  <dmaus@ictsoc.de>
24341         * org.el (org-link-frame-setup): Add customization option for
24342         Wanderlust.
24344 2010-07-19  Eric Schulte  <schulte.eric@gmail.com>
24346         * org-latex.el (org-export-latex-fixed-width): Now check
24347         org-example rather than org-protected on verbatim export, because by
24348         default all ": " prefixed lines are marked protected.
24350 2010-07-19  Eric Schulte  <schulte.eric@gmail.com>
24352         * org-latex.el (org-export-latex-fixed-width): Check for
24353         protection before wrapping ": " lines as verbatim.
24355 2010-07-19  Eric Schulte  <schulte.eric@gmail.com>
24357         * org-exp.el (org-export-handle-comments): Check for protection
24358         before removing comments.
24360 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24362         * org-entities.el (org-entities): Restructure the list.
24363         (org-entities-help): Turn the help output into a buffer
24364         in Org-mode, so that it becomes easier to find a symbol
24365         in the structure.
24366         (org-entities-create-table): Deal with new structure.
24368 2010-07-19  David Maus  <dmaus@ictsoc.de>
24370         * org-agenda.el (org-write-agenda): Use backquotes to expand
24371         `flet' at compile time.
24373 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24375         * org.el (org-entry-properties): Make sure that standard property
24376         names are used even if the user has customized time keywords.
24378 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24380         * org-macs.el (org-not-nil): Return the value if not interpreted
24381         as nil.
24383         * org.el (org-entry-get)
24384         (org-entry-get-with-inheritance): Interpret the value "nil"
24385         as nil for properties.
24387 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24389         * org.el (org-switch-to-buffer-other-window): Return the buffer.
24391 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24393         * org-macs.el (org-not-nil): New function.
24395         * org.el (org-block-todo-from-children-or-siblings-or-parent):
24396         Use `org-not-nil' to interpret a property value of nil.
24398 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24400         * org.el (org-truely-invisible-p): New function.
24401         (org-beginning-of-line): Use `org-truely-invisible-p'.
24403 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24405         * org-agenda.el (org-agenda-get-timestamps): No errors
24406         while getting TODO state.
24407         (org-agenda-highlight-todo): No error when no keyword has
24408         been matched.
24410 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24412         * org.el (org-timestamp-change): New optional argument UPDOWN.
24413         Use this to identify calls from org-timestamp-up/down, so that we can
24414         skip by rounding minutes in this case.
24415         (org-timestamp-up, org-timestamp-down, org-timestamp-up-day)
24416         (org-timestamp-down-day): Call org-timestamp-change with the
24417         updown argument.
24419 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24421         * org-agenda.el (org-agenda-action): Make `c' key call org-capture.
24423         * org-capture.el: New file.
24425         * org-compat.el (org-get-x-clipboard): Function moved here from
24426         remember.el.
24428         * org-mks.el: New file.
24430         * org.el (org-set-regexps-and-options): Allow statistic cookies as
24431         part of complex headlines.
24432         (org-find-olp): New argument THIS-BUFFER.  When set, assume that the
24433         OLP does not contain a file name.
24435 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24437         * org.el (org-mode): Set `comment-start' instead of changing the
24438         syntax of the `#' character.
24440 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24442         * org-exp.el (org-export-format-source-code-or-example): Mark examples
24443         by a property.
24445         * org-html.el (org-export-html-close-lists-maybe): Check if raw
24446         HTML stuff was actually made from an example.
24448 2010-07-19  Bastien Guerry  <bzg@gnu.org>
24450         * org-latex.el: Items are no longer skipped when their first line
24451         ends on a protected element.
24453         * org-list.el: Protected environments looking like lists are not
24454         exported anymore.
24456 2010-07-19  Eric Schulte  <schulte.eric@gmail.com>
24458         * org-exp-blocks.el (org-export-blocks-preprocess):
24459         Cleanup trailing newline after block.
24461 2010-07-19  Bastien Guerry  <bzg@gnu.org>
24463         * org-exp.el: Comment regexp now matches documentation.  No more
24464         protection check when deleting comments before export.
24466 2010-07-19  Bastien Guerry  <bzg@gnu.org>
24468         * org-exp.el (org-export-preprocess-string):
24469         Now using `org-export-handle-include-files-recurse' to resolve
24470         included files.
24472 2010-07-19  Bastien Guerry  <bzg@gnu.org>
24474         * org-agenda.el (org-agenda-get-deadlines)
24475         (org-agenda-get-scheduled):
24476         * org.el (org-time-string-to-seconds):
24477         For deadline and scheduled agenda display ignore the cyclic repeater
24478         when calculating how many days late the task is.  If you have a weekly
24479         task and miss the date the agenda view will show more than a week late
24480         now instead of resetting on the cyclic repeating date.  This makes it
24481         much more obvious when you missed a repeating task after the repeater.
24483 2010-07-19  Bastien Guerry  <bzg@gnu.org>
24485         * org-exp.el (org-export-mark-blockquote-verse-center):
24486         Consider environments that end at eob.
24488 2010-07-19  Mikael Fornius  <mfo@abc.se>
24490         * org.el (org-raise-scripts): Do not fontify sub/superscripts of text
24491         with face `org-special-keyword'.  Make property keys as :LAST_REPEAT:
24492         display correctly.
24494 2010-07-19  Mikael Fornius  <mfo@abc.se>
24496         * org.el (org-at-property-p): Use save-match-data macro instead of let.
24498 2010-07-19  Mikael Fornius  <mfo@abc.se>
24500         * org.el (test): Remove unused test function.
24502 2010-07-19  Eric Schulte  <schulte.eric@gmail.com>
24504         * org-exp-blocks.el (org-export-blocks-preprocess): Fix typo.
24506 2010-07-19  Eric Schulte  <schulte.eric@gmail.com>
24508         * org-exp-blocks.el (org-export-blocks-postblock-hook):
24509         Add documentation to and turn into a defcustom.
24511 2010-07-19  Eric Schulte  <schulte.eric@gmail.com>
24513         * org-exp.el (org-get-file-contents): By un-setting prefix1 to ""
24514         instead of to nil we avoid errors when :prefix1 is defined, but
24515         prefix is not.
24517 2010-07-19  Nicolas Goaziou  <n.goaziou@gmail.com>
24519         * org-latex.el (org-export-latex-preprocess): Environments coming
24520         from latex backend specific instructions (#+LaTeX) are already
24521         protected and won't be treated as normal environments.
24523 2010-07-19  Bastien Guerry  <bzg@gnu.org>
24525         * org-timer.el (org-timer-set-timer): Fix typo in the docstring.
24527 2010-07-19  Bastien Guerry  <bzg@gnu.org>
24529         * org-timer.el (org-timer-set-timer): Use a prefix argument.
24530         See the docstring of the function.
24532 2010-07-19  Bastien Guerry  <bzg@gnu.org>
24534         * org-timer.el (org-timer-set-timer): Fix bug about canceling
24535         timers.
24537 2010-07-19  David Maus  <dmaus@ictsoc.de>
24539         * org-w3m.el (org-w3m-copy-for-org-mode)
24540         (org-w3m-get-next-link-start, org-w3m-get-prev-link-start):
24541         Get text property directly, not using macro `w3m-anchor'.
24543 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24545         * org.el (org-emph-re): Document the match groups.
24547 2010-07-19  Bernt Hansen  <bernt@norang.ca>
24549         * org-clock.el (org-clock-in): Set `org-clock-clocking-in' to
24550         t before calling `org-clock-out', so that that function can
24551         know its call context.
24553 2010-07-19  Bastien Guerry  <bzg@gnu.org>
24555         * org-timer.el (org-timer-default-timer): New variable.
24556         (org-timer-set-timer): Use the new variable.  Also offer the
24557         possibility to replace the current timer by a new one.
24559 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24561         * org.el (org-kill-note-or-show-branches): Hide subtree before
24562         exposing the headings.
24564 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24566         * org.el (org-add-planning-info): Remove the empty line also
24567         if there is no whitespace at all in there.
24569         * org-table.el (org-table-align): Fix alignment of strings
24570         with invisible characters.
24572 2010-07-19  David Maus  <dmaus@ictsoc.de>
24574         * org.el (org-refile-cache-get): Return empty list of targets
24575         when cache was cleared.
24576         (org-clone-subtree-with-time-shift): Maybe create ID property
24577         in cloned subtrees.
24578         (org-clone-delete-id): New customization variable.
24579         (org-clone-subtree-with-time-shift): Use customization
24580         variable `org-clone-delete-id'.
24581         (org-clone-subtree-with-time-shift): Remove empty property
24582         drawer in cloned subtrees.
24584 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24586         * org.el (org-refile-use-cache): New option.
24587         (org-refile-cache, org-refile-markers): New variable.
24588         (org-refile-marker, org-refile-cache-clear)
24589         (org-refile-cache-check-set, org-refile-cache-put)
24590         (org-refile-cache-get): New function.
24591         (org-get-refile-targets): Use the refile cache.
24593         * org-clock.el (org-clock-sum): Don't include running clock if
24594         the time block is wrong.
24596 2010-07-19  John Wiegley  <jwiegley@gmail.com>
24598         * org-clock.el (org-clock-clock-in, org-clock-in):
24599         Add parameter `start-time'.
24600         (org-clock-resolve-clock): Add parameter `clock-out-time'.
24601         If set, and resolve-to is a past time, then the clock out
24602         event occurs at `clock-out-time' rather than at `resolve-to'.
24603         In this case, `resolve-to' becomes the clock in time.
24604         (org-clock-jump-to-current-clock): Create new global command
24605         to reveal the current clock.
24606         (org-clock-resolve): Add new commands g/G and j/J, and a
24607         help window describing all commands and their meaning.
24608         (org-clock-resolve-expert): New customization variable.
24609         (org-find-open-clocks): Fix a bug that caused discovered
24610         clocks not to match up with the currently active clock.
24611         (org-resolve-clocks): Change the argument
24612         `also-non-dangling-p' to `only-dangling-p', since due to a bug
24613         this was the default behavior all along.
24615 2010-07-19  David Maus  <dmaus@ictsoc.de>
24617         * org-id.el (org-id-uuid): New function.  Return string with
24618         random (version 4) UUID.
24619         (org-id-method): Make 'uuid the new default value.
24620         (org-id-new): Use `org-id-uuid' if call to uuidgen program
24621         does not return a UUID.
24623 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24625         * org-latex.el (org-export-latex-format-image): Add support
24626         for multicolumn figures in LaTeX.
24628 2010-07-19  David Maus  <dmaus@ictsoc.de>
24630         * org.el (org-clone-subtree-with-time-shift): Remove ID
24631         property of original subtree in cloned subtrees.
24633 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24635         * org-exp.el (org-export-format-source-code-or-example):
24636         XEmacs compatibility.
24638         * org-latex.el (org-export-latex-tables): Accept comma in
24639         align string.
24641         * org-docbook.el (org-export-docbook-xslt-stylesheet): New option.
24642         (org-export-docbook-xslt-proc-command): Fix docstring.
24643         (org-export-docbook-xsl-fo-proc-command): Fix docstring.
24644         (org-export-as-docbook-pdf):
24645         Improve formatting of the xslt command.
24647         * org-exp.el (org-infile-export-plist): Check for XSLT setting.
24649         * org.el (org-file-contents): Improve error message.
24650         (org-set-regexps-and-options): Remove spaces at both ends.
24652 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24654         * org-docbook.el (org-export-as-docbook-pdf):
24655         Improve formatting of the xslt command.
24657 2010-07-19  Sebastian Rose  <sebastian_rose@gmx.de>
24659         * org-publish.el (org-publish-cache): Use one big hashmap for
24660         each project defined in `org-publish-project-alist'.
24661         (initialize-files-alist): Function removed.
24662         (org-publish-validate-link): Function removed.
24663         (org-publish-get-base-files): Add variable `sitemap-requested'
24664         to avoid sorting where possible.
24665         (org-publish-get-files): Function removed.
24666         (org-publish-get-project-from-filename): Make independent of
24667         file list.
24668         (org-publish-file): New argument NO-CACHE.
24670 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24672         * org.el (org-beginning-of-defun, org-end-of-defun):
24673         New functions.
24674         (org-mode): Install the `org-beginning-of-defun' and
24675         `org-end-of-defun' functions.
24676         (org-pretty-entities): New option.
24677         (org-toggle-pretty-entities): New command.
24678         (org-fontify-entities): New function.
24679         (org-startup-options): New keywords for pretty entities.
24680         (org-set-font-lock-defaults): Call the pretty entities
24681         function.
24683         * org-latex.el (org-export-latex-keywords-maybe): Protect the
24684         TODO markup.
24686 2010-07-19  Mikael Fornius  <mfo@abc.se>
24688         * org-habit.el (org-habit-build-graph): Help-echo date when
24689         mouse is over stars.
24691 2010-07-19  Jan Böcker  <jan.boecker@jboecker.de>
24693         * org.el (org-file-apps): Improve docstring to reflect
24694         grouping matches.
24696 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24698         * org.el (org-set-startup-visibility): Fix empty line display.
24700         * org-latex.el (org-export-latex-links): Use the formatting
24701         function of the link type, if it is available.
24703         * org-table.el (org-table-get-remote-range): Return to
24704         original buffer when retrieving remote reference.
24706         * org.el (org-display-inline-images): Do the entire buffer,
24707         not just the narrowed region.  Clear the cache.
24708         (org-display-inline-images): Match mode file paths.
24710 2010-07-19  David Maus  <dmaus@ictsoc.de>
24712         * org-wl.el (org-wl-store-link-folder): Don't throw error when
24713         called on WL folder group.
24715 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24717         * org.el (org-replace-escapes): Make sure the cdr is not nil.
24718         (org-read-date): Make `M-v' and `C-v' scroll the popup calendar.
24719         (org-mode): Revert comment syntax changes.
24721 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24723         * org.el (org-sparse-tree): Make `C-c / t' search for all TODO
24724         keywords, and `C-c / T' for a specific one.
24726 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24728         * org.el (org-mode): Fix comment syntax settings.
24730         * org-src.el (org-edit-src-allow-write-back-p):
24731         Define variable.
24733         * org.el (org-inline-image-overlays): New variable.
24734         (org-toggle-inline-images, org-display-inline-images)
24735         (org-remove-inline-images): New commands.
24736         (org-mode-map): Define a key for `org-toggle-inline-images'.
24738 2010-07-19  David Maus  <dmaus@ictsoc.de>
24740         * org-wl.el (org-wl-message-field): New function.
24741         Return content of header field in message entity.
24742         (org-wl-store-link): Call `org-wl-store-link-folder' or
24743         `org-wl-store-link-message' depending on major-mode.
24744         (org-wl-store-link-folder): New function.  Store link to
24745         Wanderlust folder.
24746         (org-wl-store-link-message): New function.  Store link to
24747         Wanderlust message.
24748         (org-wl-store-link-message): Store link to message while
24749         visiting message.
24750         (org-wl-open): Don't try to jump to message when opening a
24751         folder link.
24753 2010-07-19  David Maus  <dmaus@ictsoc.de>
24755         * org.el (org-replace-escapes): Avoid infinite loop when
24756         replace string contains escape sequence it replaces.
24758 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24760         * org-crypt.el (org-crypt-key-for-heading): Use symmetric
24761         encryption when now key is set.
24763 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24765         * org-table.el (org-table-recalculate-buffer-tables)
24766         (org-table-iterate-buffer-tables): New commands.
24768         * org.el (org-check-for-hidden): When there is a region, skip
24769         the check.
24771 2010-07-19  Dan Davison  <davison@stats.ox.ac.uk>
24773         * org-src.el (org-edit-src-code): allow-write-back-p had
24774         erroneously been omitted from let binding.
24776 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24778         * org-agenda.el (org-sorting-choice): New sorting type alpha.
24779         (org-cmp-alpha): New defsubst.
24780         (org-em): New defsubst.
24781         (org-entries-lessp): Only compute needed comparisons.
24783 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24785         * org-html.el (org-format-org-table-html): Test all columns
24786         for number content.
24788 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24790         * org-latex.el (org-export-latex-treat-sub-super-char):
24791         Make sure parenthesis matching is consistent.
24793         * org-table.el (org-table-colgroup-line-p)
24794         (org-table-cookie-line-p): New functions.
24796         * org-exp.el (org-table-clean-before-export): Better tests for
24797         colgroup and cookie lines.
24799 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24801         * org-agenda.el (org-agenda-goto): Push a mark before changing
24802         the position.
24804         * org-footnote.el (org-footnote): New group.
24805         (org-footnote-section)
24806         (org-footnote-tag-for-non-org-mode-files): Fix typos.
24808         * org-list.el (org-end-of-item-text-before-children): Also do
24809         the right thing at the end of a file.
24811         * org.el (org-set-packages-alist, org-get-packages-alist):
24812         New function.
24813         (org-export-latex-default-packages-alist)
24814         (org-export-latex-packages-alist): Add extra flag to
24815         each package, indicating if it should be used for snippets.
24816         (org-create-formula-image): Add the snippet argument.
24817         (org-splice-latex-header): New argument SNIPPET-P, pass it
24818         through to `org-latex-packages-to-string'.
24819         (org-latex-packages-to-string): New argument SNIPPET-P.
24821         * org-latex.el (org-export-latex-make-header): Add the snippet
24822         argument.
24824         * org-docbook.el (org-export-as-docbook): Implement ordered
24825         lists starting at some offset.
24827 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24829         * org.el (org-link-types, org-open-at-point): Add doi links.
24831         * org-ascii.el (org-export-ascii-preprocess): Remove list
24832         startcounter cookies.
24834         * org-list.el (org-renumber-ordered-list): Respect counter
24835         start values.
24837         * org-latex.el (org-export-latex-lists): Accept ordered list
24838         item offset cookie.
24840         * org-html.el (org-export-as-html): Accept ordered list
24841         item offset cookie.
24843         * org-indent.el (org-indent-mode): Turn off `indent-tabs-mode'
24844         which messes up alignment of tags.
24846 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24848         * org-clock.el (org-clock-cancel, org-clock-out): Make sure
24849         the modeline display is removed.
24851         * org-exp.el (org-export-format-drawer-function):
24852         Fix docstring.
24854         * org-agenda.el (org-agenda-refile): New optional argument
24855         NO-UPDATE.
24856         (org-agenda-refile): Call `org-agenda-redo' unless NO-UPDATE
24857         is set.
24858         (org-agenda-bulk-action): Call the refile command with updates
24859         suppressed - but arrange for `org-agenda-redo' to be called at
24860         the end.
24862         * org.el (org-mode): Make table mapping quiet.
24863         (org-table-map-tables): New optional argument QUIETLY.
24865         * org-ascii.el (org-export-ascii-preprocess): Make table
24866         mapping quiet.
24868         * org-html.el (org-export-as-html, org-html-level-start):
24869         Change XHTML IDs to not use dots.
24871         * org-exp.el (org-export-define-heading-targets):
24872         Change XHTML IDs to not use dots.
24874         * org-docbook.el (org-export-docbook-level-start):
24875         Change XHTML IDs to not use dots.
24877         * org-latex.el (org-export-as-latex): Make sure that the
24878         result buffer is in latex-mode.
24880         * org.el (org-shiftup-final-hook, org-shiftdown-final-hook)
24881         (org-shiftleft-final-hook, org-shiftright-final-hook):
24882         New hooks.
24884 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24886         * org-table.el (org-table-justify-field-maybe): Make sure that
24887         inserting a value does not turn a line into a hline.
24889 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24891         * org-clock.el (org-clock-sum): New argument HEADLINE-FILTER.
24892         (org-clock-sum): Add property to selected headlines.
24893         (org-dblock-write:clocktable): Make tags matcher.
24895         * org.el (org-set-autofill-regexps): XEmacs compatibility.
24897         * org-latex.el (org-export-latex-set-initial-vars): Allow "-"
24898         in latex class definitions.
24900         * org.el (org-shiftup-hook, org-shiftdown-hook)
24901         (org-shiftleft-hook, org-shiftright-hook): New hooks.
24903         * org-entities.el (org-entities): Use \land and \lor for logical
24904         operators.
24906         * org.el (org-shiftmetaleft, org-shiftmetaright): Call the subtree
24907         indentation commands.
24908         (org-hidden-tree-error): New defsubst.
24909         (org-metaleft, org-metaright): Check for hidden stuff and throw an
24910         error.
24911         (org-check-for-hidden): New function.
24913         * org-list.el (org-item-re): New function.
24914         (org-at-item-p): Use `org-item-re'.
24915         (org-end-of-item-text-before-children): New function.
24916         (org-outdent-item, org-indent-item): Arrange for leaving the
24917         subtree alone.
24918         (org-outdent-item-tree, org-indent-item-tree): New argument
24919         NO-SUBTREE.
24920         (org-indent-item-tree): Use `org-end-of-item-text-before-children'
24921         to find the end for processing while ignoring the subtree.
24923         * org-publish.el (org-publish-sitemap-sort-alphabetically)
24924         (org-publish-sitemap-sort-folders)
24925         (org-publish-sitemap-sort-ignore-case): New options.
24927 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24929         * org-publish.el (org-publish-compare-directory-files): Fix sorting.
24931         * org-compat.el (org-get-x-clipboard-compat): Use (featurep 'xemacs).
24933         * org-publish.el (org-publish-project-alist): Update docstring.
24934         (org-publish-file-title-cache): New variable.
24935         (org-publish-initialize-files-alist):
24936         Initialize `org-publish-initialize-files-alist' to nil.
24937         (org-publish-sort-directory-files): New function.
24938         (org-publish-projects): Access the new properties.
24939         (org-publish-find-title): Use the file title cache.
24940         (org-publish-find-title): Build the file title cache.
24941         (org-publish-get-base-files-1): Sort files.
24942         (org-publish-aux-preprocess): Do not throw an error when before
24943         the first headline.  Allow an empty target, meaning to link just
24944         to the file.
24945         (org-publish-index-generate-theindex.inc): Check if there is
24946         actually a target and only then add it to the link.
24947         (org-publish-projects): Fix a remaining issue with the last commit.
24949         * org-html.el (org-export-as-html): Treat verse as open/close
24950         paragraph.
24951         (org-export-html-close-lists-maybe): Allow to splice raw HTML into
24952         and out of lists.
24954 2010-07-19  Dan Davison  <davison@stats.ox.ac.uk>
24956         * org-src.el (org-edit-src-code): Allow the org-src edit buffer to
24957         be used in a read-only mode.
24958         (org-edit-src-code): Different message in read-only mode.
24960 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24962         * org-src.el (org-edit-src-find-region-and-lang): Test for
24963         table.el as late as possible.
24965         * org-colview.el: Make sure this file is never loaded into XEmacs.
24967         * org-agenda.el (org-highlight, org-unhighlight): Use direct
24968         overlay calls.
24970         * org.el (org-key): Apply the translations defined in
24971         `org-xemacs-key-equivalents'.
24973         * org-mouse.el (org-mode-hook): Use `org-defkey'.
24975         * org-compat.el (org-xemacs-key-equivalents): New constant.
24977 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
24979         * org-inlinetask.el (org-inlinetask-defaut-state): New option.
24980         (org-inlinetask-insert-task): Use `org-inlinetask-defaut-state'.
24981         Obey `org-odd-levels-only'.
24983         * org-compat.el (org-find-overlays): Use overlays-in/at.
24985         * org.el (org-remove-empty-overlays-at)
24986         (org-outline-overlay-data, org-hide-block-toggle)
24987         (org-format-latex, org-context): Use overlays-in/at.
24989         * org-src.el (org-edit-src-exit): Use overlays-in/at.
24991         * org-agenda.el (org-agenda-mark-clocking-task)
24992         (org-agenda-fontify-priorities, org-agenda-dim-blocked-tasks)
24993         (org-agenda-entry-text-hide)
24994         (org-agenda-fix-tags-filter-overlays-at)
24995         (org-agenda-bulk-remove-overlays): Use overlays-in/at.
24997         * org-compat.el (org-overlays-at): Function removed.
24998         (org-overlays-in): Function removed.
25000 2010-07-19  Bastien Guerry  <bzg@gnu.org>
25002         * org-clock.el (org-clock-set-current): Just return the headline
25003         itself, strip the TODO keyword, the priority cookie and the tags.
25005 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
25007         * org-compat.el (org-xemacs-without-invisibility): New macro.
25008         (org-xemacs-without-invisibility): New macro.
25009         (org-indent-to-column, org-indent-line-to, org-move-to-column):
25010         Redefine using the macro `org-xemacs-without-invisibility'.
25012         * org.el (org-mode, org-org-menu): Use `add-to-invisibility-spec'.
25014         * org-table.el (orgtbl-mode): Use `add-to-invisibility-spec'.
25016         * org-compat.el (org-make-overlay, org-delete-overlay)
25017         (org-overlay-start, org-overlay-end, org-overlay-put)
25018         (org-overlay-get, org-overlay-move, org-overlay-buffer):
25019         Functions removed.
25020         (org-add-to-invisibility-spec): Function removed.
25022         * org-html.el (org-export-as-html-and-open): Add argument to
25023         kill-buffer.
25025         * org-habit.el (require): `calendar' is now required already by
25026         org.el on top level.
25028         * org-clock.el (require): `calendar' is now required already by
25029         org.el on top level.
25031         * org-agenda.el (require, org-timeline, org-agenda-list)
25032         (org-todo-list, org-agenda-to-appt): `calendar' is now required
25033         already by org.el on top level.
25035         * org.el (org-export-latex-fix-inputenc): Declare function.
25037         * org-agenda.el (org-agenda-goto-calendar): Do not bind obsolete
25038         variables.
25040         * org.el (calendar): Require calendar now on top level in org.el
25041         and define aliases to new variables when needed.
25042         (org-read-date, org-goto-calendar): Do not bind obsolete
25043         variables.
25045         * org-clock.el (org-clock-out, org-clock-cancel): Get rid of
25046         compilation warning, add comment that this cannot be done with
25047         `with-current-buffer'.
25049         * org-wl.el (org-wl-open): Use `with-current-buffer'.
25051         * org.el (overlay, org-remove-empty-overlays-at)
25052         (org-outline-overlay-data, org-set-outline-overlay-data)
25053         (org-show-block-all, org-hide-block-toggle)
25054         (org-highlight-new-match, org-remove-occur-highlights)
25055         (org-tags-overlay, org-fast-tag-selection, org-date-ovl)
25056         (org-read-date, org-read-date-display, org-eval-in-calendar)
25057         (org-format-latex, org-context)
25058         (org-speedbar-restriction-lock-overlay)
25059         (org-speedbar-set-agenda-restriction): Use the normal overlay API.
25061         * org-table.el (org-table-add-rectangle-overlay)
25062         (org-table-remove-rectangle-highlight)
25063         (org-table-overlay-coordinates)
25064         (org-table-toggle-coordinate-overlays): Use the normal overlay
25065         API.
25067         * org-src.el (org-edit-src-code, org-edit-fixed-width-region)
25068         (org-edit-src-exit, org-src-mode-configure-edit-buffer): Use the
25069         normal overlay API.
25071         * org-colview.el (org-columns-new-overlay)
25072         (org-columns-display-here, org-columns-remove-overlays)
25073         (org-columns-edit-value, org-columns-next-allowed-value)
25074         (org-columns-update): Use the normal overlay API.
25076         * org-clock.el (org-clock-out, org-clock-cancel)
25077         (org-clock-put-overlay, org-clock-remove-overlays): Use the normal
25078         overlay API.
25080         * org-agenda.el (org-agenda-mark-filtered-text)
25081         (org-agenda-mark-clocking-task, org-agenda-fontify-priorities)
25082         (org-agenda-dim-blocked-tasks, org-agenda-entry-text-show-here)
25083         (org-agenda-entry-text-hide)
25084         (org-agenda-restriction-lock-overlay)
25085         (org-agenda-set-restriction-lock)
25086         (org-agenda-filter-by-tag-hide-line)
25087         (org-agenda-fix-tags-filter-overlays-at)
25088         (org-agenda-filter-by-tag-show-all, org-hl)
25089         (org-agenda-goto-calendar, org-agenda-bulk-mark)
25090         (org-agenda-bulk-remove-overlays): Use the normal overlay API.
25092         * org-freemind.el (org-freemind-from-org-mode-node)
25093         (org-freemind-from-org-mode)
25094         (org-freemind-from-org-sparse-tree, org-freemind-to-org-mode):
25095         Use interactive-p instead of called-interactively, because this is
25096         backward compatible with older Emacsen I still support..
25098 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
25100         * org-exp.el (org-export-define-heading-targets): Fix bug in
25101         regexp finding ID and CUSTOM_ID properties.
25103 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
25105         * org-footnote.el (org-footnote-goto-previous-reference):
25106         Rename from `org-footnote-goto-next-reference'.
25108         * org.el (org-auto-repeat-maybe): Only record LAST_REPEAT if
25109         org-log-repeat is non-nil, or if there is clocking data in the
25110         entry.
25112         * org-crypt.el (org-encrypt-entry): Improve mapping behavior.
25114 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
25116         * org.el (org-align-all-tags): New command.
25118 2010-07-19  David Maus  <dmaus@ictsoc.de>
25120         * org-wl.el (org-wl-link-remove-filter): New customizable
25121         variable.  If non-nil, filter conditions are stripped when storing
25122         link to message in filter folder.
25123         (org-wl-shimbun-prefer-web-links): New customizable variable.
25124         If non-nil, links to shimbun messages are created as web links to
25125         message source.
25126         (org-wl-nntp-prefer-web-links): New customizable variable.
25127         If non-nil, links to nntp message are created as web links to gmane
25128         or googlegroups.
25129         (org-wl-namazu-default-index): New customizable variable.
25130         Directory of namazu search index that should be used as default
25131         when opening a link in a search folder.
25132         (org-wl-folder-types): New constant.  Wanderlust folder type
25133         indicators.
25134         (org-wl-folder-type): New function.  Return type of Wanderlust
25135         folder.
25136         (org-wl-store-link): Create web links for shimbun or nntp messages
25137         and strip filter conditions depending on customizable variables.
25138         (org-wl-open): Open namazu search folder for message when called
25139         with prefix.
25141 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
25143         * org.el (org-remove-if, org-remove-if-not): New functions.
25144         (org-open-file): Use internal remove-if functions.
25146 2010-07-19  Jan Böcker  <jan.boecker@jboecker.de>
25148         * org.el (org-file-apps-entry-match-against-dlink-p): New function.
25149         (org-file-apps-ex): Remove variable.
25150         (org-open-file): Integrate org-file-apps-ex functionality back
25151         into org-file-apps, and decide whether to match a regexp against
25152         the link or the filename using org-file-apps-entry-uses-grouping-p.
25154 2010-07-19  Jan Böcker  <jan.boecker@jboecker.de>
25156         * org.el (org-file-apps-ex): New variable.
25157         (org-open-file): Before considering org-file-apps, first match the
25158         regexps from org-file-apps-ex against the whole link.
25159         See docstring of org-file-apps-ex.
25161 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
25163         * org.el (org-export-latex-default-packages-alist):
25164         Remove microtype package.
25165         (org-todo-repeat-to-state): New variable.
25166         (org-auto-repeat-maybe): Allow user-selected target states.
25167         (org-default-properties): Add the new property REPEAT_TO_STATE.
25169 2010-07-19  Carsten Dominik  <carsten.dominik@gmail.com>
25171         * org-mobile.el (org-mobile-check-setup): Make sure that there is
25172         a binary to compute checksums.
25174 2010-06-26  Carsten Dominik  <carsten.dominik@gmail.com>
25176         * org-agenda.el (org-agenda-goto-calendar): Do not bind obsolete
25177         variables.
25179         * org.el (calendar): Require calendar now on top level in org.el
25180         and define aliases to new variables when needed.
25181         (org-read-date, org-goto-calendar): Do not bind obsolete
25182         variables.
25184 2010-06-22  Glenn Morris  <rgm@gnu.org>
25186         * org-entities.el: Add explicit utf-8 coding cookie to file with
25187         utf-8 characters.
25189 2010-05-26  Stefan Monnier  <monnier@iro.umontreal.ca>
25191         * org.el (org-file-complete-link): Avoid (expand-file-name ".").
25193 2010-05-07  Chong Yidong  <cyd@stupidchicken.com>
25195         * Version 23.2 released.
25197 2010-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
25199         * org-table.el (orgtbl-setup):
25200         * org-agenda.el (org-agenda-entry-text-mode): Simplify.
25202 2010-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
25204         * org-table.el (orgtbl-mode): Use define-minor-mode.
25206 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25208         * org.el (org-insert-link): Find the link buffer on visible frames.
25209         (org-export-latex-default-packages-alist): Hyperref must be loaded
25210         late.
25211         (org-open-file): More care with the new matching for file links.
25213 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25215         * org-latex.el (org-export-latex-preprocess): Do not yet protect
25216         defined entities - these will be taken care of later.
25217         (org-export-latex-special-chars): Post-process entity replacement.
25218         (org-export-latex-fontify-headline): Do not yet protect defined
25219         entities - these will be taken care of later.
25220         (org-export-latex-tables, org-export-latex-links): Format the
25221         caption properly.
25223         * org-entities.el (org-entities-user): Fix typo.
25225         * org.el (org-prepare-agenda-buffers): Uniquify TODO keywords.
25227         * org-entities.el (org-entities-user): Improve docstring.
25229 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25231         * org-entities.el (org-macs): Require org-macs, to be sure that we
25232         have `declare-function' defined.
25234 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25236         * org-latex.el (org-export-latex-classes): Update docstring.
25238         * org.el (org-format-latex-header): Add cookies to the header.
25239         (org-splice-latex-header): Implement placement according to cookies.
25241 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25243         * org-publish.el (org-publish-aux-preprocess): Control case
25244         sensitivity.
25246 2010-04-10  Bastien Guerry  <bzg@gnu.org>
25248         * org.el (org-splice-latex-header): Fix typo.
25250 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25252         * org-latex.el (org-export-latex-make-header):
25253         Use `org-splice-latex-header' to build the header.
25254         (org-export-latex-classes): Update docstring.
25256         * org.el (org-splice-latex-header): New function.
25257         (org-create-formula-image): Use `org-splice-latex-header' to build
25258         the header.
25260         * org-gnus.el (org-gnus-follow-link): Handle nndoc backend.
25262 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25264         * org.el (org-export-latex-packages-alist)
25265         (org-export-latex-default-packages-alist): Fix docstring to
25266         reflect the expected structure.
25268         * org-docbook.el (org-docbook-do-expand): Fix bug with variable names.
25269         (org-export-docbook-finalize-table): Make use of label for tables.
25271 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25273         * org-attach.el (org-attach-commit): Split on newlines.
25275         * org.el (org-export-latex-default-packages-alist): Use list
25276         instead of cons for the entries.
25278 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25280         * org-entities.el (org-entity-get-representation): Catch the case
25281         that there is not entry in the list.
25283         * org-mobile.el (org-mobile-use-encryption)
25284         (org-mobile-encryption-tempfile, org-mobile-encryption-password):
25285         New options.
25286         (org-mobile-check-setup): CHeck the encryption setup.
25287         (org-mobile-copy-agenda-files, org-mobile-sumo-agenda-command)
25288         (org-mobile-create-sumo-agenda): Use encryption code.
25289         (org-mobile-encrypt-and-move): New function.
25290         (org-mobile-encrypt-file, org-mobile-decrypt-file):
25291         New functions.
25292         (org-mobile-move-capture): Decrypt the capture file.
25294         * org.el (org-entities): Require the new file.
25295         (org-export-latex-default-packages-alist): New variable.
25296         (org-complete): Use new entity code for completion.
25297         (org-create-formula-image): Use the new packages variable.
25299         * org-latex.el (org-export-latex-classes): Remove the standard
25300         packages from the class headers.
25301         (org-export-latex-make-header): Use the new package variable.
25302         (org-export-latex-special-chars): Better regexp for entities, to
25303         support entity name that contain numbers.
25304         (org-export-latex-treat-backslash-char): Use the new entity code.
25306         * org-html.el (org-html-do-expand): Use the new entity code.
25308         * org-exp.el (org-export): Add the new export commands.
25309         (org-html-entities): Constant removed.
25310         (org-export-visible): Add the new export commands.
25312         * org-docbook.el (org-docbook-do-expand): Use new entity code.
25314         * org-ascii.el (org-export-ascii-entities): New variable.
25315         (org-export-as-latin1, org-export-as-latin1-to-buffer)
25316         (org-export-as-utf8, org-export-as-utf8-to-buffer): New commands.
25317         (org-export-as-encoding): New function.
25318         (org-export-ascii-preprocess): Call `org-ascii-replace-entities'.
25319         (org-ascii-replace-entities): New function.
25321 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25322             Ulf Stegemann  <ulf@zeitform.de>
25324         * org-entities.el: New file.
25326 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25328         * org-html.el (org-html-level-start): Catch the case that target
25329         might be nil.
25331 2010-04-10  Dan Davison  <davison@stats.ox.ac.uk>
25333         * org.el (org-appearance): Change Customize group variable name
25334         from org-font-lock to org-appearance, and change tag from "Org
25335         Font Lock" to "Org Appearance".
25336         (org-odd-levels-only): Change Customize group variable name.
25337         (org-level-color-stars-only): Change Customize group variable name.
25338         (org-hide-leading-stars): Change Customize group variable name.
25339         (org-hidden-keywords): Change Customize group variable name.
25340         (org-fontify-done-headline): Change Customize group variable name.
25341         (org-fontify-emphasized-text): Change Customize group variable name.
25342         (org-fontify-whole-heading-line): Change Customize group variable name.
25343         (org-highlight-latex-fragments-and-specials): Change Customize
25344         group variable name.
25345         (org-hide-emphasis-markers): Change Customize group variable name.
25346         (org-emphasis-alist): Change Customize group variable name.
25347         (org-emphasis-regexp-components): Change Customize group variable
25348         name.
25349         (org-modules): Remove mention of org-R.
25351         * org-faces.el (org-faces): Change Customize group variable name.
25353 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25355         * org-agenda.el (org-diary-last-run-time): New variable.
25356         (org-diary): Prepare agenda buffers only if last call was some
25357         time ago.
25359         * org-html.el (org-export-html-preprocess): Replace \ref macros
25360         with a link.
25361         (org-format-org-table-html): Add the label as an anchor.
25363         * org-docbook.el (org-export-docbook-format-image): Do some
25364         formatting on captions.
25366         * org-latex.el (org-export-latex-tables, org-export-latex-links):
25367         Do some formatting on captions.
25369         * org-html.el (org-export-html-format-image)
25370         (org-format-org-table-html): Do some formatting on captions.
25372 2010-04-10  Dan Davison  <davison@stats.ox.ac.uk>
25374         * org.el (org-hidden-keywords): New customizable variable.  This is
25375         a list of symbols specifying which of the special keywords #+DATE,
25376         #+AUTHOR, #+EMAIL and #+TITLE should be hidden by font lock.
25377         (org-fontify-meta-lines-and-blocks): Changes to font-lock code
25378         implementing new faces and hiding behavior.
25380         * org-faces.el (org-document-title): New face for #+TITLE lines.
25381         (org-document-info): New face for #+DATE, #+AUTHOR, #+EMAIL lines.
25382         (org-document-info-keyword): New face for #+DATE, #+AUTHOR, #+EMAIL
25383         keywords.
25385 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25387         * org-publish.el (org-publish-sanitize-plist): New function to
25388         rename "index" properties to "sitemap".  Do this renaming
25389         globally.
25390         (org-publish-with-aux-preprocess-maybe): New macro.
25391         (org-publish-org-to-pdf, org-publish-org-to-html): Use the new
25392         macro.
25393         (org-publish-aux-preprocess)
25394         (org-publish-index-generate-theindex.inc): New function.
25396 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25398         * org-table.el (org-table-align): Interpret <N> at fixed width,
25399         not as maximum width.
25401 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25403         * org-exp.el (org-export-author-info, org-export-email-info):
25404         Fix docstrings.
25406         * org-beamer.el (org-beamer-select-environment): Rename from
25407         `org-beamer-set-environment-tag'.  Improve docstring.
25409         * org-freemind.el (org-freemind-write-mm-buffer): Fix another
25410         problem with odd levels.
25412         * org-ascii.el (org-export-as-ascii): Export email only if the
25413         author wants it.
25415         * org-docbook.el (org-export-as-docbook): Export email only if the
25416         author wants it.
25418         * org-html.el (org-export-as-html): Export email only if the
25419         author wants it.
25421         * org-exp.el (org-export-email-info): New option.
25422         (org-export-plist-vars): Add entry for `org-export-email'.
25424 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25426         * org-table.el (org-table-goto-line): Fix typo.
25428 2010-04-10  Mikael Fornius  <mfo@abc.se>
25430         * org.el (org-agenda-files): Typo.
25431         (org-read-agenda-file-list): Add optional argument to help
25432         `org-store-new-agenda-file-list' to remember un-expanded file
25433         names.  Expand file names relative to `org-directory'.
25434         (org-store-new-agenda-file-list): Keep un-expanded file names when
25435         saving, if available.
25436         (org-agenda-files): Update documentation.
25438 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25440         * org-ascii.el (org-export-as-ascii): Catch the case of exporting
25441         a buffer with no file name attached.
25443         * org.el (org-log-refile): New option.
25444         (org-log-note-headings): Add a heading for refiling.
25445         (org-startup-options): Add keywords for logging of the refile
25446         action.
25447         (org-refile): Add logging action.
25448         (org-add-log-note): Allow for refiling action.
25450         * org-agenda.el (org-agenda-bulk-action): Make sure
25451         `org-log-refile' is not `note' during a bulk action.
25453 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25455         * org.el (org-map-dblocks): Use save-excursion to remember the
25456         position.
25458         * org-attach.el (org-attach-commit): Remove dependence on xargs.
25459         (org-attach-delete-one): Commit after deleting a file.
25461         * org-latex.el (org-export-latex-fontify): Do not mistake table.el
25462         borders for strike-through emphasis.
25464         * org-freemind.el (org-freemind-write-mm-buffer): Simplify the
25465         handling of odd levels.
25467         * org-agenda.el (org-agenda-todo-ignore-deadlines): Document `past'
25468         and `future' values.
25469         (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item):
25470         Handle `past' and `future' values.
25472         * org.el (org-read-agenda-file-list): Interpret file names
25473         relative to org-directory and allow environment variables and
25474         "~".
25476         * org-latex.el (org-export-latex-special-chars): Allow a
25477         parenthesis before an exponent or subscript.
25479 2010-04-10  Dan Davison  <davison@stats.ox.ac.uk>
25481         * org-src.el (org-edit-src-exit): When returning from code edit
25482         buffer, if code block is hidden, leave point at start of
25483         #+begin_src line.
25485 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25487         * org.el (org-insert-heading): Do not remove all spaces if the
25488         headline is empty.
25490         * org-indent.el (org-indent): Fix group name.
25492 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25494         * org-table.el (org-table-goto-column): Fix forcing a non-existing
25495         column.
25496         (org-table-get, org-table-put, org-table-goto-line)
25497         (org-table-current-line): New functions.
25499 2010-04-10  Jan Böcker  <jan.boecker@jboecker.de>
25501         * org.el (org-open-file): Allow regular expressions in
25502         org-file-apps to capture link parameters using groups.  In a
25503         command string to be executed, the parameters can be referenced
25504         using %1, %2, etc.  Lisp forms can access them using
25505         (match-string n link).
25506         (org-apps-regexp-alist): Adopt the created regexp, as this is now
25507         matched against a file: link instead of the file name.
25509 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25511         * org-crypt.el (org-reveal-start-hook): Add a decryption function
25512         to this hook.
25513         (org-decrypt-entries, org-encrypt-entries, org-decrypt-entry):
25514         Add docstrings.
25516         * org.el (org-point-at-end-of-empty-headline)
25517         (org-level-increment, org-get-previous-line-level): New function.
25518         (org-cycle-level): Rewritten to be independent of when this
25519         function is called.
25520         (org-in-regexps-block-p): New function.
25521         (org-reveal-start-hook): New hook.
25522         (org-reveal): Run new hook.
25524 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25526         * org-latex.el (org-export-latex-keywords): Start a new paragraph
25527         after time keywords, do not add "\newline".
25529         * org-html.el (org-export-as-html): Avoid double # in href.
25531         * org.el (org-refile-get-location): Catch an invalid target
25532         specification.
25534 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25536         * org-agenda.el (org-agenda-add-entry-to-org-agenda-diary-file):
25537         Make sure the behavior regarding to extracting time is
25538         consistent.
25540 2010-04-10  Stephen Eglen  <stephen@gnu.org>
25542         * org-agenda.el (org-agenda-insert-diary-extract-time):
25543         New variable.
25544         (org-agenda-add-entry-to-org-agenda-diary-file): Use this new
25545         variable rather than `org-agenda-search-headline-for-time'.
25547 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25549         * org-list.el (org-fix-bullet-type): Improve cursor positioning.
25551 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25553         * org.el (org-adaptive-fill-regexp-backup): New variable.
25554         (org-set-autofill-regexps): Store a backup of
25555         `adaptive-fill-regexp'.
25556         (org-adaptive-fill-function): Fix filling of comments and ordered
25557         lists.  If there is no other match, till try adaptive fill.
25559 2010-04-10  John Wiegley  <jwiegley@gmail.com>
25561         * org-agenda.el (org-agenda-include-deadlines): Add new
25562         customization variable to determine whether unscheduled tasks
25563         should appear in the agenda solely because of their deadline.
25564         Default to true, which was the previous behavior (it just wasn't
25565         configurable).
25566         (org-agenda-mode-map, org-agenda-view-mode-dispatch): Bind ! in
25567         the agenda to show/hide deadline tasks.
25568         (org-agenda-menu): Add menu option for show/hide deadlines.
25569         (org-agenda-list): Make the agenda list sensitive to the value of
25570         `org-agenda-include-deadlines'.
25571         (org-agenda-toggle-deadlines): New function to toggle the value of
25572         `org-agenda-include-deadlines' and repaint the modeline
25573         indicators.
25574         (org-agenda-set-mode-name): Show "Deadlines" in the agenda
25575         modeline if deadline tasks are being displayed.
25577 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25579         * org-table.el (org-table-eval-formula): Replace $# and @# by
25580         current column and row number.
25582 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25584         * org.el (org-set-property, org-delete-property): Go back to
25585         prompting for the property.
25587         * org-latex.el (org-export-latex-make-header): Fully process
25588         author line.
25589         (org-export-latex-fontify-headline): Allow several arguments, not
25590         just one.
25591         (org-export-latex-fix-inputenc): Catch the error when
25592         `latexenc-coding-system-to-inputenc' is not defined.
25594         * org-agenda.el (org-agenda-skip-if-todo): New function.
25595         (org-agenda-skip-if): Add conditions for TODO keywords.
25596         (org-agenda-skip-if): Document the new todo conditions.
25598 2010-04-10  Mikael Fornius  <mfo@abc.se>
25600         * org.el (org-at-property-p): Check if we are inside a property
25601         drawer not just any drawer.
25602         (org-set-property, org-delete-property): When cursor is on a
25603         property key value pair do not prompt for property name instead
25604         use name at cursor.
25605         (org-ctrl-c-ctrl-c): Still do org-property-action when cursor is
25606         on the first line of a property drawer.
25607         (org-property-end-re): Spell check.
25609 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25611         * org-exp.el (org-export-attach-captions-and-attributes): Add the
25612         properties to the entire table, in case the first line is
25613         removed.
25615         * org-archive.el (org-archive-reversed-order): New option.
25616         (org-archive-subtree, org-archive-to-archive-sibling): Use the new
25617         option `org-archive-reversed-order'.
25619 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25621         * org-agenda.el (org-agenda-entry-types): New variable.
25622         (org-agenda-list): Use `org-agenda-entry-types'.
25623         (org-agenda-custom-commands-local-options): Support for setting
25624         `org-agenda-entry-types' as an option.
25625         (org-diary): Shift some documentation from here to the variable
25626         `org-agenda-entry-types'.
25628 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25630         * org-latex.el (org-export-latex-make-header): Apply macros in
25631         author field.
25633         * org-clock.el (org-clocking-buffer, org-clocking-p): New function.
25634         (org-clock-select-task, org-clock-notify-once-if-expired)
25635         (org-clock-in, org-clock-out, org-clock-cancel, org-clock-goto)
25636         (org-clock-out-if-current, org-clock-save): Use the new functions.
25638 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25640         * org-docbook.el (org-export-as-docbook): Remove unnecessary
25641         newline.
25642         (org-export-as-docbook): Remove unnecessary newline.
25643         (org-export-as-docbook): Fix problem with double footnote
25644         reference in one place.
25646         * org-exp.el (org-export-format-source-code-or-example):
25647         Remove unnecessary newline.
25649         * org.el (org-deadline, org-schedule): Allow rescheduling entries
25650         with repeaters.
25652         * org-table.el (org-table-convert-refs-to-rc): Better way to catch
25653         function calls that look like references.
25655         * org.el (org-open-at-point): Get link abbreviations from
25656         reference buffer.
25658 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25660         * org-table.el (org-table-convert-refs-to-rc): Do not read arctan2
25661         as a reference.
25663 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25665         * org.el (org-link-unescape): Solve issue with lower-case escapes.
25667 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25669         * org-latex.el (org-export-latex-classes):
25670         Add \usepackage{latexsym} to all classes.
25672 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25674         * org-html.el (org-export-as-html): Do not allow protected lines
25675         into the table of contents.
25677         * org-latex.el (org-export-latex-special-chars): Find subsequent
25678         occurrences of special characters.
25679         (org-export-latex-tables): Do not convert table-like stuff that is
25680         protected.
25682 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25684         * org-list.el (org-toggle-checkbox): No errors when updating
25685         checkbox count fails because there is no heading.
25687 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25689         * org-clock.el (org-clock-report-include-clocking-task):
25690         New option.
25691         (org-clock-sum): Add the current clocking task.
25693 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25695         * org.el (org-cycle): Print a message when in a table.el table.
25696         (org-edit-special): Recognize the table.el context.
25697         (org-ctrl-c-ctrl-c): Print a message when in a table.el table.
25699         * org-src.el (org-at-table.el-p): Declare.
25700         (org-edit-src-code): Handle a special case for table.el editing.
25701         (org-edit-src-find-region-and-lang): Recognize the table.el
25702         context.
25704         * org-latex.el (org-export-latex-tables): Convert table.el
25705         tables.
25706         (org-export-latex-convert-table.el-table): New function.
25708         * org-html.el (org-html-expand): Fix table.el export.
25710         * org-latex.el (org-export-latex-preprocess): Protect footnotes in
25711         headings.
25713         * org-id.el (org-id-find-id-file): Fix bug when there is no hash
25714         table for the id locations.
25716         * org.el (org-read-date-analyze): Match American-style dates, like
25717         5/30 or 5/13/7.  Make sure cal-iso.el is loaded.  Don't force he
25718         current year when reading ISO and American dates.
25720 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25722         * org.el (org-face-from-face-or-color): New function.
25723         (org-get-todo-face, org-font-lock-add-priority-faces)
25724         (org-get-tag-face): Use `org-face-from-face-or-color'.
25726         * org-faces.el (org-todo-keyword-faces, org-priority-faces):
25727         Allow simple colors as values.
25728         (org-faces-easy-properties): New option.
25730         * org-agenda.el (org-agenda-set-mode-name): Show if the agenda is
25731         restricted, as an agenda mode.
25732         (org-agenda-fontify-priorities): Allow simple colors as values.
25734 2010-04-10  Bastien Guerry  <bzg@gnu.org>
25736         * org-timer.el (org-timer-current-timer): Rename from
25737         `org-timer-last-timer'.
25738         (org-timer-timer1, org-timer-timer2, org-timer-timer3): Remove.
25739         (org-timer-cancel-timer, org-timer-show-remaining-time)
25740         (org-timer-set-timer): Update to use only one timer.
25742         * org.el (org-set-property): Remove useless space in the prompt.
25744 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25746         * org-html.el (org-export-html-style-default): Add a default style
25747         for textareas.
25749         * org-exp.el (org-export-format-source-code-or-example):
25750         Fix textarea tag.
25752 2010-04-10  Bastien Guerry  <bzg@gnu.org>
25754         * org-clock.el (org-clock-current-task): New variable to store
25755         last clocked in task.
25756         (org-clock-set-current, org-clock-delete-current): New functions.
25758 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25760         * org-remember.el (org-remember-apply-template): Extend comment.
25761         (org-remember-handler): Implement clock sibling filing.
25763 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25765         * org-publish.el (org-publish-all, org-publish-current-file)
25766         (org-publish-current-project): When called with prefix argument
25767         FORCE, also rebuild the validation file list.
25769         * org-latex.el (org-export-latex-preprocess): Protect footnotes in
25770         section headings.
25772 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25774         * org-html.el (org-export-as-html-and-open): Kill product buffer
25775         if the user wants that.
25777         * org-latex.el (org-export-as-pdf-and-open): Kill product buffer
25778         if the user wants that.
25780         * org-exp.el (org-export-kill-product-buffer-when-displayed):
25781         New option.
25783         * org-agenda.el (org-batch-agenda-csv): Use the time property
25784         instead of the `time-of-day' property.
25786 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25788         * org-timer.el (org-timer-start-hook, org-timer-stop-hook)
25789         (org-timer-pause-hook, org-timer-set-hook)
25790         (org-timer-cancel-hook): New hooks.
25791         (org-timer-start): Run `org-timer-start-hook'.
25792         (org-timer-pause-or-continue): Run `org-timer-pause-hook'.
25793         (org-timer-stop): Run `org-timer-stop-hook'.
25794         (org-timer-cancel-timers): Run `org-timer-cancel-hook'.
25796 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25798         * org.el (org-reveal): Double prefix arg shows the subtree of the
25799         parent.
25801 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25803         * org-agenda.el (org-search-view): Fix bug with searching full
25804         words in headlines in search view.
25805         (org-agenda-skip-deadline-prewarning-if-scheduled): New option.
25806         (org-agenda-get-deadlines): Suppress pre-warning if the entry is
25807         scheduled (if the user configures it so.
25809 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25811         * org.el (org-hide-archived-subtrees): Don't jump to end of
25812         subtree if the match was not in a headline.
25813         (org-inside-latex-macro-p): Allow more complex arguments.
25814         (org-emphasize): Protect against use at end of buffer.
25816 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25818         * org-agenda.el (org-agenda-align-tags): Avoid side effects on
25819         text properties.
25821 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25823         * org-agenda.el (org-agenda-todo-ignore-scheduled): More allowed
25824         values.
25825         (org-agenda-todo-ignore-scheduled)
25826         (org-agenda-todo-ignore-deadlines): More control with different
25827         allowed values.
25828         (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item):
25829         Honor the new option settings.
25831 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25833         * org.el (org-get-location): Make sure the selection buffer is
25834         shown in the current frame.
25836         * org-ascii.el (org-export-ascii-table-widen-columns):
25837         New option.
25838         (org-export-ascii-preprocess): Realign tables to remove narrowing
25839         if `org-export-ascii-table-widen-columns' is set.
25841         * org-table.el (org-table-do-narrow): New variable.
25842         (org-table-align): Narrow only if `org-table-do-narrow' is t.
25844         * org.el (org-deadline, org-schedule): Allow updating if the
25845         relevant time stamp does not have a repeater, i.e. do not require
25846         that no time stamp has a repeater.
25848         * org-agenda.el (org-agenda-align-tags): Don't add a face to the
25849         new white space before the tags.
25851         * org-latex.el (org-export-as-latex): Do nit require the buffer to
25852         be visiting a file when only exporting to a buffer or string.
25853         (org-export-latex-fix-inputenc): Only save the buffer is there is
25854         a file name attached to it.
25856 2010-04-10  Dan Davison  <davison@stats.ox.ac.uk>
25858         * org-src.el (org-edit-src-exit): Widen before exiting edit buffers.
25860 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25862         * org.el (org-fontify-meta-lines-and-blocks):
25863         Honor `org-fontify-quote-and-verse-blocks'.
25865         * org-faces.el (org-fontify-quote-and-verse-blocks): New option.
25867 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25869         * org.el (org-open-at-point): Also check for text property
25870         org-linked-text before offering collected links.
25872 2010-04-10  Stephen Eglen  <stephen@gnu.org>
25874         * org-agenda.el (org-agenda-add-entry-to-org-agenda-diary-file):
25875         Optionally extract time specification from text and add to the
25876         timestamp.
25878 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25880         * org-exp.el (org-html-entities): Fix typo.
25882         * org-latex.el (org-export-latex-make-header): Use \providecommand
25883         to make sure the \alert macro is defined.
25885         * org.el (org-format-latex-signal-error)
25886         (org-create-formula-image): Use `org-format-latex-signal-error'.
25888 2010-04-10  Stephen Eglen  <stephen@gnu.org>
25890         * org.el (org-store-link): For dired buffers, use
25891         default-directory as link name if dired-get-filename returns
25892         nil.
25894 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25896         * org-exp.el (org-export-concatenate-multiline-links): The for
25897         protectedness at beginning of match.
25899         * org-latex.el (org-export-latex-fix-inputenc): Never leave the
25900         AUTO as a coding system, instead default to utf8.
25902 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25904         * org.el (org-block-todo-from-children-or-siblings-or-parent)
25905         (org-block-todo-from-checkboxes): Respect the local variable
25906         value when deciding if blocking should be active.
25908         * org-latex.el (org-export-latex-make-header): Define the align
25909         macro if it is not yet defined.
25911         * org-agenda.el (org-agenda-insert-diary-make-new-entry):
25912         Call `org-insert-heading' with the INVISIBLE-OK argument.
25914         * org-mac-message.el (org-mac-message-insert-flagged):
25915         Call `org-insert-heading' with the INVISIBLE-OK argument.
25917         * org.el (org-insert-heading): New argument INVISIBLE-OK.
25919         * org-agenda.el (org-agenda-view-mode-dispatch): Improve the
25920         prompt message.
25922         * org-html.el (org-html-level-start): Use the
25923         `html-container-class' text property to set an additional class
25924         for an outline container.
25926         * org-exp.el (org-export-remember-html-container-classes):
25927         New function.
25928         (org-export-preprocess-string):
25929         Call `org-export-remember-html-container-classes'.
25931         * org.el (org-cycle): Mention level cycling in the docstring.
25932         (org-default-properties): Add new property HTML_CONTAINER_CLASS.
25934         * org-remember.el (org-remember-apply-template): Do file insertion
25935         first.
25937 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25939         * org-habit.el (org-habit-insert-consistency-graphs): Fix a
25940         problem with mis-aligned graphs when showing habits.
25942 2010-04-10  Mikael Fornius  <mfo@abc.se>
25944         * org.el (org-assign-fast-keys): Prefer keys used in keyword name
25945         when assigning.  Begin using numerical characters when all in name
25946         is used up.  This is to spare alphanumeric characters for better
25947         match with other keywords.
25949 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25951         * org-exp.el (org-export-preprocess-hook): Improve documentation.
25953         * org-latex.el (org-export-latex-preprocess): More consistent
25954         conversion and protection of the words LaTeX and TeX.
25955         (org-export-latex-fontify-headline, org-export-latex-preprocess):
25956         Allow angle brackets in commands, for beamer.
25958 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25960         * org-clock.el (org-clock-in): Improve the look of the clock line
25961         by formatting links.
25963 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25965         * org-latex.el (org-export-latex-classes): Use AUTO as the place
25966         holder string for the coding system.  And improve the
25967         documentation.
25968         (org-export-latex-fix-inputenc): Only modify the coding system if
25969         it is given by the placeholder AUTO.
25971 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25973         * org-clock.el (org-task-overrun-text): New option.
25974         (org-task-overrun, org-clock-update-period): New variables.
25975         (org-clock-get-clock-string, org-clock-update-mode-line):
25976         Mark overrun clock.
25977         (org-clock-notify-once-if-expired): Check if clock is overrun.
25979         * org-faces.el: New face `org-mode-line-clock-overrun'.
25981 2010-04-10  Jan Böcker  <jan.boecker@jboecker.de>
25983         * org.el (org-narrow-to-subtree): Position the end of the narrowed
25984         region before the line with the next heading, to prevent the user
25985         from prepending text to the next headline.
25987 2010-04-10  Stephen Eglen  <stephen@gnu.org>
25989         * org-agenda.el (org-get-time-of-day):
25990         Use org-agenda-time-leading-zero to allow leading zero (rather than
25991         space) for times.
25993 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
25995         * org-agenda.el (org-agenda-diary-entry-in-org-file): Make sure
25996         org-datetree.el is loaded.
25998         * org-datetree.el: Autoload `org-datetree-find-day-create'.
26000         * org-latex.el (org-export-latex-hyperref-format): New option.
26001         (org-export-latex-links): Use `org-export-latex-hyperref-format'.
26003 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26005         * org-ctags.el (org-ctags-enable): Change order of functions.
26006         (org-ctags-create-tags): Add wildcard to file name expansion.
26008 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26010         * org.el (org-entry-properties): Fix some important bugs.
26012 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26014         * org.el (org-link-unescape, org-link-escape): Only use hexlify if
26015         the table is not explicitly given.
26017 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26019         * org-clock.el (org-clock-out-when-done): Allow a list of keywords
26020         as value.
26021         (org-clock-out-if-current): Work with the new list value of
26022         `org-clock-out-when-done'.
26023         (org-clock-out, org-clock-out-if-current): Avoid circular logic
26024         between clocking out and state changes.
26026         * org-ctags.el (org-ctags-path-to-ctags): Better system-type test.
26028         * org-latex.el (org-export-latex-treat-backslash-char): Do not by
26029         accident protect a character that is before a backslash.
26031 2010-04-10  Paul Sexton  <eeeickythump@gmail.com>
26033         * org-ctags.el: New file.
26035 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26037         * org-agenda.el (org-diary-class):
26038         Use `org-order-calendar-date-args'.
26040         * org.el (org-order-calendar-date-args): New function.
26042         * org-exp.el (org-export-target-internal-links): Check for
26043         protectedness after the first bracket.
26045         * org.el (org-entry-properties): Don't match wrong-case TODO
26046         keywords.
26048         * org-agenda.el (org-agenda-schedule, org-agenda-deadline):
26049         Document that ARG is passed through to remove the date.
26050         (org-agenda-bulk-action): Accept prefix arg and pass it on.
26051         Do not read a date when the user has given a `C-u' prefix.
26053 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26055         * org-agenda.el (org-agenda-fix-displayed-tags): Fix bug when all
26056         tags are hidden.
26058 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26060         * org-latex.el (org-export-latex-fix-inputenc): New function.
26061         (org-export-latex-inputenc-alist): New option.
26063         * org-exp.el (org-export): New key SPC to publish enclosing
26064         subtree.
26066 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26068         * org-indent.el (org-indent-add-properties): Catch case when there
26069         is no headline in the buffer.
26071 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26073         * org-exp.el (org-html-entities): Add checkmark symbol.
26075         * org-ascii.el (org-export-ascii-preprocess): Protect targets in
26076         verbatim code for ASCII export.
26078         * org.el (org-update-statistics-cookies): Also see checkboxes in
26079         ordered lists.
26081 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26083         * org-agenda.el (org-agenda-view-mode-dispatch): Define the `L'
26084         key.
26086         * org-beamer.el (org-beamer-amend-header): Change the location
26087         where `org-beamer-header-extra' is inserted.
26089         * org.el (org-compute-latex-and-specials-regexp): Don't do BIND
26090         just for computing this regexp.
26092 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26094         * org-beamer.el (org-beamer-frame-default-options): New option.
26095         (org-beamer-sectioning): Use default options if the user does not
26096         have defined any.
26097         (org-beamer-fix-toc): Put a frame around the table of contents.
26099         * org-exp.el (org-export-remove-comment-blocks-and-subtrees):
26100         Make sure case-folding works well when processing comment stuff.
26102         * org-latex.el (org-export-latex-after-save-hook): New hook.
26103         (org-export-as-latex): Run the new hook.
26105 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26107         * org-beamer.el (org-beamer-environments-default): Add the note
26108         environments.
26109         (org-beamer-after-initial-vars): Allow several BEAMER_HEADER_EXTRA
26110         lines and collect and combine the content.
26111         (org-beamer-after-initial-vars): Check for note tags and make sure
26112         they will be seen like a property.
26114         * org.el (org-offer-links-in-entry): Fix bug when there is a
26115         single link.
26117         * org-exp.el (org-export): Make sure the mark is activated, also
26118         when `transient-mark-mode' is off.
26120         * org-agenda.el (org-agenda-search-view-always-boolean): New option.
26121         (org-agenda-search-view-search-words-only): Obsolete variable, is
26122         now an alias for `org-agenda-search-view-always-boolean'.
26123         (org-agenda-search-view-force-full-words): New option.
26124         (org-search-view): Improve docstring, and implement a better logic
26125         for Boolean and phrase searches.
26126         (org-agenda-last-search-view-search-was-boolean): New variable.
26127         (org-agenda-manipulate-query): Consider the type of the last
26128         search when modifying the search string.
26130 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26132         * org-latex.el (org-export-as-latex): Do the first letbind in the
26133         right moment.
26135         * org-agenda.el (org-get-entries-from-diary): Add the new face to
26136         these entries.
26138         * org-faces.el (org-agenda-diary): New face.
26140         * org.el (org-make-link-regexps): Allow regexp-special characters
26141         in link types.
26142         (org-open-file): When in-emacs is `system', also force system
26143         opening, like when the value was `(16)'.
26144         (org-update-statistics-cookies): Handle entries without children.
26146         * org-exp.el
26147         (org-export-preprocess-before-normalizing-links-hook): New hook.
26148         (org-export-preprocess-string): Run the new hook.
26150         * org.el (org-offer-links-in-entry): Make RET open all links.
26152         * org-html.el (org-export-as-html): Remove any leftover display
26153         properties in the html file.
26155         * org-wl.el (org-wl-store-link): Work-around for format bug with
26156         text properties.
26158         * org-habit.el (org-habit-insert-consistency-graphs): Turn off
26159         invisibility while adding the graphs.
26161 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26163         * org-remember.el (org-select-remember-template): Use C letter to
26164         customize remember templates.
26166         * org-agenda.el (org-agenda-bulk-mark, org-agenda-bulk-unmark):
26167         Move cursor to next visible line.
26169 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26171         * org-beamer.el (org-beamer-sectioning): Leave columns environment
26172         by specifying 0 or 1 for column width.
26173         (org-beamer-column-widths): Make 0 stand for 0.0.
26175 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26177         * org-exp.el (org-export-mark-radio-links): Don't match inside
26178         <<target>>.
26180         * org.el (org-format-latex-header-extra): New variable.
26181         (org-format-latex): Set org-format-latex-header-extra from
26182         in-buffer stuff.
26183         (org-format-latex): Add org-format-latex-header-extra to the
26184         variables on which image creation depends.
26185         (org-create-formula-image): Add the header stuff from in-buffer
26186         settings.
26187         (org-read-date-analyze): Base the analysis for future preference
26188         on NOW, not on the default date.
26190         * org-inlinetask.el (org-inlinetask-export-handler): Add CSS class
26191         for TODO keyword in inline tasks.
26193         * org.el (org-log-note-headings): New headings for removing
26194         deadline or scheduling date.
26195         (org-deadline, org-schedule): Arrange for logging when removing a
26196         date.
26197         (org-add-log-note): Handle deadline and scheduling removal.
26199 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26201         * org-exp.el (org-export-visible): Add LaTeX/pdf export.
26203 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26205         * org-agenda.el (org-diary-class): New function.
26207 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26209         * org-latex.el (org-export-latex-preprocess): Do process the text
26210         of a radio target.
26212 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26214         * org.el (org-entry-properties): Add TIMESTAMP properties back
26215         in.
26217 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26219         * org.el (org-all-time-keywords): New variable.
26220         (org-set-regexps-and-options): Set `org-all-time-keywords'.
26221         (org-entry-blocked-p): New function.
26222         (org-special-properties): Add BLOCKED as a new special property.
26223         (org-entry-properties): New optional argument SPECIFIC, only parse
26224         for this property when it is specified.
26225         (org-entry-get): Pass a SPECIFIC argument to
26226         `org-entry-properties'.
26228         * org-latex.el (org-export-as-latex): Preprocess TEXT as well.
26230 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26232         * org-latex.el (org-export-latex-tables): No forced line end if
26233         there is no caption.
26235 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26237         * org-exp.el (org-html-entities): Add Euro symbols from Marvosym
26238         package.
26240         * org-latex.el (org-export-latex-tables): Only add a caption when
26241         macro is in longtable environments if one has been defined.
26243         * org-html.el (org-export-as-html): Only take title from buffer if
26244         not exporting body-only.
26246         * org-latex.el (org-export-latex-preprocess): Better version of
26247         the regular expression for protecting LaTeX macros.
26248         (org-export-latex-preprocess): Start searching for macros to
26249         protect from beginning of buffer.
26251         * org-exp.el (org-export-target-internal-links): Check for
26252         protectedness earlier in the string.
26254         * org-agenda.el (org-agenda-highlight-todo): Match TODO keywords
26255         case sensitively.
26257         * org-id.el (org-id-store-link): Match TODO keywords case
26258         sensitively.
26260         * org.el (org-heading-components, org-get-outline-path)
26261         (org-display-outline-path): Match TODO keywords case sensitively.
26263         * org-latex.el (org-export-as-latex): Ignore read-only
26264         properties.
26266         * org-exp.el (org-export-preprocess-string): Remove any
26267         `read-only' properties.
26269         * org-agenda.el (org-agenda-inactive-leader): New option.
26270         (org-agenda-get-timestamps): Use `org-agenda-inactive-leader'.
26271         (org-tags-view): Prompt for matcher if MATCH is an empty string.
26272         (org-todo-list): Prompt for matcher if ARG is an empty string.
26274 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26276         * org.el (org-open-link-functions): New hook.
26277         (org-open-at-point): Run `org-open-link-functions'.
26279 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26281         * org-agenda.el (org-agenda-date-prompt): Allow inactive time
26282         stamps as well.
26284         * org.el (org-inhibit-startup-visibility-stuff): New variable.
26285         (org-mode): Don't do startup visibility if inhibited.
26286         (org-outline-overlay-data, org-set-outline-overlay-data):
26287         New functions.
26288         (org-save-outline-visibility): New macro.
26289         (org-log-note-headings): Document that one should not change the
26290         `state' note format.
26292 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26294         * org.el (org-make-link-regexps): Capture link path into a group.
26296 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26298         * org-beamer.el (org-beamer-after-initial-vars): Do not overwrite
26299         the options plist.
26301 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26303         * org.el (org-startup-with-beamer-mode): New option.
26304         (org-property-changed-functions)
26305         (org-property-allowed-value-functions): New hooks.
26306         (org-entry-put, org-property-get-allowed-values): Run the new
26307         hooks.
26308         (org-property-next-allowed-value): Run the new hooks.
26310         * org-exp.el (org-export-select-backend-specific-text): Add the
26311         special beamer tags.
26313         * org-beamer.el: New file.
26315         * org-latex.el (org-export-latex-after-initial-vars-hook): New hook.
26316         (org-export-as-latex):
26317         Run `org-export-latex-after-initial-vars-hook'.
26318         (org-export-latex-format-toc-function)
26319         (org-export-latex-make-header):
26320         Call `org-export-latex-format-toc-function'.
26322         * org.el (org-fill-template): Make template searches case sensitive.
26324         * org-exp.el (org-export): Use "1" as a sign to export only the
26325         subtree.
26327         * org-colview.el (org-columns-edit-value):
26328         Use org-unrestricted property.
26330         * org.el (org-compute-property-at-point): Set org-unrestricted
26331         text property if the list contains ":ETC".
26332         (org-insert-property-drawer):
26333         Use org-unrestricted property.
26335         * org-exp.el
26336         (org-export-preprocess-before-selecting-backend-code-hook): New hook.
26337         (org-export-preprocess-string):
26338         Run `org-export-preprocess-before-selecting-backend-code-hook'.
26340         * org-xoxo.el (org-export-as-xoxo): Run `org-export-first-hook'.
26342         * org-latex.el (org-export-region-as-latex):
26343         Run `org-export-first-hook'.
26345         * org-html.el (org-export-as-html): Run `org-export-first-hook'.
26347         * org-docbook.el (org-export-as-docbook):
26348         Run `org-export-first-hook'.
26350         * org-ascii.el (org-export-as-ascii): Run `org-export-first-hook'.
26352         * org-exp.el (org-export-first-hook): New hook.
26354 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26356         * org-list.el (org-previous-item): Exit at the beginning of the
26357         buffer.
26359         * org-id.el (org-id-locations-save): Only write the id locations
26360         if any are defined.
26362         * org-archive.el (org-archive-all-done): Make this work in a file
26363         with org-odd-levels-only set.
26365         * org.el (org-get-refile-targets): Catch the case when a buffer
26366         has no file.
26368         * org-latex.el (org-export-as-latex): Cleanup forced line ends
26369         where they are not needed.
26370         (org-export-latex-subcontent): Remove unnecessary newlines.
26372 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26374         * org-latex.el (org-export-latex-make-header): Remove \obeylines.
26375         (org-export-latex-fontify): Fix regexp bug that takes special
26376         care of protecting the right boundary characters in emphasis
26377         matches.
26378         (org-export-latex-preprocess): Allow multiple arguments to latex
26379         macros.
26381         * org.el (org-make-link-regexps): Use John Gruber's regexp for
26382         urls.
26384         * org-macs.el (org-re): Interpret :punct: in regexps.
26386         * org-exp.el (org-export-replace-src-segments-and-examples):
26387         Also take the final newline after the END line.
26389         * org.el (org-clean-visibility-after-subtree-move): Only fix
26390         entries that are not entirely invisible already.
26391         (org-insert-link): Respect org-link-file-path-type for
26392         "docview:" links in addition to "file:" links.
26394 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26396         * org-exp.el (org-export-format-source-code-or-example):
26397         Avoid additional extra white lines in LaTeX.
26399         * org-list.el (org-list-parse-list): Leave empty lines after the
26400         list, don't consider them as part of the list.
26402         * org-mobile.el (org-mobile-sumo-agenda-command): Allow tagstodo
26403         searches.
26405         * org-clock.el (org-clock-select-task): Convert integer to
26406         character for XEmacs.
26408 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26410         * org-clock.el (org-clock-resolve): Make reading a char XEmacs
26411         compatible.
26413 2010-04-10  Tassilo Horn  <tassilo@member.fsf.org>
26415         * org.el (org-complete-tags-always-offer-all-agenda-tags):
26416         New variable.
26417         (org-set-tags): Use it.
26419 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26421         * org-list.el (org-empty-line-terminates-plain-lists):
26422         Update docstring.
26424         * org.el (org-format-latex): Fix link creation for processed latex
26425         snippets.
26427 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26429         * org-footnote.el (org-footnote-normalize): Protect replacement
26430         text.
26432         * org.el (org-inside-latex-macro-p): Save match data.
26434 2010-04-10  Jan Böcker  <jan.boecker@jboecker.de>
26436         * org-docview.el: New file.
26438 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26440         * org-latex.el (org-export-latex-class-options): New variable.
26441         (org-export-latex-set-initial-vars): Use the class options.
26443         * org.el (org-forward-same-level): Stop at headings that start
26444         with an invisible character.
26445         (org-additional-option-like-keywords): Add LaTeX_CLASS_OPTIONS.
26447 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26449         * org-footnote.el (org-footnote-normalize): Don't take optional
26450         arguments in LaTeX macros as footnotes.
26452         * org.el (org-inside-latex-macro-p): New function.
26454         * org-latex.el (org-latex-to-pdf-process): Change customization
26455         group to `org-export-pdf'.
26457         * org-agenda.el (org-agenda-get-blocks): Look at time string also
26458         on days after the first one.
26460         * org.el (org-insert-heading): Also check for item before assuming
26461         before-first-heading condition.
26463         * org-latex.el (org-latex-to-pdf-process): Fix typo in group tag.
26464         (org-export-pdf-logfiles): New option.
26465         (org-export-as-pdf): Use `org-export-pdf-logfiles'.
26466         (org-export-pdf-logfiles): Fix customization type.
26468         * org.el (org-insert-link): Improve error message when there is no
26469         default link to select with RET.
26471         * org-agenda.el (org-agenda-filter-by-tag): Use char argument from
26472         parameter list.
26474 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26476         * org-latex.el (org-export-latex-parse-global)
26477         (org-export-latex-parse-content)
26478         (org-export-latex-parse-subcontent):
26479         Use `org-re-search-forward-unprotected'.
26480         (org-export-as-pdf): Remove log files produced by XeTeX.
26482         * org-macs.el (org-re-search-forward-unprotected): New function.
26484 2010-04-10  James TD Smith  <ahktenzero@mohorovi.cc>
26486         * org-colview.el (org-agenda-colview-summarize): Sort out some
26487         confusion between properties and titles, which resulted in
26488         agenda summaries not working if a title was set for a column.
26490 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26492         * org-mobile.el (org-mobile-agendas): New option.
26493         (org-mobile-sumo-agenda-command): Select the right agendas.
26495         * org-latex.el (org-export-latex-format-image): Preserve the
26496         original-indentation property.
26498 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26500         * org-clock.el (org-clock-insert-selection-line): Catch error when
26501         an old tasks no longer exists.
26503         * org-latex.el (org-export-as-pdf): Remove also the .idx file.
26504         (org-export-as-pdf): Don't remove the old PDF file before making
26505         the new one.
26507         * org-mouse.el (org-mouse-end-headline, org-mouse-insert-item)
26508         (org-mouse-context-menu): Use `org-looking-back'.
26510         * org.el (org-cycle-level): Use `org-looking-back'.
26512         * org-list.el (org-cycle-item-indentation):
26513         Use `org-looking-back'.
26515         * org-compat.el (org-looking-back): New function.
26517         * org.el (org-insert-heading): Catch before-first-headline when
26518         inserting a headline.
26520 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26522         * org-latex.el (org-export-latex-format-image): Indent figure
26523         environment, so that it does not interrupt plain list.
26525         * org.el (org-open-at-point): Allow long link descriptions.
26527 2010-04-10  Carsten Dominik  <carsten.dominik@gmail.com>
26529         * org-html.el (org-export-as-html): Remove empty lines at the
26530         beginning of the exported text.
26532 2010-03-12  Chong Yidong  <cyd@stupidchicken.com>
26534         * org.el (org): Remove from hypermedia group.
26536 2010-03-10  Chong Yidong  <cyd@stupidchicken.com>
26538         * Branch for 23.2.
26540 2010-02-15  Chong Yidong  <cyd@stupidchicken.com>
26542         * org-freemind.el (org-freemind-from-org-mode-node)
26543         (org-freemind-from-org-mode)
26544         (org-freemind-from-org-sparse-tree, org-freemind-to-org-mode):
26545         Pass arg to called-interactively-p.
26547 2010-01-14  Juanma Barranquero  <lekktu@gmail.com>
26549         * org-protocol.el (org-protocol-flatten-greedy, org-protocol-flatten):
26550         Fix typos in docstrings.
26552 2010-01-01  Juanma Barranquero  <lekktu@gmail.com>
26554         * org.el (org-get-outline-path, org-speed-command-help):
26555         Fix typos in error messages.
26557 2009-12-14  Juri Linkov  <juri@jurta.org>
26559         * org-html.el (org-export-html-style-include-default):
26560         Put `safe-local-variable booleanp' on
26561         `org-export-html-style-include-default' instead of mistakenly
26562         duplicate `org-export-html-style'.
26564 2009-11-20  Carsten Dominik  <carsten.dominik@gmail.com>
26566         * org-agenda.el (org-agenda-diary-entry-in-org-file):
26567         Rebuild agenda after adding new entry.
26569         * org-datetree.el (org-datetree-find-day-create): Fix regular
26570         expression.
26572         * org.el (org-display-outline-path): Use a format specifier for
26573         message, to avoid problems with heading containing `%'.
26575         * org-agenda.el (org-agenda-hide-tags-regexp): New option.
26576         (org-format-agenda-item): Call `org-agenda-fix-displayed-tags'.
26577         (org-agenda-fix-displayed-tags): New function.
26578         (org-agenda-do-context-action): Just call
26579         `org-display-outline-path', without piping the result through
26580         `message'.
26582         * org-latex.el (org-export-latex-preprocess): Protect secondary
26583         footnote references.
26585         * org-indent.el (org-indent-initialize): Avoid empty strings as
26586         line prefixes.
26588         * org-agenda.el (org-agenda-diary-entry-in-org-file): Make sure
26589         hat checking for the mark does not throw an error.
26590         (org-agenda-diary-entry-in-org-file): Catch the case that there is
26591         not `day' text property in the cursor line.
26593         * org.el (org-sort-entries-or-items): Make sure that the final
26594         entry has a newline before doing the sorting.
26596         * org-agenda.el (org-agenda-diary-entry-in-org-file): Get the text
26597         property at the beginning of the line.
26599         * org.el (org-make-link-string): Don't allow a description with
26600         only white space.
26602         * org-agenda.el (org-agenda-insert-diary-strategy): New variable.
26603         (org-agenda-insert-diary-as-top-level): New function.
26604         (org-agenda-add-entry-to-org-agenda-diary-file):
26605         Call `org-agenda-insert-diary-as-top-level'.
26607         * org.el (org-occur-in-agenda-files): Make sure none of the
26608         buffers is narrowed.
26609         (org-activate-plain-links): Add the face property here.
26610         (org-set-font-lock-defaults): Do not add the face to plain links,
26611         the activator function does this.
26613         * org-habit.el (org-is-habit-p): Add doc string.
26615         * org-archive.el (org-archive-subtree-default-with-confirmation):
26616         Autoload.
26618         * org-latex.el (org-export-latex-fontify): Fix regexp to make char
26619         after match optional (happens at the end of a line...).
26621         * org.el (org-fontify-meta-lines-and-blocks): Apply special faces
26622         for special blocks.
26624         * org-faces.el (org-copy-face): Set lisp indentation.
26625         (org-quote, org-verse): New faces.
26627         * org-agenda.el (org-agenda-remove-date): Remove variable.
26629         * org-freemind.el (org-freemind-escape-str-from-org): Fix encoding.
26631         * org-html.el (org-export-as-html): Move the home/up link into
26632         the content div.
26634         * org.el (org-export-latex-packages-alist): Option definition
26635         moved here from org-latex.el.
26637         * org-html.el (org-export-html-home/up-format): Add an ID to the
26638         up/home div.
26640         * org-wl.el (org-wl-store-link): Handle the case that
26641         `wl-use-petname' is set.
26643         * org.el (org-set-effort): Improve prompt.
26644         (org-get-outline-path): Widen to get full path.
26645         (org-compact-display-after-subtree-move): Function removed.
26647 2009-11-20  Eric Schulte  <schulte.eric@gmail.com>
26649         * org-exp-blocks.el (org-export-blocks-format-ditaa): Use sha1
26650         hash keys to cache and re-use images generated by the
26651         org-exp-blocks interface to ditaa and dot.
26653         * org.el (org-format-latex): Latex images are now saved to files
26654         named by the sha1 hash of the latex source text avoiding
26655         regeneration of identical images.
26657 2009-11-15  Carsten Dominik  <carsten.dominik@gmail.com>
26659         * org-latex.el (org-export-as-latex): Add the :drawers property.
26661 2009-11-15  Carsten Dominik  <carsten.dominik@gmail.com>
26663         * org.el (org-speed-commands-user): Allow documentation headlines.
26664         (org-speed-commands-default): Organize the value of this constant
26665         with descriptive headlines.
26666         (org-print-speed-command): Output the headlines.
26668 2009-11-15  Carsten Dominik  <carsten.dominik@gmail.com>
26670         * org-agenda.el (org-agenda-show-outline-path): New option.
26671         (org-agenda-do-context-action): New function.
26672         (org-agenda-next-line, org-agenda-previous-line):
26673         Use `org-agenda-do-context-action'.
26675         * org.el (org-use-speed-commands): Allow function value.
26676         (org-speed-commands-default): Make headline motion safe, so that
26677         these commands always end on a headline.
26678         (org-speed-commands-default): New key `v' for `org-agenda'.
26679         (org-speed-move-safe): New function.
26680         (org-self-insert-command): Use the function value of
26681         `org-use-speed-commands'.
26682         (org-get-outline-path): Improve docstring.
26683         (org-format-outline-path): New function.
26684         (org-display-outline-path): New function.
26686 2009-11-15  John Wiegley  <jwiegley@gmail.com>
26688         * org-clock.el (org-clock-resolve): If `org-clock-into-string' is
26689         a string, use that to find the LOGBOOK drawer.
26691 2009-11-15  Glenn Morris  <rgm@gnu.org>
26693         * org-agenda.el (org-datetree-find-date-create)
26694         (org-habit-get-priority):
26695         * org.el (org-format-agenda-item): Fix declarations.
26697 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
26699         * org.el (org-clone-subtree-with-time-shift): Make it work at the
26700         end of the buffer.
26702         * org-mobile.el (org-mobile-write-checksums): Specify coding
26703         system.
26704         (org-mobile-timestamp-buffer): Keep local variable/mode line at
26705         beginning of buffer.
26707         * org-latex.el (org-latex-entities-regexp): Fix typo in regexp.
26709         * org.el (org-block-todo-from-children-or-siblings-or-parent)
26710         (org-block-todo-from-checkboxes): Do not block changes to a nil
26711         TODO state.
26713 2009-11-13  James TD Smith  <ahktenzero@mohorovi.cc>
26715         * org-habit.el (org-habit-parse-todo): Indicate which habit is
26716         wrongly set up in the error messages.
26718         * org-colview.el (org-columns-display-here): Don't try to
26719         calculate values if the underlying property is not set.
26720         (org-columns-string-to-number): Convert age strings back into
26721         fractional days.
26722         (org-agenda-colview-summarize): Handle extended summary types
26723         properly.
26725 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
26727         * org-exp.el (org-export-format-drawer-function): New variable.
26728         (org-export-format-drawer): New function.
26729         (org-export-preprocess-string): Pass the backend as a parameter to
26730         `org-export-remove-or-extract-drawers'.
26731         (org-export-remove-or-extract-drawers): New parameter BACKEND.
26733         * org-protocol.el (org-protocol-char-to-string): New defsubst.
26735 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
26737         * org-agenda.el (org-agenda-diary-entry-in-org-file): Add error
26738         message when no block is selected.
26740         * org-latex.el (org-export-latex-links): Check for protectedness
26741         in the last matched character, not after the match.
26743         * org-datetree.el (org-datetree-find-date-create):
26744         Respect restriction when KEEP-RESTRICTION is set.
26745         (org-datetree-file-entry-under): New function.
26746         (org-datetree-cleanup): New command.
26748 2009-11-13  Dan Davison  <davison@stats.ox.ac.uk>
26750         * org-src.el (org-edit-src-code): New optional argument context
26751         allows calling functions to avoid altering the saved window
26752         configuration.
26753         (org-edit-src-exit): Do not restore window configuration when this
26754         function is used in the context of saving the edit buffer.
26756 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
26758         * org-clock.el (org-clock-out, org-clock-cancel): Revert to
26759         instances to switching to with-current-buffer, because these seem
26760         to cause problems - no idea why.
26762         * org-agenda.el (org-agenda-add-entry-to-org-agenda-diary-file):
26763         Require diary-lib for (diary-date-display-form).
26765 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
26767         * org.el (org-log-reschedule, org-log-redeadline): New options.
26768         (org-log-note-headings): Add templates for rescheduling and
26769         deadline changing.
26770         (org-startup-options): Add in-buffer settings for logging changing
26771         schedule and deadline time stamps.
26772         (org-deadline, org-schedule): Check for existing date and arrange
26773         for logging if the user requests it.
26774         (org-add-log-note): Prepare proper note buffers for rescheduling
26775         and deadline changes.
26777 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
26779         * org-agenda.el (org-agenda-diary-entry-in-org-file)
26780         (org-agenda-add-entry-to-org-agenda-diary-file)
26781         (org-agenda-insert-diary-make-new-entry): New functions.
26782         (org-agenda-diary-entry):
26783         Call `org-agenda-diary-entry-in-org-file' when appropriate.
26785         * org.el (org-calendar-insert-diary-entry-key): New option.
26786         (org-agenda-diary-file): New option.
26787         ("calendar"): Install our insertion function in the calendar.
26789         * org-remember.el (org-datetree): Require.
26790         (org-remember-templates): Add new positioning option.
26791         (org-remember-reference-date): New variable.
26792         (org-remember-apply-template): Store the reference date in a local
26793         variable.
26794         (org-remember-handler): Implement date tree positioning of entries.
26796         * org-datetree.el: New file.
26798         * org-latex.el (org-export-latex-preprocess): Protect targets in
26799         verbatim emphasis.
26801         * org-html.el (org-export-as-html): Protect targets in verbatim
26802         emphasis.
26804         * org-docbook.el (org-export-as-docbook): Protect targets in
26805         verbatim emphasis.
26807 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
26809         * org-clock.el (org-show-notification): Handle messages that
26810         contain a percent character.
26812         * org-remember.el (org-remember-apply-template): Turn of partial
26813         completion.
26815         * org-mobile.el (org-mobile-before-process-capture-hook): New hook.
26816         (org-mobile-pull): Run `org-mobile-before-process-capture-hook'.
26818         * org.el (org-indent-mode): Define variable already in org.el.
26819         (org-unfontify-region): Remove line-prefix and wrap-prefix
26820         properties only if org-indent-mode is active.
26822 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
26824         * org-icalendar.el (org-print-icalendar-entries): Save match data
26825         around call to verify function.
26826         (org-print-icalendar-entries): Add a call to the verification
26827         function.
26829         * org.el (org-speedbar-set-agenda-restriction): Remove unnecessary
26830         save-restrivtion' form.
26832 2009-11-13  Dan Davison  <davison@stats.ox.ac.uk>
26834         * org-exp.el (org-export-format-source-code-or-example):
26835         Restrict scope of preserve-indentp to the let binding.
26836         (org-src): Require org-src, since org-src-preserve-indentation is used.
26838 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
26840         * org-timer.el (org-timer-set-timer): Set variables
26841         org-timer-timer[123] correctly.
26843         * org-mobile.el (org-mobile-files-alist): Make it work when
26844         `agenda-archives' is included in
26845         `org-agenda-text-search-extra-files'.
26846         (org-mobile-push): Restore agenda after mobile push.
26848 2009-11-13  John Wiegley  <jwiegley@gmail.com>
26850         * org-clock.el (org-resolve-clocks-if-idle): Another fix to the
26851         way the amount of idle time is presented in the minibuffer.
26853 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
26855         * org-icalendar.el (org-print-icalendar-entries):
26856         Use org-icalendar-verify-function only if non-nil.
26858         * org.el (org-refile): Refile to clock only if the prefix arg is
26859         2.
26860         (org-sparse-tree): Fix docstring to be in line with prompt.
26861         (org-update-parent-todo-statistics):
26862         Call `org-after-todo-statistics-hook' on each level.
26864 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
26866         * org-remember.el (org-remember-apply-template): Make sure the
26867         buffer exists.
26869 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
26871         * org.el (org-tab-ind-state): New variable.
26872         (org-cycle-level): New function.
26873         (org-cycle-level-after-item/entry-creation): New option.
26874         (org-flag-subtree): New function.
26875         (org-hide-archived-subtrees): Call `org-flag-subtree'.
26876         (org-set-effort): Indexed access.
26878         * org-list.el (org-cycle-item-indentation): New function.
26880         * org.el (org-refile): Make prefix argument 2 refile to current
26881         clock.
26882         (org-priority): Interpret action `remove' as call to remove the
26883         priority cookie.
26885         * org-remember.el (org-remember-apply-template): Don't depend on
26886         buffer name being like file name.
26888 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
26890         * org-clock.el (org-clock-play-sound): Expand file in
26891         org-clock-sound, to allow ~ for home.
26893         * org-remember.el (org-remember-handler):
26894         Set text-before-node-creation even if this already looks like a node,
26895         because the string might be needed on non-org-mode target files.
26897         * org-agenda.el (org-agenda-open-link): Make this work in agenda
26898         clocktables.
26899         (org-agenda-switch-to): Follow a link at point if
26900         org-return-follows-link' is set and there is nothing else to do in
26901         this line.
26903 2009-11-13  Dan Davison  <davison@stats.ox.ac.uk>
26905         * org-exp-blocks.el: Modify split separator regexp to avoid empty
26906         strings.
26908 2009-11-13  James TD Smith  <ahktenzero@mohorovi.cc>
26910         * org-colview.el (org-columns-new): Make this work with the new
26911         operators.
26912         (org-columns-store-format): Make this work with the new operators.
26914 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
26916         * org-src.el (org-src-preserve-indentation): Document that this
26917         variable is also used during export.
26919         * org-exp.el (org-export-format-source-code-or-example):
26920         Preserve indentation if a block has a -i option, or if
26921         `org-src-preserve-indentation' is set.
26923         * org-exp-blocks.el (org-export-blocks-preprocess):
26924         Preserve indentation if a block has a -i option, or if
26925         `org-src-preserve-indentation' is set.
26927 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
26929         * org.el (org-mode-map): Define the new archiving keys.
26930         (org-speed-commands-default): Define an archiving key in the speed
26931         command map.
26932         (org-org-menu): Improve the menu structure concerning archiving.
26934         * org-archive.el (org-archive-subtree-default-with-confirmation):
26935         New command.
26937         * org-agenda.el (org-agenda-mode-map): Define the new archiving keys.
26938         (org-agenda-menu): Add the new archiving commands to the menu.
26939         (org-agenda-archive-default)
26940         (org-agenda-archive-default-with-confirmation): New commands.
26941         (org-agenda-archive, org-agenda-archive-to-archive-sibling):
26942         Just call `org-agenda-archive-with'.
26943         (org-agenda-archive-with): New function.
26945         * org-table.el (org-table-convert-region): Inert spaces around "|"
26946         to avoid line beginnings like "|-1" which will be mistaken as
26947         hlines.
26949 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
26951         * org.el (org-offer-links-in-entry): Return nil if there are no
26952         links, t if a link has been selected.
26953         (org-open-at-point): Open attachment directory when called in the
26954         headline and there are no links in the entry body.
26955         (org-speed-commands-default): Add "o" for open-at-point as a speed
26956         command.
26958         * org-attach.el (org-attach-reveal): Optional prefix arg
26959         IF-EXISTS, which avoids creating the attachment directory if it
26960         does not yet exist.
26962         * org-agenda.el (org-agenda, org-run-agenda-series):
26963         Evaluate MATCH.
26965 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
26967         * org.el ("abbrev"): Work with abbrev tables only after they have
26968         been loaded.
26970         * org-list.el (org-list-send-list): Fix bug related to match
26971         data.
26973         * org-latex.el (org-export-latex-fontify): Apply verbatim
26974         emphasis.
26975         (org-export-latex-make-header): Insert \obeylines if line breaks
26976         should be preserved.
26978         * org-exp.el (org-export-protect-verbatim): Add an
26979         `org-verbatim-emph' property to such text.
26981 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
26983         * org-icalendar.el (org-icalendar-use-plain-timestamp): New option.
26984         (org-print-icalendar-entries): Skip entries where the timestamp is
26985         not a deadline and not scheduled, if the user requests that.
26987         * org-latex.el (org-export-latex-quotation-marks): Allow a bracket
26988         before an opening quote.
26990         * org-archive.el (org-archive-subtree): Keep archive after
26991         archiving something.
26993         * org-id.el (org-id-update-id-locations): Add archive files if
26994         that is required by `org-id-extra-files'.
26996 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
26998         * org-src.el (org-src-window-setup): New option.
26999         (org-src-switch-to-buffer): New function.
27000         (org-edit-src-exit): Add optional argument CONTEXT and use it to
27001         restore window configuration.
27002         (org-edit-src-code, org-edit-src-continue, org-edit-src-exit):
27003         Call `org-src-switch-to-buffer'.
27005         * org.el (org-default-properties): Add STYLE property.
27006         (org-files-list): Use the function call to get the files.
27007         (org-additional-option-like-keywords): Add SETUPFILE to completion
27008         list.
27010 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
27012         * org-table.el (org-table-convert-region): Correctly interpret
27013         quoting in csv import.
27015         * org.el (org-icompleting-read): Make iswitchb completion work
27016         with lists and tables.
27018         * org-agenda.el (org-agenda-add-entry-text): Never add entry text
27019         while pushing the mobile agenda.
27021 2009-11-13  John Wiegley  <jwiegley@gmail.com>
27023         * org-clock.el (org-clock-auto-clock-resolution): Now takes three
27024         values: nil, t and `when-no-clock-is-running'.
27025         (org-clock-in): Use `org-clock-auto-clock-resolution' to determine
27026         whether or not to resolve Org buffers on clock in.
27028 2009-11-13  James TD Smith  <ahktenzero@mohorovi.cc>
27030         * org-colview.el (org-format-time-period): Function to format
27031         times in fractional days for display.
27032         (org-columns-display-here): Add support for showing a calculated
27033         value in place of the property.
27034         (org-columns): Set `org-columns-time' to the current time so time
27035         difference calculations will work.
27036         (org-columns-time): Use to store the current time when column view
27037         is displayed, so all time differences will use the same reference
27038         point.
27039         (org-columns-compile-map): There is now an extra position in each
27040         entry specifying the function to use to calculate the displayed
27041         value for the non-calculated properties in the column.
27042         (org-columns-compute-all): Set `org-columns-time' to the current
27043         time so time difference calculations will work.
27044         (org-columns-compute): Handle column operators where the values
27045         used are calculated from the underlying property.
27046         (org-columns-number-to-string): Handle the 'age' column format.
27047         (org-columns-string-to-number): Correct the function name (was
27048         org-column...).  Add support for the 'age' column format.
27049         (org-columns-compile-format): Support the additional parameter in
27050         org-columns-compile-map.
27052 2009-11-13  Bastien Guerry  <bzg@gnu.org>
27054         * org.el (org-mode-hook): Turn `org-mode-hook' into a customizable
27055         variable.
27057 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
27059         * org-clock.el (org-clock-has-been-used): New variable.
27060         (org-clock-in): Set `org-clock-has-been-used'.
27061         (org-clock-save): Save only if clock data has been used or created
27062         during this session.
27064 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
27066         * org-clock.el (org-clock-persist): New value, to store only the
27067         clock history.
27068         (org-clock-save): Don't save the clock if only the history should
27069         be stored.
27070         (org-clock-load): Turn off John Wiegley's auto resolving mechanism
27071         when restoring a saved clock.
27073 2009-11-13  John Wiegley  <jwiegley@gmail.com>
27075         * org-clock.el (org-clock-display, org-clock-put-overlay):
27076         Use `org-time-clock-use-fractional'.
27078         * org.el (org-time-clocksum-use-fractional)
27079         (org-time-clocksum-fractional-format): Two new customizable
27080         variables which allow the user to select fractional times (1.25
27081         instead of 1:25) in the `org-clock-display' report.
27083 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
27085         * org-ascii.el (org-export-ascii-table-keep-all-vertical-lines):
27086         New option.
27088         * org.el (org-tag-alist): Fix customization type.
27090 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
27092         * org-mobile.el (org-mobile-update-checksum-for-capture-file):
27093         Make sure the regexp search can fail without throwing an error.
27094         (org-mobile-apply): Save the inbox buffer after removing
27095         successfully applied changes.
27097 2009-11-13  John Wiegley  <jwiegley@gmail.com>
27099         * org-clock.el (org-resolve-clocks-if-idle): Fix to the way idle
27100         time is reported after the user comes back (but before they
27101         resolve time).
27103         * org.el (org-get-repeat): Change so that this function can be
27104         called with either `org-scheduled-string' or
27105         `org-deadline-string'.
27107         * org-clock.el (org-clock-auto-clock-resolution): Rename from
27108         `org-clock-disable-clock-resolution', since negatives don't sound
27109         good in customization variables.
27110         (org-clock-in): Don't use the auto-resolution logic if the user is
27111         clocking into a different task while an active clock is running.
27112         This then allows the default behavior of clocking out of the open
27113         task and then into the new task.
27115         * org.el (org-modules): Made this variable more consistent, since
27116         it was referring to Org, OrgMode and Org-mode, whereas the docs
27117         for the variable always refer to Org-mode.
27119 2009-11-13  James TD Smith  <ahktenzero@mohorovi.cc>
27121         * org.el (org-repeat-re): The changed org-repeat-re no longer
27122         matched simple +2d type repeaters.  Fix it so it does.
27124 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
27126         * org-latex.el (org-export-latex-preprocess): Protect the vspace
27127         macro in the VERSE environment.
27129 2009-11-13  John Wiegley  <jwiegley@gmail.com>
27131         * org-habit.el (org-habit-get-priority): A new function that
27132         determines the relative priority of a habit, based on how long
27133         past its scheduled date it is, and how near the deadline is.
27135         * org-agenda.el (org-agenda-get-scheduled): Set habit priority
27136         using `org-habit-get-priority'.
27138         * org-habit.el (org-habit-build-graph): Start displaying colors
27139         from the first scheduled date, if that date is earlier than the
27140         first completion date.
27142         * org-habit.el: Changed all "color" variables to faces, and made
27143         them appropriate for light and dark backgrounds.
27145         * org-habit.el (org-habit-duration-to-days): Made this function
27146         more general.
27147         (org-habit-parse-todo): Parse the new ".+N/N" style repeater.
27149         * org-agenda.el (org-agenda-get-deadlines): Remove all mention of
27150         habits, since they don't use DEADLINE anymore.
27152         * org.el (org-repeat-re, org-display-custom-time)
27153         (org-timestamp-change): Extend to support the new ".+N/N"
27154         syntax, used for habits.
27156         * org-clock.el (org-clock-resolve-clock): Fix an incorrect
27157         variable reference.
27159         * org-agenda.el (org-agenda-set-mode-name): Show Habit in the
27160         modeline when habits are being displayed (if that module is being
27161         loaded).
27163 2009-11-13  James TD Smith  <ahktenzero@mohorovi.cc>
27165         * org-clock.el (org-x11-idle-seconds): Add a method to get the X11
27166         idle time using the xscreensaver extension.
27167         (org-user-idle-seconds): Use X11 idle time if available.
27169 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
27171         * org-agenda.el (org-agenda-next-line): New command.
27172         (org-agenda-previous-line): New commands.
27173         (org-agenda-show-and-scroll-up, org-agenda-show-scroll-down):
27174         New commands.
27175         (org-agenda-follow-mode): Do the follow immediately if the mode is
27176         turned on here.
27177         (previous-line, next-line): Replace keys with the corresponding
27178         org functions.
27179         (org-agenda-mode-map): Bind backspace and delete to the scrolling
27180         command.
27182         * org.el (org-icompleting-read): Turn off partial completion mode
27183         for the duration of this completion round.
27185         * org-latex.el (org-export-latex-fontify-headline): Protect TeX
27186         macros in author lines and similar stuff.
27188         * org.el (org-file-tags): Fix docstring.
27189         (org-get-buffer-tags): Add the #+FILETAGS tags.
27190         ("ecb"): Make ecb show context after jumping into an Org file.
27192 2009-11-13  John Wiegley  <johnw@newartisans.com>
27194         * org-agenda.el (org-finalize-agenda): Draw habit consistency
27195         graphs after everything else in the buffer has been setup.
27197 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
27199         * org-mobile.el (org-mobile-apply): Count success and failure.
27201         * org.el (org-indent-line-function): Fix regexp replace problem.
27203 2009-11-13  John Wiegley  <johnw@newartisans.com>
27205         * org-clock.el (org-clock-disable-clock-resolution):
27206         New customization variable that disable automatic clock resolution on
27207         clock in.
27208         (org-clock-in): If `org-clock-disable-clock-resolution' is set, do
27209         not automatically resolve anything.  This is does not affect
27210         idle-time resolution, however, if `org-clock-idle-time' is set.
27212 2009-11-13  John Wiegley  <johnw@newartisans.com>
27214         * org-habit.el: New file, which implements code to build a "habit
27215         consistency graph".
27217         * org-agenda.el (org-agenda-get-deadlines)
27218         (org-agenda-get-scheduled): Display consistency graphs when
27219         outputting habits into the agenda.  The graphs are always relative
27220         to the current time.
27221         (org-format-agenda-item): Add new parameter `habitp', which
27222         indicates whether we are formatting a habit or not.  Do not
27223         display "extra" leading information if habitp is true.
27225         * org.el (org-repeat-re): Improve regexp to include .+ and ++
27226         leaders for repeat strings.
27227         (org-get-repeat): Now takes a string parameter `tagline', so the
27228         caller can obtain the SCHEDULED repeat, or the DEADLINE repeat.
27230 2009-11-13  John Wiegley  <johnw@newartisans.com>
27232         * org-agenda.el (org-agenda-auto-exclude-function):
27233         New customization variable for allowing the user to create an "auto
27234         exclusion" filter for doing context-aware auto tag filtering.
27235         (org-agenda-filter-by-tag): Changes to support the use of
27236         `org-agenda-auto-exclude-function'.  See the new manual addition.
27238 2009-11-13  John Wiegley  <johnw@newartisans.com>
27240         * org.el (org-files-list): Don't attempt to return a file name for
27241         Org buffers which have no associated file.
27243         * org-agenda.el (org-agenda-do-action): Fix a typo.
27245 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
27247         * org-mobile.el (org-mobile-locate-entry): Interpret files
27248         relative to org-directory.
27249         (org-mobile-inbox-for-pull): Document the best location for this
27250         file.
27251         (org-mobile-check-setup): Verify `org-directory'.
27252         (org-mobile-create-index-file): Sort the files to be listed in
27253         index.org.
27255 2009-11-13  James TD Smith  <ahktenzero@mohorovi.cc>
27257         * org.el (org-fast-tag-selection): Add a way to display a
27258         description for a tag group.  This is done by adding a string to
27259         either the startgroup or endgroup cell.
27261 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
27263         * org-clock.el (org-clock-resolve, org-resolve-clocks)
27264         (org-emacs-idle-seconds): Use `org-float-time' instead of
27265         `time-to-seconds'.
27267 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
27269         * org-agenda.el (org-agenda-sorting-strategy): Fix customization
27270         type.
27272         * org.el (org-pre-cycle-hook): Document that `empty' can also be
27273         the value of ARG when doing local cycling.
27275 2009-11-13  John Wiegley  <johnw@newartisans.com>
27277         * org-clock.el (org-clock-resolve-clock): If keeping or
27278         subtracting time results in a clock out at a time in the past, and
27279         if the resolution occurred due to idleness or invoking `M-x
27280         org-resolve-clocks', remember that past moment in time.  On the
27281         next clock in, the user will be prompted to see if they want to
27282         back-date their new clock to then.
27283         (org-clock-resolve): Do not jump the user to the location of a
27284         dangling clock if the resolution is occurring due to an idle
27285         timeout.  In that case there is typically only one dangling clock,
27286         the active one, and there is no value gained by shuffling their
27287         windows around to show it to them.  Being prompted to resolve an
27288         idle clock should be as inobtrusive as possible.
27289         (org-resolve-clocks-if-idle): New function that resolves only the
27290         currently active clock if the user has exceeded the time returned
27291         by `org-user-idle-seconds', based on the value of
27292         `org-clock-idle-time'.
27293         (org-clock-in): If, after resolving clocks, (???)
27294         (org-clock-out): Cancel the `org-clock-idle-timer' on clock out.
27296         * org-clock.el (org-clock-resolve-clock): New function that
27297         resolves a clock to a specific time, closing or resuming as need
27298         be, and possibly even starting a new clock.
27299         (org-clock-resolve): New function used by `org-resolve-clocks'
27300         that sets up for the call to `org-clock-resolve-clock'.
27301         It determines the time to resolve to based on a single-character
27302         selection from the user to either keep time, subtract away time or
27303         cancel the clock.
27304         (org-resolve-clocks): New user command which resolves dangling
27305         clocks -- that is, open but not active -- anywhere in the file
27306         list returned by `org-files-list'.
27307         (org-clock-in): Automatically resolve dangling clocks whenever a
27308         user clocks in.
27309         (org-clock-cancel): If the user cancels the solely clock in a
27310         LOGBOOK, remove the empty drawer.
27312         * org-clock.el (org-clock-idle-time): New user customizable option
27313         for detecting whether the user has left a clock idle.  Note: it is
27314         only used in this commit to test whether it's worthwhile to check
27315         OS X to get the Mac user's current idle time.  If the Emacs idle
27316         time is less than the value, the user hasn't been away long enough
27317         to be worth checking (a more expensive test than just getting
27318         Emacs idle time).
27319         (org-user-idle-seconds, org-mac-idle-seconds)
27320         (org-emacs-idle-seconds): This three functions, in conjunction
27321         with the user customization variable `org-clock-idle-time', return
27322         the number of seconds (as a floating point) that the user has been
27323         away from their Emacs (or, if running on OS X, their computer).
27325         * org-clock.el (org-find-open-clocks): New function that returns a
27326         list of all open clocks in the given FILE.  Note that each clock
27327         it returns is a cons cell of the format (MARKER . START-TIME).
27328         This "clock" value is used by several of the new clock module
27329         utility functions.
27330         (org-is-active-clock): New inline function which tests whether the
27331         given clock value is the same as the currently active clock.
27332         Returns non-nil if this is the case.
27333         (org-with-clock-position): New macro that evaluates FORMS with
27334         point in the buffer and at the position of the given clock.
27335         Changes to the current clock are global.
27336         (org-with-clock): New macro that evaluates FORMS with point in the
27337         buffer and at the position of the given clock.  However, changes
27338         to the current clock are local and have no effect on the user's
27339         active clock.  This allows, for example, far any clock to be
27340         canceled without canceling the active clock.
27341         (org-clock-clock-in): New inline function that switches the active
27342         clock to the given clock.  If either the argument RESUME, or the
27343         global `org-clock-in-resume', are non-nil, it will resume a clock
27344         that was previously left open.
27345         (org-clock-clock-out): New inline function that clocks out the
27346         given clock value without affecting the currently active clock.
27347         (org-clock-clock-cancel): New inline function that cancels the
27348         given clock value without affecting the currently active clock.
27350         * org-clock.el (org-clock-in): Before creating
27351         `org-clock-mode-line-timer', check to make sure an older timer is
27352         not currently running.
27353         (org-clock-out): Accept new third parameter `at-time', which
27354         permits a clock to be clocked out at a specific time.  Note that
27355         no attempt is made to verify that the clock out time is later than
27356         the clock in time.
27358         * org.el (org-files-list): New utility function for returning a
27359         list of all open org-mode buffers, plus all files used to build
27360         the agenda buffer.  Note that not all the files will necessarily
27361         be visited by a buffer at time of call.
27362         (org-entry-beginning-position): Like the function
27363         `line-beginning-position', this inline function returns the
27364         beginning position of the current heading/entry.
27365         (org-entry-end-position): Like the function `line-end-position',
27366         this inline function returns the end position of the current
27367         heading/entry.
27369 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
27371         * org-agenda.el (org-agenda-list): Mark the all-todo items line as
27372         a header line.
27374 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
27376         * org-exp.el (org-inlinetask-remove-END-maybe): Declare function.
27378 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
27380         * org-agenda.el (org-agenda-filter-make-matcher): Allow to filter
27381         entries that have no tags.
27382         (org-agenda-search-view): New customize group.
27383         (org-agenda-search-view-search-words-only): New option.
27384         (org-search-view): Implement substring search.
27386 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
27388         * org.el (org-outline-level): Add doc string.
27390 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
27392         * org-inlinetask.el (org-inlinetask-export): Re-introduce
27393         variable.
27394         (org-inlinetask-export-handler): Only export inline task if the
27395         user option calls for it.
27397 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
27399         * org-exp.el (org-export-handle-export-tags): Remove inlinetask
27400         END if present.
27402 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
27404         * org-latex.el (org-export-latex-tables): Don't format in
27405         protected regions.
27407 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
27409         * org-src.el (org-edit-src-code)
27410         (org-edit-src-find-region-and-lang, org-edit-src-exit):
27411         Handle macro editing.
27413         * org-agenda.el (org-prefix-category-max-length): New variable.
27414         (org-format-agenda-item): Use `org-prefix-category-max-length'.
27415         (org-compile-prefix-format): Set `org-prefix-category-max-length'.
27417 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
27419         * org-mobile.el (org-mobile-create-index-file): Improve the
27420         listing of tags and todo keywords.
27422         * org-latex.el (org-export-latex-format-image): New function.
27423         (org-export-latex-links): Use `org-export-latex-format-image'.
27425 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
27427         * org-inlinetask.el (org-inlinetask-get-current-indentation)
27428         (org-inlinetask-remove-terminator): New functions.
27429         (org-inlinetask-export-handler): Terminate the description list.
27431         * org-exp.el (org-export-select-backend-specific-text): Remove the
27432         region markers.
27434         * org-inlinetask.el (org-inlinetask-export-handler): Fix bug for
27435         tasks without content.
27437         * org-clock.el: Make sure the clock-in target position does not
27438         move to a different node by widening the buffer.
27440         * org-html.el (org-export-html-format-image): Wrap image into
27441         figure div only when there is a caption.
27443         * org-archive.el (org-archive-mark-done): Change default value to
27444         nil.
27446 2009-11-13  Carsten Dominik  <carsten.dominik@gmail.com>
27448         * org.el (org-context): Call `bobp', not `eobp'.
27450         * org-clock.el (org-clock-cancel): Remove quotes from marker
27451         variables.
27453         * org.el (org-read-date-prefer-future): New allowed value `time'.
27454         (org-read-date-analyze): Shift day to tomorrow depending on time
27455         entered and value of `org-read-date-prefer-future'.
27457 2009-11-05  Stefan Monnier  <monnier@iro.umontreal.ca>
27459         * org.el (org-version, org-get-refile-targets, org-refile)
27460         (org-store-log-note, org-diary-to-ical-string)
27461         (org-speedbar-set-agenda-restriction):
27462         * org-publish.el (org-publish-find-title):
27463         * org-plot.el (org-plot/gnuplot):
27464         * org-mouse.el (org-mouse-do-remotely):
27465         * org-mobile.el (org-mobile-move-capture):
27466         * org-mac-message.el (org-mac-message-insert-flagged):
27467         * org-latex.el (org-replace-region-by-latex):
27468         * org-docbook.el (org-replace-region-by-docbook):
27469         * org-clock.el (org-clock-out, org-clock-cancel):
27470         * org-bibtex.el (org-execute-file-search-in-bibtex):
27471         Use with-current-buffer.
27473 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
27475         * org.el (org-directory, org-map-entries):
27476         * org-clock.el (org-clock-get-clocked-time): Fix typos in docstrings.
27478 2009-10-01  Carsten Dominik  <carsten.dominik@gmail.com>
27480         * org.el (org-set-tags-to): New command.
27482         * org-latex.el (org-export-latex-set-initial-vars): Also check in
27483         the plist.
27485         * org.el (org-additional-option-like-keywords): Add LATEX_CLASS
27486         keyword.
27488         * org-exp.el (org-infile-export-plist): Add LATEX_CLASS keyword.
27490 2009-10-01  Carsten Dominik  <carsten.dominik@gmail.com>
27492         * org-inlinetask.el (org-inlinetask-export): Option removed.
27493         (org-inlinetask-export-handler): Better export.
27495         * org-xoxo.el (org-export-xoxo-final-hook): New hook.
27496         (org-export-as-xoxo): Run the new hook.
27498         * org-html.el (org-export-html-final-hook): New hook.
27499         (org-export-as-html): Run the new hook.
27501         * org-docbook.el (org-export-docbook-final-hook): New hook.
27502         (org-export-as-docbook): Run the new hook.
27504         * org-ascii.el (org-export-ascii-final-hook): New hook.
27505         (org-export-as-ascii): Run the new hook.
27507         * org-latex.el (org-export-latex-treat-sub-super-char): Allow a
27508         space character as the character before the ^/_.
27509         (org-export-latex-final-hook): New hook.
27510         (org-export-as-latex): Run `org-export-latex-final-hook'.
27512 2009-10-01  Carsten Dominik  <carsten.dominik@gmail.com>
27514         * org-macs.el (org-if-unprotected-at): Fix docstring.
27516         * org-agenda.el (org-agenda-change-all-lines): Handle invisible
27517         text in the prefix (if category is a link).
27519         * org-latex.el (org-export-latex-preprocess): Deal properly with
27520         empty lines in verse environments.
27522         * org.el (org-format-latex-header): Inline fullpage.sty.
27524         * org-footnote.el (org-footnote-create-definition): Reveal context
27525         to add a new footnote definition.
27527         * org.el (org-ctrl-c-ctrl-c): Pass prefix arg to
27528         org-table-recalculate when cursor is in TBLFM line.
27530         * org-list.el (org-renumber-ordered-list): Fix cursor position
27531         when bullet length has changed.
27533 2009-10-01  Carsten Dominik  <carsten.dominik@gmail.com>
27535         * org.el (org-format-latex): Mention `org-format-latex-options' in
27536         the docstring.
27538 2009-10-01  Carsten Dominik  <carsten.dominik@gmail.com>
27540         * org.el (org-agenda-get): New function.
27542         * org-agenda.el (org-agenda-post-command-hook): No longer move
27543         point away from end of line.
27544         (org-agenda-add-entry-text, org-agenda-collect-markers)
27545         (org-finalize-agenda, org-agenda-mark-clocking-task)
27546         (org-agenda-dim-blocked-tasks, org-agenda-entry-text-show-here)
27547         (org-agenda-entry-text-show, org-agenda-highlight-todo)
27548         (org-agenda-compare-effort, org-agenda-filter-apply)
27549         (org-agenda-later, org-agenda-change-time-span)
27550         (org-agenda-post-command-hook, org-agenda-show-priority)
27551         (org-agenda-show-tags, org-agenda-goto, org-agenda-kill)
27552         (org-agenda-archive, org-agenda-archive-to-archive-sibling)
27553         (org-remove-subtree-entries-from-agenda, org-agenda-refile)
27554         (org-agenda-open-link, org-agenda-copy-local-variable)
27555         (org-agenda-switch-to, org-agenda-check-no-diary)
27556         (org-agenda-tree-to-indirect-buffer, org-agenda-todo)
27557         (org-agenda-add-note, org-agenda-change-all-lines)
27558         (org-agenda-priority, org-agenda-set-tags)
27559         (org-agenda-set-property, org-agenda-set-effort)
27560         (org-agenda-toggle-archive-tag, org-agenda-date-later)
27561         (org-agenda-show-new-time, org-agenda-date-prompt)
27562         (org-agenda-schedule, org-agenda-deadline, org-agenda-action)
27563         (org-agenda-clock-in, org-agenda-bulk-mark)
27564         (org-agenda-bulk-unmark, org-agenda-show-the-flagging-note):
27565         Use `org-get-at-bol'.
27567         * org-colview.el (org-columns-display-here)
27568         (org-columns-edit-allowed, org-agenda-columns):
27569         Use `org-get-at-bol'.
27571 2009-10-01  Carsten Dominik  <carsten.dominik@gmail.com>
27573         * org.el (org-special-ctrl-a/e): Improve documentation and
27574         customize type.
27575         (org-end-of-line): Don't jump to after the ellipsis.
27576         (org-mode-map): Bind <home> and <end> as well.
27578 2009-10-01  Carsten Dominik  <carsten.dominik@gmail.com>
27580         * org.el (org-fontify-meta-lines-and-blocks): Treat lines with a
27581         space after #+ as comments.
27582         (org-open-at-point): Run `org-follow-link-hook' always.
27584         * org-latex.el (org-export-latex-emph-format): Use better commands
27585         to insert special characters in verbatim snippets.
27587 2009-10-01  Carsten Dominik  <carsten.dominik@gmail.com>
27589         * org-faces.el (org-copy-face): New function.  Use it to create
27590         various faces formerly created by using `copy-face'.
27592         * org-agenda.el (org-prepare-agenda): Don't officially mark this
27593         window dedicated.
27594         (org-agenda-quit): Kill the frame containing the agenda window if
27595         that frame was created for the agenda.
27597 2009-10-01  Carsten Dominik  <carsten.dominik@gmail.com>
27599         * org-agenda.el (org-agenda-date-prompt): Mark the changed time
27600         stamp in the agenda.
27602 2009-10-01  Carsten Dominik  <carsten.dominik@gmail.com>
27604         * org-agenda.el (org-prepare-agenda):
27605         Reset `org-drawers-for-agenda'.
27606         (org-prepare-agenda): Uniquify list of drawers.
27608         * org.el (org-complex-heading-regexp-format): New variable.
27609         (org-set-regexps-and-options):
27610         Define `org-complex-heading-regexp-format'.
27611         (org-drawers-for-agenda): New variable.
27612         (org-map-entries): Bind `org-drawers-for-agenda'.
27613         (org-prepare-agenda-buffers): Add to `org-drawers-for-agenda'.
27615         * org-remember.el (org-go-to-remember-target)
27616         (org-remember-handler): Use `org-complex-heading-regexp-format'.
27618 2009-10-01  Carsten Dominik  <carsten.dominik@gmail.com>
27620         * org-agenda.el (org-agenda-highlight-todo): Fix text property
27621         problem.
27623         * org.el (org-on-heading-p, org-at-heading-p): Make sure these are
27624         always with `invisible-ok'.
27625         (org-store-link): No error when there is nothing to link to in the
27626         agenda.
27628         * org-list.el (org-update-checkbox-count): Insert changed cookie
27629         before the old, to avoid problems with invisibility at the end of
27630         the line.
27631         (org-update-checkbox-count): Insert changed cookie before the old,
27632         to avoid problems with invisibility at the end of the line.
27634         * org.el (org-sort-entries-or-items): Include the final newline.
27635         (org-fontify-meta-lines-and-blocks): Add indented dynamic block
27636         lines for fontification.
27637         (org-dblock-start-re, org-dblock-end-re): Allow indentation.
27638         (org-prepare-dblock): Store the current indentation of the BEGIN
27639         line.
27640         (org-update-dblock): Apply the indentation of the begin line to
27641         the rest of the block.
27642         (org-ctrl-c-ctrl-c): Also find indented dblock lines.
27643         (org-startup-folded): New allowed value `showeverything'.
27644         (org-startup-options): Add STARTUP keyword `showeverything'.
27645         (org-set-startup-visibility): Respect value `showeverything' in
27646         org-startup-folded.
27648 2009-10-01  Carsten Dominik  <carsten.dominik@gmail.com>
27650         * org.el (org-closest-date): Fix issue with past preference.
27652         * org-archive.el (org-archive-set-tag)
27653         (org-archive-subtree-default): New commands.
27655         * org-clock.el (org-clock-clocktable-default-properties):
27656         New option.
27657         (org-clock-report):
27658         Use `org-clock-clocktable-default-properties'.
27660 2009-10-01  Carsten Dominik  <carsten.dominik@gmail.com>
27662         * org.el (org-iswitchb-completing-read): Fix typo.
27664         * org-crypt.el: New file.
27666         * org.el: Add an entry for org-crypt.
27668 2009-10-01  Carsten Dominik  <carsten.dominik@gmail.com>
27670         * org-agenda.el (org-agenda-menu): Reorganize the menu for more
27671         consistency.
27672         (org-batch-store-agenda-views): New function.
27673         (org-agenda-title-append): Define variable.
27674         (org-write-agenda): New export to Org files.
27675         (org-agenda-get-some-entry-text): New arguments INDENT and KEEP.
27676         (org-agenda): Allow to keep the restricted file list if a special
27677         variable is bound to t.
27678         (org-agenda): Define a special agenda view for working on flagged
27679         entries.
27680         (org-agenda-get-restriction-and-command): List the new agenda
27681         view.
27682         (org-agenda-show-the-flagging-note): New command.
27683         (org-agenda-mode-map): New key `?' for looking at the flagging
27684         note.
27686         * org.el (org-autoload): Autoload org-mobile.el.
27687         (org-org-menu): Add menu commands for MobileOrg in the Org menu.
27689         * org-mobile.el: New file.
27691         * org-id.el (org-id-get): Fix bug with forcing ID on an item.
27693 2009-10-01  Carsten Dominik  <carsten.dominik@gmail.com>
27695         * org-table.el (orgtbl-line-start-regexp): Match also TBLNAME
27696         statements.
27697         (org-table-get-remote-range): Match indented #+TBLNAME
27698         statements.
27700         * org.el (org-convert-to-odd-levels)
27701         (org-convert-to-oddeven-levels): Work also correctly if the file
27702         is in outline-mode.
27704 2009-10-01  Carsten Dominik  <carsten.dominik@gmail.com>
27706         * org.el (org-store-link): When in agenda buffer, link to
27707         referenced entry.
27708         (org-add-planning-info): Remove spaces at eol.
27710         * org-macs.el (org-with-point-at): Add a `lisp-indent-function'
27711         property.
27713 2009-10-01  Carsten Dominik  <carsten.dominik@gmail.com>
27715         * org-latex.el (org-export-latex-first-lines): Fix problem with
27716         LaTeX export of first line and selected subtree.
27718         * org.el (org-shifttab): Interpret arg differently when using only
27719         odd levels.
27721 2009-10-01  Bastien Guerry  <bzg@gnu.org>
27723         * org.el (org-check-agenda-file): Use a more explicit message.
27725 2009-10-01  Carsten Dominik  <carsten.dominik@gmail.com>
27727         * org-exp.el (org-export-remove-special-table-lines): Don't remove
27728         normal lines.
27730 2009-10-01  Bastien Guerry  <bzg@gnu.org>
27732         * org.el (org-offer-links-in-entry): Don't use "Select link" as a
27733         prompt in the temporary window.
27735         * org-agenda.el (org-agenda-bulk-mark): Use a slightly soberer
27736         prefix for marked entries in the agenda view.
27738 2009-10-01  Andreas Burtzlaff  <andy13@gmx.net>  (tiny change)
27740         * org.el (outline-end-of-subtree): Bugfix: advise this function in
27741         a way that prevents any trailing character from being displayed.
27743 2009-10-01  Carsten Dominik  <carsten.dominik@gmail.com>
27745         * org-agenda.el (org-agenda-menu): Fix bugs in the bulk action
27746         menu.
27748         * org-exp.el (org-export-remove-special-table-lines): Remove bad
27749         slow regexp match.
27751 2009-10-01  Carsten Dominik  <carsten.dominik@gmail.com>
27753         * org-latex.el (org-export-latex-preprocess): Do not protect in
27754         the LaTeX header.
27756         * org-src.el (org-edit-src-save): Save window setup while saving.
27757         (org-edit-src-code): Use new buffer name construction scheme.
27759 2009-10-01  Carsten Dominik  <carsten.dominik@gmail.com>
27761         * org-agenda.el (org-agenda-entry-text-exclude-regexps):
27762         New variable.
27763         (org-agenda-entry-text-cleanup-hook): New hook.
27764         (org-agenda-get-some-entry-text): Remove matches of
27765         `org-agenda-entry-text-exclude-regexps' and run the hook
27766         `org-agenda-entry-text-cleanup-hook'.
27768         * org.el (org-offer-links-in-entry): New argument ZERO to
27769         implement a link with index zero.
27770         (org-cycle-show-empty-lines): Not keep empty line under header
27771         hidden.
27772         (org-iswitchb-completing-read): Bind `switchb-use-virtual-buffers'
27773         to nil for special completion.
27774         (org-store-link): Don't error before the first heading.
27776         * org-agenda.el (org-agenda-open-link): Pass the prefix to
27777         `org-offer-links-in-entry'.
27779 2009-10-01  Carsten Dominik  <carsten.dominik@gmail.com>
27781         * org-agenda.el (org-agenda-quit): Provide the window argument for
27782         `window-dedicated-p', Emacs 22 needs it.
27783         (org-format-agenda-item): If the category is a link, arrange for
27784         invisible text to replaced with spaces.
27785         (org-compile-prefix-format): Add the extra space.
27786         (org-prefix-category-length): New variable.
27788         * org-exp.el (org-export-cleanup-toc-line): Remove footnote
27789         references from TOC lines.
27791         * org.el (org-selected-window): New variable.
27793         * org-table.el (org-table-edit-formulas): Remember the selected
27794         window.
27795         (org-table-fedit-finish, org-table-fedit-abort): Select the window
27796         that was originally selected.
27798         * org-exp.el (org-export-preprocess-apply-macros): Scan the
27799         expansion of a macro for more macro definitions.
27801         * org-agenda.el (org-agenda-dim-blocked-tasks): Make sure the
27802         invisibility overlay starts on the newline.
27804 2009-10-01  Glenn Morris  <rgm@gnu.org>
27806         * org-agenda.el (calendar-check-holidays):
27807         * org-exp.el (org-agenda-skip):
27808         * org-list.el (outline-back-to-heading):
27809         * org-wl.el (wl-summary-goto-folder-subr):
27810         * org.el (iswitchb-mode, remember, remember-buffer-desc)
27811         (remember-finalize, remember-save-after-remembering, remember-register)
27812         (remember-buffer, remember-handler-functions)
27813         (remember-annotation-functions): Remove unused declarations.
27815         * org.el (iswitchb-read-buffer): Fix declaration.
27817 2009-09-30  Glenn Morris  <rgm@gnu.org>
27819         * org-compat.el (w32-focus-frame):
27820         * org-exp-blocks.el (R):
27821         * org-exp.el (htmlize-buffer):
27822         * org-protocol.el (server-edit):
27823         * org-table.el (org-format-org-table-html):
27824         * org.el (org-indent-mode): Fix declarations.
27826         * org-colview.el (org-columns-uncompile-format): Avoid assignment to
27827         free variable `fun'.
27829 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
27831         * org-agenda.el (org-agenda-restore-windows-after-quit):
27832         Fix typo in docstring.
27834 2009-09-23  Juanma Barranquero  <lekktu@gmail.com>
27836         * org.el (org-tree-to-indirect-buffer, org-convert-to-oddeven-levels)
27837         (org-shiftselect-error, org-ctrl-c-ctrl-c):
27838         * org-agenda.el (org-agenda-undo, org-check-for-org-mode):
27839         * org-attach.el (org-attach-check-absolute-path):
27840         * org-docbook.el (org-export-as-docbook):
27841         * org-html.el (org-export-as-html):
27842         * org-id.el (org-id-update-id-locations):
27843         * org-table.el (org-table-fedit-lisp-indent, orgtbl-send-table):
27844         Fix typos in error messages.
27846 2009-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
27848         * org-ascii.el: Require CL for the `loop' macro.
27850 2009-09-05  Carsten Dominik  <dominik@u016822.science.uva.nl>
27852         * org-gnus.el (require): Wrap (require gnus-sum) into
27853         eval-when-compile.
27855 2009-09-03  Carsten Dominik  <dominik@u016822.science.uva.nl>
27857         * org-protocol.el (org-protocol-store-link)
27858         (org-protocol-remember, org-protocol-open-source): Remove autoload
27859         cookies again.
27861         * org-agenda.el (org-agenda-dim-blocked-tasks): Make sure we are
27862         referencing the start of the line.
27864         * org-gnus.el: Remove unnecessary declare-function forms.
27865         (gnus-sum): Always require gnus-sum.
27867 2009-09-02  Carsten Dominik  <carsten.dominik@gmail.com>
27869         * org-protocol.el (org-protocol-store-link)
27870         (org-protocol-remember, org-protocol-open-source): Add autoloads.
27872         * org-compat.el (org-float-time): New function.
27874         * org.el (org-clock-update-time-maybe)
27875         (org-sort-entries-or-items, org-do-sort)
27876         (org-evaluate-time-range, org-time-string-to-seconds)
27877         (org-closed-in-range): Use `org-float-time'.
27879         * org-timer.el (org-timer-start, org-timer-pause-or-continue)
27880         (org-timer-seconds): Use `org-float-time'.
27882         * org-clock.el (org-clock-get-clocked-time, org-clock-out)
27883         (org-clock-sum, org-dblock-write:clocktable)
27884         (org-clocktable-steps): Use `org-float-time'.
27886         * org-agenda.el (org-agenda-last-marker-time)
27887         (org-agenda-new-marker, org-diary): Use `org-float-time'.
27889         * org-compat.el (w32-focus-frame): Declare the w32-focus-frame
27890         function.
27892         * org-exp.el (org-get-file-contents): Only protect lines that
27893         really need it.
27895         * org-html.el (require): Require cl for compilation.
27897         * org.el: Avoid using `default-major-mode'.
27899         * org-plot.el (require): Require CL only at compile time.
27901         * org-exp.el (require): Require CL only at compile time.
27903         * org-agenda.el (org-agenda-quit): When the agenda window is
27904         dedicated, remove other windows before exiting, so that the frame
27905         really will be killed.
27907         * org-exp.el (org-export-handle-include-files): Reset START and
27908         END for each loop cycle.
27910 2009-09-02  Carsten Dominik  <carsten.dominik@gmail.com>
27912         * org.el (org-eval-in-calendar):
27913         Use `org-select-frame-set-input-focus'.
27915         * org-compat.el (org-select-frame-set-input-focus): New function.
27917         * org.el (org-update-statistics-cookies): New function.
27918         (org-mode-map): Bind `C-c #' to `org-update-statistics-cookies'.
27920 2009-09-02  Carsten Dominik  <carsten.dominik@gmail.com>
27922         * org-src.el (org-edit-fixed-width-region): Set org-src-mode only
27923         after the local variables are set.
27925         * org-latex.el (org-export-latex-protect-amp): New function.
27926         (org-export-latex-links): Protect link ampersands in tables.
27928         * org-exp.el (org-export-select-backend-specific-text): Match in
27929         two steps, to avoid regexp problems.
27931         * org.el (org-offer-links-in-entry): Improve working with many and
27932         duplicate links.
27934         * org-agenda.el (org-agenda-show-1): Make more consistent with
27935         normal cycling.
27936         (org-agenda-cycle-show): Make more consistent with normal cycling.
27938         * org-gnus.el (org-gnus-store-link): Restore the linking to a
27939         website.
27941 2009-09-02  Bastien Guerry  <bzg@gnu.org>
27943         * org-latex.el (org-export-latex-first-lines): Bugfix.
27945 2009-09-02  Carsten Dominik  <carsten.dominik@gmail.com>
27947         * org-clock.el (org-clock-modify-effort-estimate): Emit message
27948         about new effort.
27950         * org.el (org-set-effort): New function.
27951         (org-mode-map): New key for effort setting command.
27953         * org-agenda.el (org-agenda): Keep window setup when calling
27954         agenda from within agenda window.
27955         (org-agenda-mode-map): New keys for effort setting commands.
27956         (org-agenda-menu): Add effort setting commands to menu.
27957         (org-agenda-set-property, org-agenda-set-effort): New functions.
27959         * org-latex.el (org-export-latex-tables):
27960         Fix `org-table-last-alignment' and `org-table-last-column-widths' if
27961         the first column has been removed.
27963 2009-09-02  Carsten Dominik  <carsten.dominik@gmail.com>
27965         * org.el (org-remove-timestamp-with-keyword): Only remove in
27966         entry, not in subtree.
27968         * org-src.el (org-src-lang-modes): Add abbreviation elisp for
27969         emacs lisp.
27971         * org.el (org-open-at-point): When on headline, offer all strings
27972         in entry.
27974         * org-remember.el (org-remember-templates): Documentation fix.
27976         * org.el (org-move-subtree-down): Use `org-get-next-sibling' and
27977         `org-get-last-sibling' instead of the outline versions of these
27978         functions.
27979         (org-get-last-sibling): New function.
27980         (org-refile): Use `org-get-next-sibling' instead of the outline
27981         version of this function.
27982         (org-clean-visibility-after-subtree-move):
27983         Use `org-get-next-sibling' and `org-get-last-sibling' instead of the
27984         outline versions of these functions.
27986 2009-09-02  Carsten Dominik  <carsten.dominik@gmail.com>
27988         * org-agenda.el (org-prepare-agenda): When creating a new frame
27989         for the agenda, make the window dedicated.
27991         * org-agenda.el (org-agenda-mode-map): New keys for time motion.
27993         * org-table.el (org-table-align): Change the order of reinsertion
27994         and deletion, to avoid problems with overlays following the table.
27996         * org.el (org-parse-time-string): Better error message.
27997         (org-show-subtree): Use org-end-of-subtree.
27999         * org-macs.el (org-goto-line): New defsubst.
28001         * org.el (org-open-file, org-change-tag-in-region)
28002         (org-fast-tag-show-exit): Don't use `goto-line'.
28004         * org-table.el (org-table-align, org-table-insert-column)
28005         (org-table-delete-column, org-table-move-column)
28006         (org-table-sort-lines, org-table-copy-region)
28007         (org-table-paste-rectangle, org-table-wrap-region)
28008         (org-table-get-specials, org-table-rotate-recalc-marks)
28009         (org-table-get-range, org-table-recalculate)
28010         (org-table-edit-formulas, org-table-fedit-convert-buffer)
28011         (org-table-show-reference, org-table-highlight-rectangle):
28012         Don't use `goto-line'.
28014         * org-src.el (org-edit-src-code, org-edit-fixed-width-region)
28015         (org-edit-src-exit): Don't use `goto-line'.
28017         * org-macs.el (org-preserve-lc): Don't use `goto-line'.
28019         * org-list.el (org-renumber-ordered-list, org-fix-bullet-type):
28020         Don't use `goto-line'.
28022         * org-exp.el (org-export-number-lines): Don't use `goto-line'.
28024         * org-colview.el (org-columns, org-columns-redo)
28025         (org-agenda-columns): Don't use `goto-line'.
28027         * org-agenda.el (org-agenda-mode): Force visual line motion off.
28028         (org-agenda-add-entry-text-maxlines): Improve docstring.
28029         (org-agenda-start-with-entry-text-mode): New option.
28030         (org-agenda-entry-text-maxlines): New option.
28031         (org-agenda-entry-text-mode): New variable.
28032         (org-agenda-mode): Set initial value of
28033         `org-agenda-entry-text-mode'.
28034         (org-agenda-mode-map): Add the `E' key.
28035         (org-agenda-menu): Add entry text mode to the menu.
28036         (org-agenda-get-some-entry-text): Fix line count bug.
28037         (org-finalize-agenda): Apply entry text mode if appropriate.
28038         (org-agenda-entry-text-show-here): New function.
28039         (org-agenda-entry-text-show): New function.
28040         (org-agenda-entry-text-hide): New function.
28041         (org-agenda-view-mode-dispatch): Add entry text mode to the view
28042         key menu.
28043         (org-agenda-entry-text-mode): New command.
28044         (org-agenda-set-mode-name): Add entry text mode to the mode line
28045         string.
28046         (org-agenda-undo, org-agenda-get-restriction-and-command)
28047         (org-agenda-get-some-entry-text, org-agenda-redo): Don't use
28048         `goto-line'.
28050 2009-09-02  Bernt Hansen  <bernt@norang.ca>
28052         * org-clock.el (org-notify): Bugfix.
28054 2009-09-02  Carsten Dominik  <carsten.dominik@gmail.com>
28056         * org-agenda.el (org-agenda-open-link): Handle multiple links and
28057         check for after-string.
28059         * org-gnus.el (org-gnus-store-link): Simplify.
28061         * org.el (org-latex-regexps): Don't add extra empty lines for
28062         display formulas.
28064 2009-09-02  Carsten Dominik  <carsten.dominik@gmail.com>
28066         * org-agenda.el (org-agenda-get-some-entry-text): New function.
28067         (org-agenda-add-entry-text):
28068         Use `org-agenda-get-some-entry-text'.
28070         * org.el (org-cycle-separator-lines): Update docstring.
28071         (org-cycle-show-empty-lines): Handle negative values for
28072         `org-cycle-show-empty-lines'.
28074         * org-exp.el (org-export-protect-sub-super): New function.
28075         (org-export-normalize-links): Protect the url of plain links from
28076         supscript and superscript processing.
28078         * org-remember.el (org-remember-escaped-%): New function.
28079         (org-remember-apply-template): Use `org-remember-escaped-%' to
28080         detect escaped % signs.
28082 2009-09-02  Bastien Guerry  <bzg@gnu.org>
28084         * org-timer.el (org-timer-set-timer): Use `org-notify' and play a
28085         sound when showing the notification.
28087         * org-clock.el (org-notify): New function.
28088         (org-clock-notify-once-if-expired): Use `org-notify'.
28090         * org-gnus.el (org-gnus-store-link): Handle `gnus-summary-mode'
28091         and `gnus-article-mode' separately.
28092         (gnus-summary-article-header): Fix the declare-function.
28094 2009-09-02  Carsten Dominik  <carsten.dominik@gmail.com>
28096         * org-exp.el (org-export-format-source-code-or-example):
28097         Translate language.
28099         * org-src.el (org-src-lang-modes): New variable.
28100         (org-edit-src-code): Translate language.
28102         * org-exp.el (org-export-format-source-code-or-example): Deal wit
28103         the new structure of the `org-export-latex-listings-langs'
28104         variable.
28106         * org-latex.el (org-export-latex-listings-langs): Change structure
28107         of the variable from plist to alist.
28109 2009-09-02  Carsten Dominik  <carsten.dominik@gmail.com>
28111         * org.el (org-in-commented-line): New function.
28113 2009-09-02  Carsten Dominik  <carsten.dominik@gmail.com>
28115         * org.el (org-hide-block-toggle): Make folded blocks searchable.
28117 2009-09-02  Friedrich Delgado Friedrichs  <friedel@nomaden.org>  (tiny change)
28119         * org.el (org-flag-drawer): More useful error.
28121 2009-09-02  Carsten Dominik  <carsten.dominik@gmail.com>
28123         * org-remember.el (org-remember-apply-template):
28124         Use org-icompleting-read.
28126         * org-publish.el (org-publish): Use org-icompleting-read.
28128         * org-colview.el (org-columns-edit-value, org-columns-new)
28129         (org-insert-columns-dblock): Use org-icompleting-read.
28131         * org-attach.el (org-attach-delete-one, org-attach-open):
28132         Use org-icompleting-read.
28134 2009-09-02  Carsten Dominik  <carsten.dominik@gmail.com>
28136         * org.el (org-hierarchical-todo-statistics): Improve docstring.
28137         (org-version): Return the version text.
28138         (org-org-menu): Add a menu entry for the new bug reporter.
28139         (org-submit-bug-report): New command.
28141         * org-list.el (org-hierarchical-checkbox-statistics):
28142         Improve docstring.
28144         * org.el (org-emphasis-regexp-components): Add "`" to set of
28145         pre-emphasis characters.
28147         * org-latex.el (org-export-latex-classes): Always include the soul
28148         package.
28149         (org-export-latex-emphasis-alist): Use \st for strikethough.
28151         * org-exp-blocks.el (org-export-blocks-preprocess):
28152         Use `indent-code-rigidly' to indent.
28154         * org-agenda.el (org-agenda-get-restriction-and-command):
28155         Remove properties only if MATCH really is a string.
28157 2009-09-02  Carsten Dominik  <carsten.dominik@gmail.com>
28159         * org-latex.el (org-export-latex-packages-alist):
28160         Fix customization type.
28162         * org.el (org-create-formula-image): Also use
28163         `org-export-latex-packages-alist'.
28165         * org-html.el (org-export-as-html): Fix bug in footnote regexp.
28166         (org-export-as-html): Format footnotes correctly.
28168 2009-09-02  Carsten Dominik  <carsten.dominik@gmail.com>
28170         * org.el (org-fast-tag-selection): Avoid text properties on tags
28171         in the alist.
28173         * org-agenda.el (org-agenda-get-restriction-and-command):
28174         Avoid text properties on the match element.
28176 2009-09-02  Carsten Dominik  <carsten.dominik@gmail.com>
28178         * org.el (org-set-regexps-and-options): Make sure the list of done
28179         keywords is not invalid.
28181         * org-exp.el (org-export-interpolate-newlines): New function.
28183 2009-09-02  Carsten Dominik  <carsten.dominik@gmail.com>
28185         * org.el (org-format-latex): Avoid nested overlays.
28187         * org-latex.el (org-export-latex-listings-langs): Add a few more
28188         languages.
28190         * org-exp.el (org-export-preprocess-apply-macros): Make sure to
28191         ignore newlines and space before the first macro argument.
28193         * org-latex.el (org-export-latex-tables): Remove save-excursion
28194         around `org-table-align'.
28196 2009-09-02  Carsten Dominik  <carsten.dominik@gmail.com>
28198         * org.el (org-export-html-special-string-regexps):
28199         Definition moved into org.el.
28201         * org-exp.el (org-export-preprocess-apply-macros): Allow newlines
28202         in macro calls.
28204 2009-09-02  Carsten Dominik  <carsten.dominik@gmail.com>
28206         * org-latex.el (org-export-latex-listings)
28207         (org-export-latex-listings-langs): New options.
28209         * org-exp.el (org-export-format-source-code-or-example):
28210         Use listing package if requested by the user.
28212 2009-09-02  Bastien Guerry  <bzg@gnu.org>
28214         * org.el (org-iswitchb): Fix bug when aborting the `org-iswitchb'
28215         command before actually switching to a buffer.
28217 2009-09-02  Carsten Dominik  <carsten.dominik@gmail.com>
28219         * org-exp.el (org-get-file-contents): Only quote org lines when
28220         the markup is src or example.
28222         * org-agenda.el (org-agenda-skip-scheduled-if-deadline-is-shown):
28223         New option.
28224         (org-agenda-get-day-entries): Remember deadline results and pass
28225         them on into the function getting the scheduling information.
28226         (org-agenda-get-scheduled): Accept deadline results as parameters
28227         and maybe skip some entries.
28228         (org-agenda-skip-scheduled-if-deadline-is-shown): New option.
28230         * org.el (org-insert-heading): When respecting content, do not
28231         convert current line to headline.
28233         * org-clock.el (org-clock-save-markers-for-cut-and-paste):
28234         Also cheeeeeck the hd marker.
28235         (org-clock-in): Also set the hd marker.
28236         (org-clock-out): Also set the hd marker.
28237         (org-clock-cancel): Reset markers.
28239         * org.el (org-clock-hd-marker): New marker.
28241         * org-faces.el (org-agenda-clocking): New face.
28243         * org-agenda.el (org-agenda-mark-clocking-task): New function.
28244         (org-finalize-agenda): Call `org-agenda-mark-clocking-task'.
28246         * org.el (org-modules): Add org-track.el.
28248         * org-agenda.el (org-agenda-bulk-marked-p): New function.
28249         (org-agenda-bulk-mark, org-agenda-bulk-unmark):
28250         Use `org-agenda-bulk-marked-p'.
28251         (org-agenda-bulk-toggle): New command.
28253 2009-09-02  Carsten Dominik  <carsten.dominik@gmail.com>
28255         * org.el (org-move-subtree-down): Hide subtree if it was folded,
28256         not just the body.
28258         * org-remember.el (org-remember-finalize): Avoid buffer-modified
28259         messages.
28261 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
28263         * org-html.el (org-export-as-html):
28264         * org-docbook.el (org-export-as-docbook):
28265         Use (default-value 'major-mode) instead of default-major-mode.
28267 2009-08-08  Carsten Dominik  <carsten.dominik@gmail.com>
28269         * org-docbook.el: Add arch-tag.
28271         * org-exp-blocks.el: Add arch-tag.
28273         * org-id.el: Add arch-tag.
28275         * org-indent.el: Add arch-tag.
28277         * org-inlinetask.el: Add arch-tag.
28279         * org-protocol.el: Add arch-tag.
28281 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28283         * org.el (org-create-formula-image): Remove the -E option for
28284         dvipng.
28286         * org-exp.el (org-default-export-plist): Respect #+BIND.
28287         (org-export-confirm-letbind): New function.
28289         * org.el (org-paste-subtree): Test the kill ring entry if it is
28290         going to be used.
28291         (org-copy-subtree): Use `org-forward-same-level'.
28292         (org-forward-same-level): Respect the `invisibe-ok' arg for
28293         back-to-heading.
28295 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28297         * org.el (org-table-map-tables): Make sure cursor is back at table
28298         beginning after funcall.
28300         * org-agenda.el (org-agenda-bulk-action): Make sure parents are
28301         handled before children, and do not error if an entry is not
28302         found, probably because it hase been remove when the parent was
28303         archived or refiled.
28305         * org.el (org-ido-completing-read): Accept straight lists for
28306         completion as well as alists.
28308         * org-timer.el (org-timer-cancel-timers): Rename from
28309         `org-timer-cancel-timers'.
28311         * org.el (org-cycle-internal-local): Fix problem with finding next
28312         invisible line.
28314 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28316         * org-list.el (org-list-send-list):
28317         Call `org-list-goto-true-beginning' instead of
28318         `org-list-find-true-beginning', which does not exist.
28320         * org-timer.el (org-timer-reset-timers): Use `mapc'.
28321         (org-timer-set-timer): Do not assign to heading.
28323         * org-id.el (org-id-open): Quote function name.
28325         * org-macs.el (org-unmodified): Turn off recording undo
28326         information while running inside the macro.
28328         * org-table.el (org-table-export): Also work in file-less
28329         buffers.
28331         * org.el (org-startup-indented): New option.
28332         (org-startup-options): Add new options indent and noindent.
28333         (org-unfontify-region): Remove line-prefix and wrap-prefix
28334         properties.
28335         (org-after-demote-entry-hook, org-after-promote-entry-hook):
28336         New hooks.
28337         (org-promote, org-demote): Run the new hooks.
28339         * org-table.el (org-table-align): Replace leading \n as well.
28341         * org-exp.el (org-export-push-to-kill-ring): Remove `line-prefix'
28342         and `line-wrap' text properties.
28344         * org-compat.el (org-kill-new): New function.
28346         * org-agenda.el (org-format-agenda-item): Remove `line-prefix' and
28347         `line-wrap' text properties.
28349         * org-indent.el: New file.
28351 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28353         * org.el (org-provide-todo-statistics): Tweak docstring.
28355         * org-id.el (org-id-open): Honor `org-link-frame-setup'.
28357 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28359         * org-exp.el (org-export-as-org): Insert the "-source" string
28360         before the extension.
28362         * org.el (org-read-date): Make sure the calendar is in the current
28363         frame.
28364         (org-set-emph-re): Remove the ? from the post-match.
28365         (org-emphasis-regexp-components): Add backslash to the
28366         postmatch class.
28367         (org-set-font-lock-defaults): Write \n instead of \xa, and make it
28368         optional so that also lines at the end of the buffers will still
28369         be matched as headlines.
28371         * org-table.el (org-table-error-on-row-ref-crossing-hline):
28372         Variable made obsolete.
28373         (org-table-relative-ref-may-cross-hline): New option.
28374         (org-table-find-row-type): Honow the new option
28375         `org-table-relative-ref-may-cross-hline'.
28377 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28379         * org-table.el (org-table-cut-region, org-table-copy-region):
28380         Work on single field if no active region.
28382 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28384         * org-latex.el (org-export-latex-make-header): Only insert title
28385         if one is defined.
28387         * org.el (org-make-options-regexp): Allow empty values.
28389 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28391         * org.el (org-cycle-internal-local): Improve version of finding
28392         next visible line.
28393         (org-cycle-hide-drawers): Only hide drawers if this is really
28394         necessary.
28395         (outline-end-of-subtree): Make `outline-end-of-subtree' use the
28396         org-version of this function in Org-mode.  We use advice to
28397         implement this change, so that future changes to this function in
28398         outline.el wil be handled properly.
28399         (org-forward-same-level, org-backward-same-level): New commands.
28401 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28403         * org.el (org-remove-empty-overlays-at)
28404         (org-clean-visibility-after-subtree-move): New functions.
28405         (org-move-subtree-down): Simplify cleanup of display.
28407 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28409         * org-mac-message.el (org-mac-message-get-links): Improve
28410         docstring.  Make argument SELECT-OR-FLAGGED optional, default to
28411         "s".  Fix the return value.
28412         (org-mac-message-insert-flagged): Simplify.
28414         * org.el (org-refile-get-location): Tamper with refile history o
28415         that history contains compete matches instead of the entered
28416         string.
28418 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28420         * org.el (org-store-link): Never store a link to an inline task.
28422         * org-footnote.el (org-footnote-goto-local-insertion-point):
28423         Skip inline tasks when positioning footnotes.
28425         * org.el (org-refile): Remove the END line when archiving an
28426         inline task that does have an END line.
28428         * org-archive.el (org-archive-subtree): Remove the END line when
28429         archiving an inline task that does have an END line.
28431         * org-macs.el (org-with-limited-levels): New macro.
28432         (org-get-limited-outline-regexp): New function.
28434         * org-exp.el (org-export-format-source-code-or-example): Fix bug
28435         that did not enumerate first line.
28436         (org-export-mark-radio-links): Skip matches in links.
28438 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28440         * org.el (org-activate-plain-links): Make single-match.
28441         (org-adapt-indentation): Fix docstring.
28443         * org-macs.el (org-unmodified): Turn of modification hooks while
28444         running this macro.
28446 2009-08-06  Bastien Guerry  <bzg@gnu.org>
28448         * org.el (org-adapt-indentation): Slightly improve the docstring.
28449         (org-occur): Sends an error when the user inputs an empty string.
28450         (org-priority): Bugfix: the tag alignement should happen within
28451         save-excursion.
28453 2009-08-06  Bastien Guerry  <bzg@gnu.org>
28455         * org.el (org-make-link-regexps): Don't exclude parentheses from
28456         `org-plain-link-re'.
28457         (org-cycle-internal-local): When locally cycling, switch directly
28458         from CHILDREN to FOLDED if there is no subtree.
28459         (org-cycle): Update the docstring to document the new behavior of
28460         `org-cycle-internal-local'.
28462 2009-08-06  Nicolas Goaziou  <n.goaziou@neuf.fr>  (tiny change)
28464         * org-clock.el (org-clock-in): Bugfix: recognize timestamps with
28465         an abbreviated format for days.
28467 2009-08-06  Bastien Guerry  <bzg@gnu.org>
28469         * org-protocol.el (org-protocol-default-template-key):
28470         New option.
28472         * org.el (org-refile): Bugfix: save-excursion before reading the
28473         refile target, otherwise cursor moves might confuse `org-refile'.
28475         * org.el (org-toggle-heading): Bugfix: correctly convert list
28476         items before the first headline.
28478         * org.el (org-provide-todo-statistics): Allow a list of TODO
28479         keywords to compute statistics against headlines containing a
28480         keyword from this list.
28481         (org-update-parent-todo-statistics): Possibly use the new allowed
28482         value of `org-provide-todo-statistics'.
28484 2009-08-06  Bastien Guerry  <bzg@gnu.org>
28486         * org-timer.el: Add autoload cookie.
28488         * org.el (org-occur-link-in-agenda-files): New function.
28490         * org-timer.el (org-timer-last-timer): New variable.
28492         * org-agenda.el (org-agenda-mode-map): New key for
28493         org-timer-set-timer called from the agenda.
28495         * org.el (org-mode-map): New key for org-timer-set-timer.
28497         * org-timer.el (org-timer-reset-timers)
28498         (org-timer-show-remaining-time, org-timer-set-timer):
28499         New functions.
28501         * org-clock.el (org-show-notification): Update the docstring.
28503         * org.el (org-provide-todo-statistics): Allow new value
28504         'all-headlines for this option, which includes entries with no
28505         TODO keywords in the todo statistics.
28506         (org-update-parent-todo-statistics): Possibly use the new
28507         'all-headline value from `org-provide-todo-statistics'.
28509 2009-08-06  Bastien Guerry  <bzg@gnu.org>
28511         * org-clock.el (org-dblock-write:clocktable): Add a new option
28512         :timestamp which allows display of timestamps in clock reports.
28514         * org.el (org-mode-map): Define new key `C-c C-*': convert a plain
28515         list to a subtree, preserving the structure of the list.
28516         (org-set-emph-re): Make the last element optional in the regexp.
28517         This regexp now matches an emphasized string at the end of a line.
28519         * org-list.el (org-list-goto-true-beginning)
28520         (org-list-make-subtree, org-list-make-subtrees): New functions.
28522         * org.el (org-eval-in-calendar): Select the right frame.
28523         (org-save-frame-excursion): Remove this macro.
28525 2009-08-06  Bastien Guerry  <bzg@gnu.org>
28527         * org-list.el (org-list-beginning-re): Bugfix: don't use * when
28528         trying to find the beginning of a list.
28530         * org-exp.el (org-get-file-contents): Use a new argument: markup.
28531         When present, tell org-get-file-contents not to protect org-like
28532         lines.
28534         * org-id.el (org-id-uuid-program): New option to set the name of
28535         the uuidgen program.
28536         (org-id-method): Use `org-id-uuid-program'.
28537         (org-id-new): Use `org-id-uuid-program'.
28539 2009-08-06  Bastien Guerry  <bzg@gnu.org>
28541         * org-exp.el (org-export-number-lines): Allow whitespace in code
28542         references.  Allow the -r switch to remove the references in the
28543         source code even when the lines are not numbered: the labels can
28544         be explicit enough.
28546         * org.el (org-fontify-whole-heading-line): New option.
28547         (org-set-font-lock-defaults): Use the new option.
28549         * org-clock.el (org-show-notification-handler): New option.
28550         (org-show-notification): Use the new option.
28552 2009-08-06  Bastien Guerry  <bzg@gnu.org>
28554         * org.el (org-eval-in-calendar): Fix a bug about calendar
28555         navigation when `calendar-setup' value is 'calendar-only.
28557 2009-08-06  Bastien Guerry  <bzg@gnu.org>
28559         * org.el (orgstruct++-mode): Fix typo in docstring.
28560         (org-insert-link): Clean up: (or (...)) => (...)
28561         (org-insert-link): Use TAB for stored links completion.
28563 2009-08-06  Bastien Guerry  <bzg@gnu.org>
28565         * org.el (org-get-refile-targets): Fix bug: don't ignore case when
28566         building the list of targets.
28568         * org-remember.el (org-remember-delete-empty-lines-at-end):
28569         New option.
28570         (org-remember-handler): Use the new option.
28572 2009-08-06  James TD Smith  <ahktenzero@mohorovi.cc>
28574         * org.el (org-tags-sort-function): New option for sorting tags.
28575         (org-set-tags): Use the new option to sort tags.
28577         * org-plot.el (org-plot/gnuplot): Run with an idle timer to avoid
28578         premature deletion of the data when using org-plot in a script.
28580 2009-08-06  Bastien Guerry  <bzg@gnu.org>
28582         * org-clock.el (org-clock-in-prepare-hook): New hook.
28583         (org-clock-in): Use this new hook.
28585 2009-08-06  Bastien Guerry  <bzg@gnu.org>
28587         * org.el (org-special-ctrl-a/e): Explicitly bind the value
28588         'reversed for this option to the "true line boundary first"
28589         behavior.
28590         (org-tags-match-list-sublevels): Document the 'indented value for
28591         this variable.
28593         * org-latex.el (org-export-latex-first-lines): Fix problem with
28594         publishing the region.
28596         * org-exp.el (org-export-format-source-code-or-example):
28597         Fix bad line numbering when exporting examples in HTML.
28599 2009-08-06  James TD Smith  <ahktenzero@mohorovi.cc>
28601         * org-colview.el (org-format-time-period): Formats a time in
28602         fractional days as days, hours, mins, seconds.
28603         (org-columns-display-here): Add special handling for SINCE and
28604         SINCE_IA to format for display.
28606         * org.el (org-time-since): Add a function to get the time since an
28607         org timestamp.
28608         (org-entry-properties): Add two new special properties: SINCE and
28609         SINCE_IA.  These give the time since any active or inactive
28610         timestamp in an entry.
28611         (org-special-properties): Add SINCE, SINCE_IA.
28612         (org-tags-sort-function): Add custom declaration for tags
28613         sorting function.
28614         (org-set-tags): Sort tags if org-tags-sort-function is set.
28616 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28618         * org-clock.el (org-clock-goto): Find hidden headlines as well.
28620         * org.el (org-narrow-to-subtree): Find hidden headlines as well.
28622         * org-plot.el (org-plot/add-options-to-plist): Add timeind
28623         option.
28625 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28627         * org-publish.el (org-publish-remove-all-timestamps): New function.
28628         (org-publish-all): Remove all timestamp files if `org-publish-all'
28629         is called with a prefix argument.
28631         * org-list.el (org-indent-item): Fix typo.
28632         (org-item-indent-positions): Normalize ordered bullet.
28634 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28636         * org-macs.el (org-set-local): Make a local variable, do not make
28637         the variable buffer-local!
28639         * org-latex.el (org-export-as-latex): Call `org-install-letbind'.
28641         * org-exp.el (org-infile-export-plist): Read BIND lines.
28642         (org-install-letbind): New function.
28643         (org-export-as-org, org-export-preprocess-string):
28644         Call `org-install-letbind'.
28646         * org-list.el (org-list-demote-modify-bullet): New option.
28647         (org-first-list-item-p): Save point.
28648         (org-fix-bullet-type): New optional argument FORCE-BULLET.
28649         (org-indent-item): Honor `org-list-demote-modify-bullet'.
28650         (org-item-indent-positions): Return bullet types along with
28651         indentation.
28653 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28655         * org.el (org-show-entry): Hide drawers.
28657 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28659         * org-footnote.el (org-footnote-auto-adjust): New option.
28660         (org-footnote-auto-adjust-maybe): New function.
28661         (org-footnote-new, org-footnote-delete):
28662         Call `org-footnote-auto-adjust-maybe'.
28664         * org.el (org-startup-options): Add new footnote-related
28665         keywords.
28667         * org-publish.el (org-publish-timestamp-filename): Additional
28668         arguments PUB-DIR and PUB-FUNC, which are included in the hash.
28669         (org-publish-needed-p): Additional arguments PUB-DIR PUB-FUNC
28670         TRUE-PUB-DIR.  Pass them through to
28671         `org-publish-timestamp-filename'.
28672         (org-publish-update-timestamp): Additional arguments PUB-DIR and
28673         PUB-FUNC, which are included in the hash.
28674         (org-publish-file): Delay timestamp test until the publishing
28675         function is known.
28677 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28679         * org-agenda.el (org-agenda-bulk-action): Add scheduling and
28680         setting the deadline.
28682         * org.el (org-read-date-final-answer): New variable.
28683         (org-read-date): Store the final answer string, including the date
28684         from the calendar, for reuse by agenda bulk commands.
28686         * org-publish.el (org-publish-attachment): Fix publishing of
28687         attachments.
28689         * org-latex.el (org-export-latex-quotation-marks): Fix export of
28690         quotation makrs in parenthesis.
28691         (org-remove-initial-hash): New function.
28692         (org-export-latex-preprocess): Fix bug with infinite loop if
28693         environment is not properly closed.
28695         * org-table.el (org-table-get-remote-range): Find #+TBLNAME also
28696         when indented.
28698         * org.el (org-fontify-meta-lines-and-blocks): Make #+TBLNAME
28699         highlight also when indented.
28701 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28703         * org-footnote.el (org-footnote-renumber-fn:N): New command.
28704         (org-footnote-action): Offer renumbering.
28706         * org.el (org-cycle): Honor the `integrate' value of
28707         org-cycle-include-plain-lists'.
28709         * org-list.el (org-cycle-include-plain-lists): New allowed value
28710         `internal'.  Improve the docstring.
28712         * org.el (org-set-autofill-regexps): Improve the paragraph-start
28713         regexp to work better with LaTeX commands.
28715 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28717         * org-latex.el (org-export-latex-inline-image-extensions): Add ps
28718         and eps extensions.
28720 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28722         * org-agenda.el (org-write-agenda): Make sure org-icalendar is
28723         loaded.
28725         * org.el (org-map-entries): No longer force
28726         `org-tags-match-list-sublevels' to t during a todo-only tags
28727         search.
28729 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28731         * org-latex.el (org-export-latex-low-levels): Allow user-defined
28732         environment.
28733         (org-export-latex-subcontent): Handle user-defined environment.
28735         * org-agenda.el (org-agenda-view-mode-dispatch): Add more keys to
28736         the View dispatcher.
28738         * org.el (org-hide-block-toggle): Use `org-make-overlay' instead of
28739         `make-overlay'.
28741         * org-latex.el (org-export-as-pdf): Protect match data during call
28742         to shell-quote-argument.
28744         * org-agenda.el (org-agenda-mode-map): Modify bulk action keys.
28745         (org-agenda-view-mode-dispatch): New function.
28747 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28749         * org-agenda.el (org-agenda-mode): Reset list of marks.
28750         (org-agenda-mode-map): Define new keys for refile and bulk action.
28751         (org-agenda-menu): Add menu itesm for refile and bulk action.
28752         (org-agenda-refile): New function.
28753         (org-agenda-set-tags): Optional arguments TAG and ONOFF.
28754         (org-agenda-marked-entries): New variable.
28755         (org-agenda-bulk-select, org-agenda-remove-bulk-action-overlays)
28756         (org-agenda-remove-all-bulk-action-marks)
28757         (org-agenda-bulk-action): New functions/commands.
28759 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28761         * org-exp.el (org-get-file-contents): Protect org-like lines in
28762         included files.
28763         (org-export-format-source-code-or-example): Remove newlines.
28765         * org-latex.el (org-export-latex-links): Check for no-description
28766         marking.
28768         * org-exp.el (org-export-preprocess-apply-macros): Switch macro
28769         argument separator back to comma.
28770         (org-export-normalize-links): Mark links without description.
28772 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28774         * org-exp.el (org-infile-export-plist): Fix bug in macro
28775         processing.
28777         * org-agenda.el (org-agenda-clock-out): Update line after clocking
28778         out.
28779         (org-agenda-highlight-todo): Fix bug with highlighting.
28781 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28783         * org.el (org-set-font-lock-defaults): Adapt formatting to capture
28784         new alignment strings.
28786         * org-table.el (orgtbl-self-insert-command): Add yas/expand to
28787         command list.
28788         (org-table-align): Check for forced align type.
28790         * org.el (org-self-insert-command): Add yas/expand to command
28791         list.
28793         * org-clock.el (org-clock-in-hook): New hook.
28794         (org-clock-in): Run `org-clock-in-hook.
28795         (org-clock-out-hook): New hook.
28796         (org-clock-out): Run `org-clock-out-hook.
28797         (org-clock-cancel-hook): New hook.
28798         (org-clock-cancel): Run `org-clock-cancel-hook.
28799         (org-clock-goto-hook): New hook.
28800         (org-clock-goto): Run `org-clock-goto-hook.
28802 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28804         * org.el (org-store-link): Better default description for link to
28805         Org-mode headline.
28807         * org-exp.el (org-export-generic): Autoload the generic exporter
28808         function.
28809         (org-export): Implement the `g' key for the generic exporter.
28811 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28813         * org-table.el (orgtbl-setup): Add a binding for `S-iso-lefttab',
28814         and for zbacktab'.
28816         * org-exp.el (org-infile-export-plist): Get macros also from
28817         #+SETUPFILE.
28819 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28821         * org-colview.el (org-columns-capture-view): Protect vertical bars
28822         in column values.
28823         (org-columns-capture-view): Exclude comment and archived trees.
28825         * org.el (org-quote-vert): New function.
28827         * org-latex.el (org-export-latex-verbatim-wrap): New option.
28829         * org-exp.el (org-export-format-source-code-or-example):
28830         Use `org-export-latex-verbatim-wrap'.
28832         * org.el (org-clone-subtree-with-time-shift): Also shift inactive
28833         time stamps.
28835 2009-08-06  Eric Schulte  <schulte.eric@gmail.com>
28837         * org-exp-blocks.el: New file.
28839 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28841         * org-remember.el (org-remember-templates): Allow the headline
28842         element to be a function.
28843         (org-remember-apply-template): If the headline is a function, call
28844         it to get the true function.
28846         * org-clock.el (org-clock-menu): New function.
28847         (org-clock-update-mode-line): Update help string.
28848         (org-clock-modify-effort-estimate): New function.
28849         (org-clock-mark-default-task): New function.
28851         * org.el (org-hh:mm-string-to-minutes): Also take just a number of
28852         minutes as input.
28853         (org-org-menu): Add new clocking stuff.
28854         (org-clock-is-active): New function.
28856 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28858         * org.el (org-open-non-existing-files): Improve docstring.
28860 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28862         * org-icalendar.el (org-icalendar-include-bbdb-anniversaries):
28863         New option.
28864         (org-export-icalendar): Call `org-bbdb-anniv-export-ical'.
28866         * org-bbdb.el (org-bbdb-anniv-export-ical): New function.
28868         * org-list.el (org-get-checkbox-statistics-face): Use the new
28869         faces.
28871         * org-faces.el (org-checkbox-statistics-todo)
28872         (org-checkbox-statistics-done): New faces.
28874 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28876         * org-latex.el (org-export-latex-use-verb): New variable.
28877         (org-export-latex-emph-format): Prefer \texttt over \verb when
28878         org-export-latex-use-verb is set.
28880 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28882         * org-remember.el (org-remember-handler): Abort remember if the
28883         buffer is empty.
28885         * org-exp.el (org-export-format-source-code-or-example):
28886         Run `org-src-mode-hook'.
28888 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28890         * org.el (org-indent-line-function): Fix indentation of +#end lines.
28892 2009-08-06  Tassilo Horn  <tassilo@member.fsf.org>
28894         * org-gnus.el (org-gnus-store-link): Require message.el in
28895         org-gnus-store-link.
28897 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28899         * org-src.el: New file, split out of org.el.
28901         * org-macs.el (org-replace-match-keep-properties): New function.
28903         * org-exp.el (org-export-mark-blockquote-verse-center):
28904         Better preprocessing of center and quote and verse blocks.
28906         * org-list.el (org-list-end): Respect the stored "original"
28907         indentation when determining the end of the list.
28909         * org-exp.el (org-export-replace-src-segments-and-examples):
28910         Remember indentation correctly.
28912 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28914         * org-clock.el (org-clock-update-mode-line): Apply face
28915         org-mode-line-clock.
28917         * org-faces.el (org-mode-line-clock): New face.
28919 2009-08-06  Tassilo Horn  <tassilo@member.fsf.org>
28921         * org-gnus.el (org-gnus-store-link): Fix bug where
28922         `org-gnus-store-link' used wrong subject when called in an article
28923         buffer.  Patch provided by fengli AT gmail DOT com.
28925 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28927         * org-exp.el (org-export-format-source-code-or-example):
28928         Remember the original indentation of source code snippets and examples.
28930         * org-latex.el (org-export-as-latex): Relocate the table of
28931         contents.
28933         * org.el (org-ctrl-c-ctrl-c): Update clock lines.
28935         * org-agenda.el (org-run-agenda-series): Scope global options also
28936         when creating the agenda buffer.
28938 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28940         * org.el (org-adapt-indentation): Improve documentation.
28941         (org-insert-property-drawer): Respect org-adapt-indentation when
28942         inserting the drawer.
28943         (org-remove-flyspell-overlays-in): New function.
28944         (org-do-emphasis-faces, org-activate-plain-links)
28945         (org-activate-code, org-fontify-meta-lines-and-blocks)
28946         (org-activate-angle-links, org-activate-footnote-links)
28947         (org-activate-bracket-links, org-activate-dates)
28948         (org-activate-target-links, org-activate-tags): Remove flyspell
28949         overlays.
28951 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28953         * org.el (org-edit-src-save): New function.
28955         * org-clock.el (org-clock-out-switch-to-state): New option.
28956         (org-clock-out): Honor `org-clock-out-switch-to-state'.
28958         * org-compat.el (org-compatible-face): Improve macro.
28960         * org.el (org-global-properties-fixed): Add default for
28961         CLOCK_MODELINE_TOTAL.
28963         * org-clock.el (org-clock-sum): Accept lists and strings as tstart
28964         and tend.
28965         (org-clock-sum-current-item): Optional argument TSTART, pass it to
28966         org-clock-sum.
28967         (org-clock-get-sum-start): New function.
28969         * org.el (org-startup-options): New keywords blockhide and
28970         blockshow.
28971         (org-mode): Add new invisibility spec.
28972         (org-set-startup-visibility): Hide block on startup if so
28973         desired.
28974         (org-hide-block-startup): New option.
28975         (org-block-regexp): New constant.
28976         (org-hide-block-overlays): New variable.
28977         (org-block-map, org-hide-block-toggle-all, org-hide-block-all)
28978         (org-show-block-all, org-hide-block-toggle-maybe)
28979         (org-hide-block-toggle): New functions.
28980         (org-edit-src-exit): Do not quote lines starting with # and no +
28981         behind it.
28982         (org-auto-repeat-maybe): Add LAST_REPEAT properter for a repeating
28983         entry.
28985 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28987         * org.el (org-buffer-property-keys): Add Effort property for
28988         completion.
28990 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28992         * org-clock.el (org-clock-sum-current-item): Fix positioning bug
28993         when retrieving total clocked time in the subtree.
28995         * org.el (org-quoting-blocks): New variable.
28997 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
28999         * org-table.el (org-table-store-formulas)
29000         (org-table-get-stored-formulas, org-table-fix-formulas)
29001         (org-table-edit-formulas, orgtbl-ctrl-c-ctrl-c)
29002         (orgtbl-gather-send-defs): Allow indented #+TBLFM line.
29004         * org.el (org-fontify-meta-lines, org-ctrl-c-ctrl-c):
29005         Allow indented #+TBLFM line.
29007         * org-footnote.el (org-footnote-goto-local-insertion-point):
29008         Allow indented #+TBLFM line.
29010         * org-colview.el (org-dblock-write:columnview): Allow indented
29011         #+TBLFM line.
29013         * org-clock.el (org-dblock-write:clocktable): Allow indented
29014         #+TBLFM line.
29016 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29018         * org-exp.el (org-export-format-source-code-or-example):
29019         Make editing indented blocks work correctly.
29021         * org.el (org-edit-src-nindent): New variable.
29022         (org-edit-src-code, org-edit-fixed-width-region)
29023         (org-edit-src-find-region-and-lang, org-edit-src-exit):
29024         Make editing indented blocks work correctly.
29026 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29028         * org-exp.el (org-export-replace-src-segments-and-examples):
29029         Find indented blocks.
29030         (org-export-format-source-code-or-example): Fix indentation of
29031         blocks.
29032         (org-export-remove-indentation): New function.
29033         (org-export-select-backend-specific-text): Allow backend-specific
29034         code to be indented.
29035         (org-export-mark-blockquote-verse-center): Allow markers to be
29036         indented.
29038         * org.el (org-fontify-meta-lines): New function.
29039         (org-set-font-lock-defaults): Call the new fontification
29040         function.
29042         * org-faces.el (org-meta-line): New face.
29043         (org-block): New face.
29045 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29047         * org.el (org-treat-insert-todo-heading-as-state-change)
29048         (org-treat-S-cursor-todo-selection-as-state-change):
29049         New variables.
29050         (org-insert-todo-heading):
29051         Honor `org-treat-insert-todo-heading-as-state-change'.
29052         (org-shiftright, org-shiftleft):
29053         Honor `org-treat-S-cursor-todo-selection-as-state-change'.
29054         (org-inhibit-logging): New variable.
29056 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29058         * org-agenda.el (org-remove-subtree-entries-from-agenda):
29059         Reduce range for marker position checking.
29061         * org-latex.el (org-export-latex-first-lines): Fix bug when
29062         exporting a region.
29064 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29066         * org-exp.el (org-export-push-to-kill-ring): Protect using
29067         x-set-selection, because that does not always work.
29069         * org-agenda.el (org-agenda-list): Apply the new face
29070         `org-agenda-date-today'.
29072         * org-faces.el (org-agenda-date-today): New face.
29074 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29076         * org-agenda.el (org-agenda-to-appt): Turn off restriction when
29077         creating appointments.
29079         * org-latex.el (org-export-latex-low-levels): Fix customization
29080         type.
29082         * org.el (org-priority, org-shiftup, org-shiftdown):
29083         Disable priority commands.
29085         * org-agenda.el (org-agenda-priority): Disable priority commands.
29087         * org.el (org-enable-priority-commands): New option.
29089         * org-colview.el (org-columns-compute)
29090         (org-columns-number-to-string): Fix problems with empty fields.
29092         * org-exp.el (org-export-push-to-kill-ring): New function.
29093         (org-export-copy-to-kill-ring): New option.
29095         * org-latex.el (org-export-as-latex):
29096         Call `org-export-push-to-kill-ring'.
29098         * org-exp.el (org-export-show-temporary-export-buffer):
29099         New option.
29101         * org-latex.el (org-export-as-latex):
29102         Use `org-export-show-temporary-export-buffer'.
29104         * org-exp.el (org-export-show-temporary-export-buffer):
29105         New option.
29106         (org-export-push-to-kill-ring): New function.
29108         * org-colview.el (org-columns-compile-map): New variable.
29109         (org-columns-new, org-columns-compute)
29110         (org-columns-number-to-string, org-columns-uncompile-format)
29111         (org-columns-compile-format): Implement new operators.
29113 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29115         * org-exp.el (org-export-plist-vars): Add :xml-declaration.
29117         * org-list.el (org-update-checkbox-count): Make property
29118         dependent.
29120         * org.el (org-hierarchical-todo-statistics): New option.
29121         (org-update-parent-todo-statistics): Modify to handle recursive
29122         statistics.
29124 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29126         * org-publish.el (org-publish): Make this function behave
29127         correctly in interactive use when called with a prefix argument.
29129         * org.el (org-todo-statistics-hook): New hook.
29130         (org-update-parent-todo-statistics): Use new hook.
29131         (org-log-into-drawer): New function.
29132         (org-add-log-setup): Use the new `org-log-into-drawer' function to
29133         determine if we should be logging into a drawer.
29134         (org-log-into-drawer): Update docstring.
29135         (org-default-properties): Add LOG_INTO_DRAWER as a property.
29137         * org-list.el (org-checkbox-statistics-hook): New hook.
29138         (org-update-checkbox-count-maybe): Use new hook.
29140 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29142         * org.el (org-edit-src-code, org-edit-fixed-width-region): Use a
29143         better buffer-generating mechanism.
29144         (org-edit-src-find-buffer): New function.
29146         * org-icalendar.el (org-print-icalendar-entries): Don't check for
29147         archive tag, this is already done by `org-agenda-skip'.
29148         data while constructing lost of tags.
29150 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29152         * org-exp.el (org-export-preprocess-apply-macros): Use semicolon
29153         as argument separator in macros.
29155 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29157         * org.el (org-after-sorting-entries-or-items-hook): New hook.
29158         (org-sort-entries-or-items): Run the new hook.
29159         (org-after-refile-insert-hook): New hook.
29160         (org-refile): Run `org-after-refile-insert-hook'.
29162         * org-agenda.el (org-agenda-get-progress): Never take time of day
29163         from headline when displaying progress.
29165         * org-latex.el (org-export-latex-complex-heading-re): New variable.
29166         (org-export-as-latex): Force the correct regexp in the
29167         preprocessor buffer.
29168         (org-export-latex-set-initial-vars):
29169         Set `org-export-latex-complex-heading-re'.
29171         * org-agenda.el (org-agenda-start-with-log-mode): New option.
29172         (org-agenda-mode): Use `org-agenda-start-with-log-mode'.
29174 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29176         * org-latex.el (org-export-latex-tables-centered): New option.
29177         (org-export-latex-tables): Use `org-export-latex-tables-centered'.
29179         * org-exp.el (org-export-as-org): New command.
29180         (org-export-as-org): New command.
29182         * org-publish.el (org-publish-org-to-org): New function.
29184 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29186         * org.el (org-yank): Just call `org-yank-generic'.
29187         (org-yank-generic): New function, containing the formaer
29188         functionality of `org-yank'.
29190         * org-latex.el (org-export-latex-not-done-keywords)
29191         (org-export-latex-done-keywords): New variables.
29192         (org-export-latex-todo-keyword-markup): New option.
29193         (org-export-latex-set-initial-vars): Remember the TODO keywords.
29194         (org-export-latex-keywords-maybe): Apply the TODO markup.
29196 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29198         * org-exp.el (org-infile-export-plist): Add more default macros.
29199         (org-export-preprocess-apply-macros): Process macro arguments.
29201 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29203         * org-icalendar.el (org-icalendar-include-todo): New allowed value
29204         `unblocked'.
29205         (org-print-icalendar-entries): Respect the new value of
29206         `org-icalendar-include-todo'.
29208         * org.el (org-link-try-special-completion)
29209         (org-file-complete-link): New functions.
29210         (org-insert-link): Add special completion support for some link
29211         types.
29213         * org-bbdb.el (org-bbdb-complete-link): New function.
29215 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29217         * org-list.el (org-update-checkbox-count): Allow recursive
29218         statistics.
29219         (org-hierarchical-checkbox-statistics): New option.
29221         * org.el (org-cycle): Remove erraneous space character.
29223         * org-icalendar.el (org-icalendar-timezone): Initialize from
29224         environment.
29226 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29228         * org.el (org-autoload): Fix autoloading of ascii export
29229         functions.
29230         (org-modules): Add org-special-blocks.
29232 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29234         * org-icalendar.el (org-start-icalendar-file): Use the new option.
29235         (org-ical-timezone): New option.
29237         * org-exp.el (org-export-get-coderef-format): Use the description
29238         is present.
29240         * org.el (org-sort-entries-or-items): Improve docstring, and make
29241         better implementation for time sorting.
29243 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29245         * org.el (org-edit-src-persistent-message): New option.
29246         (org-edit-src-code, org-edit-fixed-width-region): Use the new
29247         option.
29249         * org-clock.el (org-clock-insert-selection-line): Fix prefious
29250         patch.
29252         * org.el (org-edit-src-code, org-edit-fixed-width-region):
29253         Use separate buffer instead of indirect buffer to edit source code.
29254         (org-edit-src-exit): Make this function work with the new setup.
29256         * org-clock.el (org-clock-insert-selection-line): Make sure tasks
29257         are properly fontified before shown in the selection menu.
29259         * org.el (org-fontify-like-in-org-mode): New function.
29261         * org-latex.el (org-export-latex-links): Use the property list to
29262         retrieve the default image attributes.
29264         * org-exp.el (org-export-plist-vars): Add a new option.
29266 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29268         * org-exp.el (org-export, org-export-visible): Support ASCII
29269         export to buffer.
29270         (org-export-normalize-links): Do not protect the description if it
29271         is explicitly given.
29273         * org-list.el (org-reset-checkbox-state-subtree): Move here from
29274         org-checklist.el.
29275         (org-reset-checkbox-state-subtree):
29276         Call `org-reset-checkbox-state-subtree'.
29278         * org-remember.el (org-select-remember-template): For the
29279         selection of a valid template.
29281         * org-latex.el (org-export-region-as-latex): Supply the
29282         force-no-subtree argument.
29283         (org-export-as-latex): Provide better limits when exporting the
29284         first line.  When exporting to string, we still want the first
29285         lines.
29286         (org-export-latex-first-lines): New argument END, to force the end
29287         of the region.
29288         (org-export-region-as-latex): Use the property list.
29289         (org-export-as-latex): ????
29291 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29293         * org-latex.el (org-export-latex-after-blockquotes-hook): New hook.
29294         (org-export-latex-preprocess): Run the new hook.
29296         * org-exp.el (org-export-preprocess-after-blockquote-hook): New hook.
29297         (org-export-preprocess-string): Run the new hook.
29299 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29301         * org-macs.el (org-check-external-command): New defsubst.
29303         * org.el (org-mode-map): New key for reload.
29304         (org-format-latex): Better error message when external programs
29305         are not available.
29307         * org-agenda.el (org-agenda-mode-map): Bind `org-reload'.
29309         * org.el (org-sort-entries-or-items): Explicit sorting function
29310         for priorities, needed for XEmacs compatibility.
29312         * org-remember.el (org-remember-apply-template): Improve auto-save
29313         behavior.
29315 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29317         * org-latex.el (org-export-latex-preprocess): Also protect
29318         environments ending in a star.
29320         * org-list.el (org-at-item-p): Fix regular expression.
29322 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29324         * org.el (org-end-of-subtree): Improve speed.
29326         * org-agenda.el (org-agenda-get-timestamps)
29327         (org-agenda-get-progress, org-agenda-get-deadlines)
29328         (org-agenda-get-scheduled, org-agenda-get-blocks): Optimizations,
29329         in particular, wait as long as possible to collect the tags.
29330         (org-stuck-projects): Improve docstring.
29332         * org.el (org-store-link): No errors when getting custom id before
29333         first headline.
29334         (org-get-tags-at): Use `org-up-heading-safe' when getting tags.
29336 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29338         * org.el (org-prepare-agenda-buffers): Catch a throw to nextfile.
29340         * org-protocol.el: Remove dependency on url.el.
29341         (org-protocol-unhex-compound, org-protocol-open-source):
29342         Remove dependency on url.el.
29344         * org-latex.el (org-export-as-pdf):
29345         Use `org-latex-to-pdf-process'.
29347 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29349         * org-latex.el (org-latex-to-pdf-process): New option.
29351         * org-agenda.el (org-agenda-skip-additional-timestamps-same-entry):
29352         New option.
29353         (org-agenda-get-timestamps):
29354         Honor `org-agenda-skip-additional-timestamps-same-entry'.
29356         * org-clock.el (org-clock-goto-may-find-recent-task): New option.
29357         (org-clock-goto): Find recent task only if
29358         `org-clock-goto-may-find-recent-task' allows it.
29360         * org-exp.el (org-export-remove-or-extract-drawers): Handle empty
29361         drawers, and drawers that are missing the :END: line.
29363 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29365         * org-clock.el (org-clock-goto): Go to recently clocked task if no
29366         clock is running.
29368 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29370         * org.el (org-update-parent-todo-statistics): Check for
29371         STATISTICS_FROM property.
29373         * org-list.el (org-update-checkbox-count): Check for
29374         STATISTICS_FROM property.
29376         * org.el (org-tab-first-hook)
29377         (org-tab-after-check-for-table-hook)
29378         (org-tab-after-check-for-cycling-hook): New hooks.
29379         (org-cycle-internal-global, org-cycle-internal-local):
29380         New functions, split out from `org-cycle'.
29381         (org-cycle): Call the new hooks.
29383 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29385         * org-exp.el (org-export-preprocess-string): Reset the list of
29386         preferred targets for each run of the preprocessor.
29388         * org.el (org-refile-target-verify-function):
29389         Improve documentation.
29390         (org-get-refile-targets): Respect point being moved by the
29391         verification function.
29393         * org-latex.el (org-export-latex-timestamp-keyword-markup):
29394         New option.
29395         (org-export-latex-keywords): Use new option.
29397         * org.el (org-rear-nonsticky-at): New defsubst.
29398         (org-activate-plain-links, org-activate-angle-links)
29399         (org-activate-footnote-links, org-activate-bracket-links)
29400         (org-activate-dates, org-activate-target-links)
29401         (org-activate-tags): Place the rear-nonsticky properties at the
29402         correct location.
29404 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29406         * org-protocol.el (server-edit): Declare `server-edit'.
29407         (org-protocol-unhex-string, org-protocol-unhex-compound):
29408         New functions.
29409         (org-protocol-check-filename-for-protocol): Call `server-edit'.
29411         * org.el (org-default-properties): New default properteis for
29412         completion.
29414         * org-exp.el (org-export-add-subtree-options): Add new properties
29415         for subtree export.
29417 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29419         * org-id.el (org-id-get-with-outline-path-completion): Turn off
29420         org-refile-target-verify-function for the duration of the command.
29422         * org.el (org-link-to-org-use-id): New possible value
29423         `create-if-interactive-and-no-custom-id'.
29424         (org-store-link): Use custom IDs.
29425         (org-link-search): Find custom ID properties from #link.
29426         (org-default-properties): Add CUSTOM_ID for property completion.
29427         (org-refile-target-verify-function): New option.
29428         (org-goto): Turn off org-refile-target-verify-function
29429         for the duration of the command.
29431 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29433         * org-exp.el (org-export-preferred-target-alist): New variable.
29434         (org-export-define-heading-targets): Find the new CUSTOM_ID
29435         property.
29436         (org-export-target-internal-links): Target the custom ids when
29437         possible.
29439         * org-latex.el (org-export-latex-preprocess): Better regexp for
29440         matching latex macros with arguments.
29442 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29444         * org-remember.el (org-remember-handler): Allow filing to non-org
29445         files.
29447 2009-08-06  Magnus Henoch  <magnus.henoch@gmail.com>
29449         * org-table.el (org-table-fix-formulas): Do not change references
29450         to remote tables.
29451         (org-table-get-remote-range): Convert standard coordinates to RC
29452         format.
29454         * org-latex.el (org-export-latex-keywords): Fix regexp bug.
29456 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29458         * org-compat.el (org-sha1-string): Function removed.
29460         * org.el (org-refile-allow-creating-parent-nodes): New option.
29461         (org-refile-get-location): New argument NEW-NODES.
29462         (org-refile): Call `org-refile-get-location' with the new
29463         argument.
29464         (org-refile-get-location): Arrange for adding a new child.
29465         (org-refile-new-child): New function.
29467         * org-clock.el: Fix a number of docstrings.
29468         (org-clock-find-position): New argument
29469         FIND-UNCLOSED to make the function find an unclosed clock in the
29470         entry.
29471         (org-clock-in): Call `org-clock-find-position' with the new
29472         argument if we might be resuming a clock.
29474 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29476         * org-latex.el (org-export-latex-display-custom-times): New variable.
29477         (org-export-latex-timestamp-markup): New option.
29478         (org-export-latex-set-initial-vars): Remember the local value of
29479         `org-display-custom-times'.
29480         (org-export-latex-content): Process time stamps.
29481         (org-export-latex-time-stamps): New function.
29483         * org-macs.el (org-maybe-intangible): Add intangible property
29484         again to invisible text.
29486 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29488         * org-exp.el (org-default-export-plist): Handle undefined
29489         variables.
29491 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29493         * org.el (org-sort-entries-or-items): Match TODO keywords
29494         case-sensitively, when sorting.
29495         (org-priority): Do not match TODO keywords with wrong case.
29497 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29499         * org.el (org-todo): Honor the NOBLOCKING property.
29501         * org-agenda.el (org-agenda-dim-blocked-tasks): Honor the
29502         NOBLOCKING property.
29504         * org.el (org-scan-tags): Fix bug in tag scanner.
29506 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29508         * org.el (org-modules): Mark obsolete packages.
29510         * org-html.el: New file, split out from org-exp.el.
29512         * org-icalendar.el: New file, split out from org-exp.el.
29514         * org-xoxo.el: New file, split out from org-exp.el.
29516         * org-ascii.el: New file, split out from org-exp.el.
29518 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29520         * org-compat.el (org-find-library-name): New function.
29522         * org.el (org-pre-cycle-hook): New hook.
29523         (org-cycle): Call the new hook in appropriate places.
29524         (org-reload): Only reload files that have been loaded before.
29526 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29528         * org.el (org-set-font-lock-defaults): Enforxe space or line end
29529         after todo keyword.
29530         (org-todo): When changing TODO state, do matching
29531         case-sensitively.
29532         (org-map-continue-from): New variable.
29533         (org-scan-tags): Respect values in `org-map-continue-from'.
29534         (org-reload): Make XEmacs compatible.
29536 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29538         * org-protocol.el (org-protocol-flatten-greedy): New function.
29539         (org-protocol-flatten): New function.
29541         * org.el (org-open-link-from-string): Pass reference buffer to
29542         `org-open-at-point'.
29543         (org-open-at-point): New optional argument `reference-buffer'.
29545 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29547         * org.el (org-scan-tags): Make tag scan find headline in first
29548         line, 2nd attempt.
29549         (org-get-refile-targets): Add the naked file name.
29550         (org-refile): Store as top-level entry when only file name was
29551         given.
29553         * org-agenda.el (org-agenda-get-progress): Fix regexp bug.
29555         * org.el (org-block-todo-from-children-or-siblings-or-parent):
29556         Rename from org-block-todo-from-children-or-siblings, and
29557         enhanced to look for the parent's status as well.
29559         * org-agenda.el (org-agenda-log-mode-add-notes): New option.
29560         (org-agenda-get-progress): Add first notes line to log entry if so
29561         desired.
29563 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29565         * org-agenda.el (org-agenda-cleanup-fancy-diary-hook): New hook.
29566         (org-agenda-cleanup-fancy-diary): Call the new hook.
29568         * org-remember.el (org-remember-apply-template): Take the default
29569         for the annotation from the :annotation property.
29571         * org-mac-message.el (org-mac-message-get-link): Remove the
29572         quotes.
29573         (org-mac-message-get-link): Return the result.
29575 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29577         * org.el (org-refile-get-location): Add file name only if not
29578         already included in outline path.
29580         * org-faces.el (org-n-level-faces): Fix customization type from
29581         number to integer.
29583         * org-exp.el (org-export-headline-levels): Fix customization type
29584         from number to integer.
29586         * org-agenda.el (org-agenda-confirm-kill)
29587         (org-agenda-custom-commands-local-options)
29588         (org-timeline-show-empty-dates, org-agenda-ndays)
29589         (org-agenda-start-on-weekday, org-scheduled-past-days):
29590         Fix customization type from number to integer.
29592 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29594         * org-protocol.el: Declare some functions.
29596         * org-agenda.el (org-agenda-compare-effort):
29597         Honor `org-sort-agenda-noeffort-is-high'.
29598         (org-agenda-filter-by-tag, org-agenda-filter-make-matcher)
29599         (org-agenda-compare-effort): Implement the "?" operator for
29600         finding entries without effort setting.
29602         * org.el (org-extract-attributes-from-string): New function.
29604         * org-exp.el (org-export-splice-attributes): New function.
29606 2009-08-06  Bastien Guerry  <bzg@gnu.org>
29607         Daniel M German  <dmg@uvic.org>
29608         Sebastian Rose  <sebastian_rose@gmx.de>
29609         Ross Patterson  <me@rpatterson.net>
29611         * org-protocol.el: New file.
29613 2009-08-06  Baoqiu Cui  <cbaoqiu@yahoo.com>
29615         * org-docbook.el: New file.
29617 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29619         * org-mouse.el: XEmacs compatibility fixes.
29621         * org.el (org-modules): Add org-inlinetasks.el.
29622         (org-cycle): Implement limiting level on cycling.
29623         (org-move-subtree-down): Fix bug with swapping subtrees at end of
29624         buffer.
29626         * org-inlinetask.el: New file.
29628         * org.el (org-emphasis-regexp-components): Allow braces in
29629         emphasis pre and post match.
29631         * org-footnote.el (org-footnote-normalize): When only sorting, do
29632         not insert inline notes at the end.
29634         * org.el (org-require-autoloaded-modules): Add org-docbook.el.
29636 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29638         * org.el (org-reftex-citation): New command.
29640 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29642         * org-agenda.el (org-agenda-cmp-user-defined): New option.
29643         (org-sorting-choice, org-agenda-sorting-strategy): Add the new
29644         sorting options.
29645         (org-entries-lessp): Apply the new sorting option.
29647         * org.el (org-block-todo-from-children-or-siblings): Fix bug in
29648         blocker code, when an older sibling has children.
29650         * org-mac-message.el (org-mac-message-get-link): Improve getting
29651         links from multiple selected messages.
29653 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29655         * org-remember.el (org-remember-finalize): Do not set buffer file
29656         name to nil.
29657         (org-remember-handler): Mark buffer as unmodified.
29658         (org-remember-handler): Delete backup file and show message about
29659         remaining backup files.
29660         (org-remember-auto-remove-backup-files): New option.
29662         * org.el (org-store-link): Use buffer name as link description in
29663         w3-mode buffers.
29664         (org-ido-switchb): Fix argument bug for completion.
29666         * org-remember.el (org-remember-apply-template): Set local
29667         variable `auto-save-visited-file-name' instead of global one.
29669 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29671         * org-agenda.el (org-agenda-get-todos): Fix bug with match-data.
29672         (org-agenda-get-todos): Mark file tags as inherited.
29673         (org-agenda-list): Always search diary lines for a time.
29675 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29677         * org-feed.el: New file.
29679         * org-exp.el (org-export-as-html): Close local lists depending on
29680         indentation, also when starting a table.
29682         * org-remember.el (org-remember-backup-directory)
29683         (org-remember-backup-name): New internal variable.
29685 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29687         * org-clock.el (org-clock-out-if-current): Make buffer detection
29688         work in indirect buffers as well.
29690         * org.el (org-emphasis-regexp-components): Add the exxclamation
29691         mark to the post-emphasis characters.
29693 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29695         * org.el (org-read-date-minibiffer-septup-hook): New hook.
29696         (org-read-date): Run the new hook.
29698         * org-mac-message.el (org-mac-flagged-mail): New group.
29699         (org-mac-mail-account): New variable.
29700         (org-mac-create-flagged-mail, org-mac-insert-flagged-mail):
29701         New commands.
29703         * org-remember.el (org-remember-backup-directory): New variable.
29704         (org-remember-apply-template): Write file to backup directory.
29706 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29708         * org-mouse.el (org-mouse-todo-menu): New function.
29709         (org-mouse-todo-keywords): Function removed.
29710         (org-mouse-context-menu): Use `org-mouse-todo-menu'.
29712         * org-table.el (org-table-beginning-of-field)
29713         (org-table-end-of-field): New commands.
29714         (org-table-previous-field, org-table-beginning-of-field):
29715         Better error messages.
29716         (orgtbl-setup): Include `M-a' and `M-e'.
29718         * org.el (org-backward-sentence, org-forward-sentence):
29719         New commands.
29721         * org-colview.el (org-colview-initial-truncate-line-value):
29722         New variable.
29723         (org-columns-remove-overlays): Restore the value of `truncate-lines'.
29724         (org-columns): Remember the value of `truncate-lines'.
29726         * org.el (org-columns-skip-arrchived-trees): New option.
29728         * org-agenda.el (org-agenda-export-html-style): Define color for
29729         org-agenda-done face.
29730         (org-search-view, org-agenda-get-todos, org-agenda-get-progress)
29731         (org-agenda-get-deadlines, org-agenda-get-scheduled): Use new face.
29733         * org.el (org-scan-tags): Use the new face.
29735         * org-faces.el (org-agenda-done): New face.
29737         * org.el (org-scan-tags): Test the value org
29738         `org-tags-match-list-sublevels'.
29739         (org-tags-match-list-sublevels): New allowed value: indented.
29741         * org-latex.el (org-export-latex-make-header): Apply macros
29742         in header.
29744         * org-exp.el (org-export-apply-macros-in-string): New function.
29746         * org-latex.el (org-export-latex-list-parameters): Fix bug
29747         with the definition of a checked box.
29749         * org-clock.el (org-clock-find-position): Fix drawer indentations.
29751         * org-latex.el (org-export-latex-low-levels): More options
29752         for how to process lower levels in LaTeX.
29753         (org-export-latex-subcontent): Better treatment for lists as a
29754         means of publishing lower levels.
29756 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29758         * org.el (org-set-font-lock-defaults): Use new checkbox face.
29760         * org-faces.el (org-checkbox): New face.
29762         * org-exp.el (org-export-html-preprocess): Only create LaTeX
29763         fragement images if there is an export file.
29765 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29767         * org-agenda.el (org-stuck-projects): Document that the subtree of
29768         projects that are not stuck will now be searched for stuck
29769         sub-projects.
29770         (org-agenda-skip-entry-when-regexp-matches)
29771         (org-agenda-skip-entry-when-regexp-matches-in-subtree): New functions.
29772         (org-agenda-list-stuck-projects):
29773         Use `org-agenda-skip-entry-when-regexp-matches-in-subtree'.
29775         * org-latex.el (org-export-latex-preprocess):
29776         Improve export of verses.
29778         * org-exp.el (org-export-as-html): Implement centering as a div
29779         rather than a paragraph.  Do a better job with line-end in verse
29780         environments.
29782 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29784         * org.el (org-open-at-point): Fix tags searches by mouse click.
29786 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29788         * org-latex.el (org-export-latex-preprocess): Implement the
29789         centering markup.
29791         * org-exp.el (org-export-mark-blockquote-verse-center):
29792         Rename from `org-export-mark-blockquote-and-verse'.
29793         (org-export-as-html): Implement the centering markup.
29795         * org-latex.el (org-export-latex-tables): Fix vertical
29796         lines in tables.
29798 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29800         * org.el (org-read-date-history): New variable.
29801         (org-read-date): Use new history variable.
29802         (org-toggle-heading): Fix bug when used before first headline.
29803         (org-store-log-note): Remove drawer if empty while note is
29804         aborted.
29805         (org-remove-empty-drawer-at): New function.
29806         (org-check-after-date): New command.
29807         (org-sparse-tree): New sparse tree command "a".
29809         * org-exp.el (org-export-as-ascii): Improve export of plain lists.
29811 2009-08-06  Bastien Guerry  <bzg@gnu.org>
29813         * org.el (org-toggle-fixed-width-section): Bug fix: insert a
29814         column and a space, not only a column.
29816 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29818         * org-latex.el (org-export-latex-emphasis-alist):
29819         Better defaults for verbose emphasis.
29820         (org-export-latex-emph-format): New function.
29821         (org-export-latex-fontify): Call `org-export-latex-emph-format'.
29823         * org-agenda.el (org-agenda-menu): Add new commands to menu.
29824         (org-agenda-do-date-later, org-agenda-do-date-earlier)
29825         (org-agenda-date-later-minutes, org-agenda-date-earlier-minutes)
29826         (org-agenda-date-later-hours, org-agenda-date-earlier-hours):
29827         New commands.
29829         * org.el (org-timestamp-change): Move end-time along with start
29830         time.
29832 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29834         * org-exp.el (org-export-target-internal-links)
29835         (org-export-as-html): Protect links specified as #name.
29837 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29839         * org.el (org-clone-subtree-with-time-shift): New command.
29841         * org-latex.el (org-export-latex-special-chars)
29842         (org-export-latex-treat-sub-super-char): Fix subscript export.
29844         * org-exp.el (org-create-multibrace-regexp): Do not add
29845         backslashes to the class.
29847 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29849         * org-colview.el (org-columns-map): Better functions for moving up
29850         and down a row, even if `truncate-line' is nil.
29852         * org.el (org-insert-todo-heading): Make sure the keyword is
29853         inserted at the correct position.
29855         * org-publish.el (org-publish-project-alist)
29856         (org-publish-projects, org-publish-org-index): Change default anme
29857         for the index of file names to "sitemap.org".
29859         * org-latex.el (org-export-latex-tables):
29860         Use `org-split-string', for Emacs 21 compatibility.
29862 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29864         * org-agenda.el (org-agenda-log-mode-items): Improve docstring.
29866 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29868         * org-exp.el (org-export-page-description)
29869         (org-export-page-keywords): New variables.
29870         (org-export-plist-vars): Add entries for :keywords and
29871         :description.
29872         (org-infile-export-plist): Parse for new keywords.
29873         (org-get-current-options): Add new keywords.
29874         (org-export-as-html): Publish description and keywords.
29876         * org-agenda.el (org-agenda-add-entry-text-descriptive-links):
29877         New option.
29878         (org-agenda-add-entry-text):
29879         Honor `org-agenda-add-entry-text-descriptive-links'.
29881         * org-latex.el (org-export-latex-preprocess): Make all
29882         external preprocess functions use a PARAMETER arg.
29884         * org-exp.el (org-export-preprocess-string)
29885         (org-export-select-backend-specific-text)
29886         (org-export-format-source-code-or-example)
29887         (org-format-org-table-html): Support docbook export.
29888         (org-export-preprocess-string): Make all external preprocess
29889         functions use a PARAMETER arg.
29891 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29893         * org-exp.el (org-export-html-style-include-scripts): New option.
29894         (org-export-plist-vars): Add new option
29895         `org-export-html-style-include-scripts'.
29896         (org-export-as-html): Honor new option
29897         `org-export-html-style-include-scripts'.
29898         (org-export-html-scripts, org-export-html-style-default):
29899         Fix xml issues with the Safari browser.
29901 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29903         * org-publish.el (org-publish-attachment): Only copy file when the
29904         directories differ.
29906 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29908         * org-clock.el (org-clocktable-steps): Use inactive time stamps
29909         for clocktable steps.
29911         * org.el (org-additional-option-like-keywords): Add two more
29912         keywords.
29914 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29916         * org-exp.el (org-export-format-source-code-or-example):
29917         Mark temporary buffer unmodified, so that it will be killed even if
29918         mode like message mode has decided to assign a file name.
29920         * org.el (org-scan-tags): Improve tag inheritance.
29921         (org-scan-tags, org-make-tags-matcher): Make tag comparison
29922         case-sensitive.
29923         (org-scan-tags): Use the internal tags list instead of creating it
29924         from scratch.
29925         (org-trust-scanner-tags, org-scanner-tags): New variables.
29926         (org-scan-tags): Set `org-scanner-tags'.
29927         (org-get-tags-at): Take advantage of `org-trust-scanner-tags'.
29928         (org-map-entries): Document the possible speedup using scanner
29929         tags.
29931 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29933         * org.el (org-add-planning-info): Fix bug with looking for keyword
29934         only at column 0.
29936         * org-agenda.el (org-agenda-custom-commands-local-options):
29937         Add option for tags filter preset.
29938         (org-prepare-agenda): Store filter preset as a property on the
29939         filter variable.
29940         (org-finalize-agenda): Call the filter, if there is a preset.
29941         (org-agenda-filter-by-tag): Filter again after clearing the
29942         filter, when there still is a preset.
29943         (org-agenda-filter-make-matcher, org-agenda-set-mode-name):
29944         Include the preset filter.
29945         (org-agenda-redo): Apply the filter again, also the preset filter.
29947         * org-exp.el (org-export-as-html): Use IDs in the correct way.
29949         * org.el (org-uuidgen-p): New function.
29951         * org-agenda.el (org-agenda-fontify-priorities): New default value
29952         `cookies'.
29953         (org-agenda-fontify-priorities): Rename from
29954         org-fontify-priorities.
29956         * org.el (org-set-font-lock-defaults):
29957         Call `org-font-lock-add-priority-faces'.
29958         (org-font-lock-add-priority-faces): New function.
29960         * org-faces.el (org-set-tag-faces): New option.
29961         (org-priority-faces): New variable.
29963         * org-exp.el (org-export-as-html): Add a "content" div around the
29964         entire content of the body tag.
29965         (org-export-html-get-bibliography): New function.
29966         (org-export-html-validation-link): New variable.
29967         (org-export-as-html): Add validation link to exported page.
29969         * org.el (org-match-sparse-tree): Rename from
29970         `org-tags-sparse-tree'.
29971         (org-tags-sparse-tree): New alias.
29973 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29975         * org.el (org-get-valid-level): Catch the case where the level
29976         change is nil.
29978         * org-clock.el (org-clock-find-position): Better indentation of
29979         new clock drawers.
29981 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29983         * org-agenda.el (org-agenda-quit): Delete window only when the
29984         frame-setup was not `current-window'.
29986         * org.el (org-tag-persistent-alist): New option.
29987         (org-startup-options): Add keyword `noptag'.
29988         (org-fast-todo-selection): Handle :newline correctly.
29989         (org-set-tags): Handle :newline correctly.
29990         (org-fast-tag-selection): Handle :newline correctly.
29992 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
29994         * org-exp.el (org-export-as-ascii): Reverse link buffer before
29995         outputting it.
29996         (org-export-ascii-push-links): Fix bug with pussing links into the
29997         export buffer.
29999 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
30001         * org-archive.el (org-archive-subtree): Do not add 1 to level if
30002         pasting at top level.
30004         * org-bbdb.el: Improve documentation.
30006 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
30008         * org-list.el (org-insert-item): Only consider insert empty lines
30009         is `org-empty-line-terminates-plain-lists' is not nil.
30011         * org.el (org-blank-before-new-entry): Mention the dependence on
30012         `org-empty-line-terminates-plain-lists' in the docstring.
30014         * org-publish.el (org-publish-get-project-from-filename):
30015         New optional argument UP.  Only find the top project if UP is set.
30016         (org-publish-current-project): Find the top encloding project.
30018         * org-agenda.el (org-agenda-before-write-hook)
30019         (org-agenda-add-entry-text-maxlines): New options.
30020         (org-write-agenda): Run the new hook in the temporary buffer.
30021         (org-agenda-add-entry-text): New function.
30022         (org-write-agenda): Implement PDF export, using ps2pdf.
30024         * org.el (org-global-properties-fixed, org-global-properties):
30025         Improve documentation string.
30027         * org-exp.el (org-export-ascii-links-to-notes): New option.
30028         (org-export-as-ascii): Handle links better.
30029         (org-export-ascii-wrap, org-export-ascii-push-links):
30030         New functions.
30032 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
30034         * org-agenda.el (org-agenda): Make prefix arg optional.
30035         (org-agenda-search-headline-for-time): New option.
30036         (org-format-agenda-item):
30037         Honor `org-agenda-search-headline-for-time'.
30039         * org-table.el (orgtbl-self-insert-command): Cluster undo for 20
30040         characters.
30042         * org.el (org-self-insert-cluster-for-undo): New option.
30043         (org-self-insert-command): Cluster undo for 20 characters.
30044         (org-self-insert-command-undo-counter): New variable.
30046 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
30048         * org-exp.el (org-export-as-html): Fix problem with closing colone
30049         example.
30051 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
30053         * org-latex.el (org-export-as-latex)
30054         (org-export-latex-first-lines): Avoid modification flag when
30055         adding or removing text properties.
30056         (org-export-latex-fontify): Catch error when org-emph-alist has
30057         entries that are not defined for LaTeX export.
30059         * org-export-latex.el: Rename to org-latex.el.
30061         * org-latex.el: Rename from org-export-latex.el.
30063         * org.el (orgstruct++-mode): New function.
30064         (turn-on-orgstruct++): Call `orgstruct++-mode'.
30065         (org-context-p): Allow detecting item context after the first line
30066         of an item.
30067         (orgstruct-make-binding): Detect if item-body context should be
30068         seen.
30069         (orgstruct-is-++): New variable.
30070         (org-add-planning-info): Catch the case when there is no planning
30071         info yet and the call does not want to add anything, only maybe
30072         tries to remove something.
30073         (org-special-ctrl-a/e): All value to be a cons cell with separate
30074         settings for `C-a' and `C-e'.
30075         (org-beginning-of-line, org-end-of-line): Honor separate values
30076         for `C-a' and `C-e'.
30078 2009-08-06  Carsten Dominik  <carsten.dominik@gmail.com>
30080         * org.el (org-reload): New command.
30082 2009-06-05  Tassilo Horn  <tassilo@member.fsf.org>
30084         * org-gnus.el (org-gnus-store-link): Fix bug where
30085         org-gnus-store-link used wrong subject when called in an article
30086         buffer.  Patch provided by fengli AT gmail DOT com.
30088 2009-03-13  D. Goel  <deego3@gmail.com>
30090         * org-bbdb.el: When calling (multiple-value-bind/setq .. ls)
30091         replace ls by (values-list ls).
30093 2009-02-20  Carsten Dominik  <dominik@science.uva.nl>
30095         * org-remember.el (org-remember-apply-template): Turn off ido for
30096         this completion.
30098         * org.el (org-priority): Also find invisible headings, for remote
30099         editing.
30100         (org-completing-read-no-ido): New function.
30101         (org-make-tags-matcher, org-set-property): Turn off ido for this completion.
30103         * org-colview.el (org-columns-edit-value): No special treatment of
30104         prefix arg.
30106 2009-02-19  Carsten Dominik  <dominik@science.uva.nl>
30108         * org.el (org-block-todo-from-children-or-siblings):
30109         Use `org-up-heading-all' so that this will work correctly with hidden
30110         property drawers and entries.
30111         (org-end-of-line, org-beginning-of-line): Make prefix arg work, by
30112         falling back to normal, default command.
30113         (org-get-location): Temporarily turn off special behavior.
30115 2009-02-13  Glenn Morris  <rgm@gnu.org>
30117         * org-rmail.el (rmail-show-message): Restore argument list to the
30118         declaration now that this functions behaves in Emacs 23 as in 22.
30120 2009-02-12  Glenn Morris  <rgm@gnu.org>
30122         * org-footnote.el (org-footnote-at-definition-p): Fix doc typo.
30124 2009-02-12  Joachim Reiter  <Reiter.Joachim@web.de>  (tiny change)
30126         * org-footnote.el (org-footnote-action): Fix doc typo.
30128 2009-02-06  Carsten Dominik  <dominik@science.uva.nl>
30130         * org-exp.el (org-export-preprocess-string): Fix bug with skipping
30131         text before first headline.
30132         (org-export-remove-or-extract-drawers): Fix regular expression for
30133         extracting drawers.
30135         * org.el (org-format-latex): Stop LaTeX fragment processing in
30136         protected examples.
30138 2009-02-05  Glenn Morris  <rgm@gnu.org>
30140         * org-rmail.el (rmail-show-message): Update declaration.
30141         (rmail-buffer, rmail-view-buffer): Declare.
30142         (org-rmail-store-link, org-rmail-follow-link): Handle mbox Rmail.
30144 2009-02-04  Carsten Dominik  <dominik@science.uva.nl>
30146         * org.el (org-return-follows-link): Revert setting
30147         `org-return-follows-link' to t by default.
30149 2009-02-02  Carsten Dominik  <dominik@science.uva.nl>
30151         * org.el (org-cycle-global-at-bob): Fix typo.
30153         * org-jsinfo.el (org-infojs-handle-options): Fix typo in comment.
30155 2009-02-02  Carsten Dominik  <carsten.dominik@gmail.com>
30157         * org.el (org-mode): Make dependence stuff work more reliably.
30158         (org-update-parent-todo-statistics): Fix bug with updating
30159         statistics cookie.
30160         (org-yank-adjusted-subtrees, org-return-follows-link)
30161         (org-use-fast-todo-selection, org-tags-column): New default
30162         setting for variables.
30164         * org-export-latex.el (org-export-latex-emphasis-alist): Use = and
30165         ~ as verbatim delimiters, to avoid table bug.
30166         (org-export-latex-classes): Remove the a4paper option from the
30167         default styles.
30169         * org-exp.el (org-export-html-format-image): New argument
30170         PAR-OPEN, to fix XHTM validation bug.
30171         (org-export-as-html): Pass par-open to
30172         `org-export-html-format-image'.
30173         (org-export-html-footnotes-section): Use a more consistent id for
30174         footnotes.
30176         * org-agenda.el (org-agenda-sorting-strategy)
30177         (org-agenda-tags-column): New default setting for variables, based
30178         on a poll what typical uses use.
30179         (org-agenda-dim-blocked-tasks): Keep dimming blocked entries from
30180         setting the blocked tag.
30182 2009-01-31  Carsten Dominik  <dominik@science.uva.nl>
30184         * org-agenda.el (org-agenda-dim-blocked-tasks): No tagging when
30185         only checking for blocks.
30187         * org-exp.el (org-export-html-footnotes-section): Make the div id
30188         consistent.
30190         * org-export-latex.el (org-export-latex-classes):
30191         Remove paper size option from LaTeX classes.
30193 2009-01-31  Carsten Dominik  <carsten.dominik@gmail.com>
30195         * org.el (org-enforce-todo-checkbox-dependencies): New option.
30196         (org-block-todo-from-checkboxes): New function.
30197         (org-todo): Make triple prefix arg circumvent blocking.
30199 2009-01-30  Glenn Morris  <rgm@gnu.org>
30201         * org-list.el (org-empty-line-terminates-plain-lists)
30202         (org-toggle-checkbox): Doc fixes.
30204         * org-table.el (org-table-clean-before-export): Fix declaration.
30206 2009-01-30  Carsten Dominik  <carsten.dominik@gmail.com>
30208         * org-timer.el (org-timer): Provide the timer feature.
30210         * org.el (org-require-autoloaded-modules): Add a few more files to
30211         the list of autoloaded modules.
30213         * org-agenda.el (org-agenda-todo): Pass ARG to `org-todo'.
30215         * org-exp.el (org-export-remove-or-extract-drawers): Only remove
30216         drawers that are unprotected.
30217         (org-export-html-format-image): Make sure inlined LaTeX fragment
30218         images remain inlined.
30220         * org.el (org-toggle-ordered-property): New function.
30221         (org-mode-map): Add a key for `org-toggle-ordered-property'.
30222         (org-org-menu): Add menu entries for TODO dependencies.
30224         * org.el (org-default-properties): Add ORDERED to the default
30225         properties, to get completion support for it.
30227         * org-list.el (org-update-checkbox-count): Update more than one cookie.
30229         * org.el (org-update-parent-todo-statistics): Update more than one
30230         cookie.
30232 2009-01-28  Carsten Dominik  <carsten.dominik@gmail.com>
30234         * org-agenda.el (org-agenda-get-todos): Start search from correct
30235         position.
30237         * org.el (org-fast-todo-selection): Make sure TODO selection does
30238         not change buffer position.
30240         * org-list.el (org-toggle-checkbox): Implement adding or removing
30241         checkboxes from line or region when called with a prefix
30242         argument.
30244         * org-rmail.el (org-rmail-store-link): Protect the call to
30245         `rmail-narrow-to-non-pruned-header'.
30247         * org-clock.el (org-clock-special-range): Fix week display in
30248         clock tables.
30250         * org-exp.el (org-get-current-options): Fix bug when in indirect
30251         buffer.
30253         * org-agenda.el (org-agenda-dim-blocked-tasks): New option.
30254         (org-finalize-agenda): Call `org-agenda-dim-blocked-tasks'.
30255         (org-agenda-dim-blocked-tasks): New function.
30257         * org.el (org-enforce-todo-dependencies): New option.
30258         (org-block-todo-from-children-or-siblings): New function.
30260         * org-faces.el (org-agenda-dimmed-todo-face): New face.
30262 2009-01-27  Carsten Dominik  <carsten.dominik@gmail.com>
30264         * org.el (org-todo): Return correct state type even if the blocker
30265         throws an error.
30266         (org-modifier-cursor-error): Rename from
30267         `org-shiftcursor-error'.
30268         (org-shiftmetaleft, org-shiftmetaright, org-shiftmetaup)
30269         (org-shiftmetadown): Call `org-modifier-cursor-error'.
30271         * org-agenda.el (org-agenda-todo): Call `org-todo' interactively,
30272         to get real errors from the blocker hook.
30274         * org.el (org-shiftselect-error, org-call-for-shift-select):
30275         New functions.
30276         (org-set-visibility-according-to-property): Turn off the setting
30277         of `org-show-entry-below', to avoid overruling a FOLDED visibility
30278         property.
30280         * org.el (org-support-shift-select): New option.
30281         (org-shiftup, org-shiftdown, org-shiftright, org-shiftleft)
30282         (org-shiftcontrolright, org-shiftcontrolleft): Support for shift
30283         selection outside contexts.
30285         * org-list.el (org-at-item-bullet-p): New function.
30287         * org-jsinfo.el (org-infojs-handle-options): Remove unnecessary
30288         variables.
30290         * org-footnote.el (org-footnote-normalize): Remove unnecessary
30291         variable.
30292         (org-insert-footnote-reference-near-definition):
30293         Remove unnecessary let form.
30295 2009-01-26  Carsten Dominik  <dominik@science.uva.nl>
30297         * org-export-latex.el (org-export-as-latex):
30298         Call `org-export-latex-first-lines' with OPT-PLIST as a parameter.
30299         (org-export-latex-first-lines): New parameter OPT-PLIST.
30301         * org.el (org-yank): Tell `delete-selection-mode' about
30302         `org-yank'.
30304         * org-faces.el (org-clock-overlay): Fix face definition.
30306         * org-export-latex.el (org-export-latex-first-lines):
30307         Pass timestamp and footnote parameters to the preprocessor.
30309         * org-exp.el (org-export-remove-timestamps): Do not remove time
30310         stamps inside tables.
30312 2009-01-25  Carsten Dominik  <carsten.dominik@gmail.com>
30314         * org-exp.el (org-export-as-html): Turn \par into a paragraph.
30316         * org.el (org-agenda-tags-todo-honor-ignore-options):
30317         Declare variable.
30319         * org-table.el (org-table-insert-hline): Fix typo in function call
30320         to `backward-char'.
30322         * org-exp.el (org-export-as-html): Remove the initial space from
30323         colon examples.
30325         * org.el (org-scan-tags):
30326         Call `org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item'.
30328         * org-agenda.el (org-agenda-todo-list, org-agenda-match-view):
30329         New customization groups.
30330         (org-agenda-tags-todo-honor-ignore-options): New option.
30331         (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item):
30332         New function.
30333         (org-agenda-get-todos):
30334         Use `org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item'.
30336 2009-01-25  Carsten Dominik  <carsten.dominik@gmail.com>
30338         * org-exp.el (org-export-format-source-code-or-example):
30339         Escape HTML characters also in examples that anre not treated with
30340         htmlize.  Also, just switch to EXAMPLE processing if we do not
30341         have a good version of htmlize.
30343         * org-rmail.el: Fix copyright notice.
30345         * org.el (org-activate-footnote-links): Improve footnote link
30346         highlighting.
30348         * org-footnote.el (org-footnote-normalize): Fix finding the end of
30349         a footnote definition at the end of the file.
30351         * org-table.el (org-table-get-specials): Add an imagined hline at
30352         the end of the table.  This can be useful for references that want
30353         to go to the end of the table.  Also fix bug when computing last
30354         row constants, in tables that do not start right at the right
30355         margin.
30356         (org-table-eval-formula): Match and replace remove references.
30357         (org-table-formula-substitute-names): Make sure that names inside
30358         a "remote" call are left alone, the will be replaced later when
30359         the remote call is handled.
30360         (org-table-convert-refs-to-rc): Do not convert things that might
30361         look like a reference, but are really part of an ID or namei n a
30362         remote reference.
30363         (org-table-get-remote-range): New function.
30365 2009-01-25  Carsten Dominik  <carsten.dominik@gmail.com>
30367         * org-faces.el (org-clock-overlay): Fix bug in face definition.
30369         * org-clock.el (org-clock-put-overlay): Use new face instead of
30370         `secondary-selection'.
30372         * org-faces.el (org-clock-overlay): New face.
30374 2009-01-25  Carsten Dominik  <carsten.dominik@gmail.com>
30376         * org-exp.el (org-get-current-options): Include the option for
30377         publishing time stamps.
30379         * org.el (org-toggle-heading): Rename from
30380         `org-toggel-region-headings'.
30381         No longer needs a region defined, but will use it if there is one.
30382         (org-ctrl-c-star): Simplify, relying more on the internal
30383         workings of `org-toggle-heading'.
30384         (org-toggle-item): Rename from `org-toggle-region-items'.
30385         No longer needs a region defined, but will use it if there is one.
30386         (org-ctrl-c-minus): Simplify, relying more on the inernal
30387         workings of `org-toggle-item'.
30389         * org-export-latex.el (org-export-latex-preprocess): Fix bug in
30390         environment detection.  Also, do real changes only in unprotected
30391         places.
30393 2009-01-25  Carsten Dominik  <carsten.dominik@gmail.com>
30395         * org-export-latex.el (org-export-latex-quotation-marks):
30396         Use `org-if-unprotected-1'.
30397         (org-export-latex-set-initial-vars): Check for class definition in
30398         property.
30400         * org-macs.el (org-if-unprotected-1): New macro.
30402 2009-01-25  Carsten Dominik  <carsten.dominik@gmail.com>
30404         * org-compat.el (org-count-lines): New function.
30406         * org-exp.el (org-export-format-source-code-or-example):
30407         Handle switches related to text areas.
30409         * org.el (org-activate-footnote-links): Don't allow match inside a
30410         link.
30412         * org-footnote.el (org-footnote-re): Don't allow match inside a link.
30414         * org-export-latex.el (org-export-latex-links): Keep a relative
30415         path relative also after export.
30417         * org-exp.el (org-export-html-scripts): Fix HTML snippet.
30419         * org.el (org-make-tags-matcher): Never use IDO for completing the
30420         tags matcher match string.
30421         (org-completing-read): Also remove the special biding for "?".
30423         * org-attach.el (org-attach-allow-inheritance): New option.
30424         (org-attach-inherited): New variable.
30425         (org-attach-dir): Handle properties related to the attachment
30426         directory.
30427         (org-attach-check-absolute-path): New function.
30428         (org-attach-set-directory, org-attach-set-inherit): New commands.
30429         (org-attach): Accommodate the new commands in the dispatcher.
30431 2009-01-25  Carsten Dominik  <carsten.dominik@gmail.com>
30433         * org-compat.el (org-fit-window-to-buffer): Fix bug with using
30434         `window-full-width-p'.
30436         * org-exp.el (org-export-as-html): Only check for images files
30437         that really can be inlined.
30439         * org.el (org-image-file-name-regexp, org-file-image-p): Allow the
30440         list of extensions to be a parameter.
30442         * org-exp.el (org-export-html-inline-image-extensions):
30443         New variable.
30445         * org-agenda.el (org-prepare-agenda):
30446         Use `org-agenda-block-separator'.
30447         (org-agenda-block-separator): New option.
30449 2009-01-25  Carsten Dominik  <carsten.dominik@gmail.com>
30451         * org-export-latex.el (org-export-latex-tables):
30452         Call `org-table-clean-before-export' with the new optional argument.
30454         * org-exp.el (org-table-clean-before-export): New optional
30455         parameter MAYBE-QUOTED, allows for quoted characters like \# in
30456         first column.
30458 2009-01-25  Carsten Dominik  <carsten.dominik@gmail.com>
30460         * org-plot.el (org-plot/gnuplot): Fix text-ind parameter for
30461         histograms.
30463         * org-colview.el (org-colview-construct-allowed-dates):
30464         Better error catching when a date/time property does not have allowed
30465         values defined.
30467 2009-01-25  Carsten Dominik  <carsten.dominik@gmail.com>
30469         * org.el (org-map-entries): Restore point and restriction after
30470         `org-map-entries'.
30472 2009-01-25  Carsten Dominik  <carsten.dominik@gmail.com>
30474         * org.el (org-time=, org-time<, org-time<=, org-time>)
30475         (org-time>=, org-time<>): Make sure both values are dates.
30477 2009-01-25  Carsten Dominik  <carsten.dominik@gmail.com>
30479         * org-archive.el (org-extract-archive-heading): Allow %s for file
30480         name also in achive location heading.
30482 2009-01-25  Carsten Dominik  <carsten.dominik@gmail.com>
30484         * org-archive.el (org-add-archive-files): Uniquify the list before
30485         returning it.
30487 2009-01-25  Carsten Dominik  <carsten.dominik@gmail.com>
30489         * org-compat.el (org-fit-window-to-buffer):
30490         Use `window-full-width-p'.
30492         * org-export-latex.el (org-export-latex-fixed-width): Enforce the
30493         space after the colon in short examples.
30495         * org-exp.el (org-export-protect-colon-examples): Rewritten, to
30496         enforce a space after the colon.  However, we also allow lines
30497         that are *only* a colon.
30498         (org-export-as-html): Enforce the space after the colon in short
30499         examples.
30500         (org-export-preprocess-string): Do the colon example protection
30501         earlier.
30502         (org-export-remove-timestamps): Do not check for protection at the
30503         end of the line.
30505 2009-01-25  Carsten Dominik  <carsten.dominik@gmail.com>
30507         * org.el (org-format-latex-options): Add new matcher for single
30508         letters between dollars.
30509         (org-get-header): Function removed.
30510         (org-heading-components): New function.
30512         * org-exp.el (org-export-define-heading-targets): Record ID's also
30513         as alternative targets.
30514         (org-export-as-html): Interpret "id:" links to other files by
30515         preserving the relative path.
30517         * org-jsinfo.el (org-infojs-handle-options): Catch the case if v
30518         is nil.
30520         * org-exp.el (org-export-normalize-links): Protect the main link,
30521         to avoid special character processing.
30523         * org-export-latex.el (org-export-latex-special-keyword-regexp):
30524         New variable.
30525         (org-export-latex-special-string-regexps): Variable removed.
30526         (org-export-latex-keywords): Use the new regexp.
30528         * org-exp.el (org-export-handle-include-files): Fetch switches and
30529         put them into the BEGIN statement.
30531         * org-timer.el (org-timer-mode-line-string): New variable.
30533         * org-clock.el (org-clock-mode-line-map): Rename from
30534         `org-clock-mode-map'.
30535         (org-clock-mode-line-timer): Rename from `org-mode-line-timer'.
30536         (org-clock-update-mode-line): Rename from `org-update-mode-line'.
30537         (org-clock-put-overlay): Rename from `org-put-clock-overlay'.
30538         (org-clock-remove-overlays): Rename from
30539         `org-remove-clock-overlays'.
30541         * org-timer.el (org-timer-pause-or-continue): Implement stopping
30542         and mode line display.
30543         (org-timer-stop): New command.
30544         (org-timer-seconds): Return correct time when timer is paused.
30545         (org-timer-mode-line-timer): New variable.
30546         (org-timer-set-mode-line, org-timer-update-mode-line):
30547         New functions.
30549         * org.el (org-insert-heading): Handle new value `auto' for
30550         `org-blank-before-new-entry'.
30551         (org-org-menu): Add new items for timer functions.
30553         * org-list.el (org-insert-item): Handle new value `auto' for
30554         `org-blank-before-new-entry'.
30556         * org.el (org-blank-before-new-entry): New value `auto', made
30557         default.
30559 2009-01-25  Carsten Dominik  <carsten.dominik@gmail.com>
30561         * org-exp.el (org-export-normalize-links): If the link is also
30562         used as the description, protect the description.
30564 2009-01-25  Carsten Dominik  <carsten.dominik@gmail.com>
30566         * org.el (org-closest-date): Fix bug with yearly repeats, in
30567         combination with preference of the past as it is used for deadline
30568         and scheduling search.
30570         * org-exp.el (org-html-handle-time-stamps): No longer check for
30571         the `org-export-with-timestamps' option, because the preprocesser
30572         has taken care of this already.
30574         * org.el (org-entry-properties): Catch the case when this is
30575         called in a non-org-mode file.
30577         * org-export-latex.el (org-export-latex-remove-from-headlines):
30578         Variable made obsolete, also LaTeX export now uses the standard
30579         variables.
30580         (org-export-as-latex): Add the timestamps parameter to the
30581         preprocessor parameter list.
30582         (org-export-latex-content): Export the remaining keywords without
30583         considering to remove them.
30584         (org-export-latex-keywords-maybe): Make the REMOVE-LIST optional.
30585         Use bold font instead of tt font for the keywords.
30586         (org-export-latex-fontify-headline): Format headlines, assuming
30587         that all keywords still present should be published.
30588         (org-export-latex-keywords): Remove argument TIMESTAMPS and just
30589         publish what ever remains of the time stamps.
30590         (org-export-latex-list-parameters): New option.
30591         (org-export-latex-lists): Pass additional parameters to the list
30592         converter.
30594         * org-exp.el (org-export-preprocess-string): Remove clock lines
30595         and timestamps already in the preprocesor.
30596         (org-export-remove-timestamps, org-export-remove-clock-lines):
30597         New functions.
30598         (org-export-as-ascii, org-export-as-html): Add the timestamps
30599         parameter to the preprocessor parameter list.
30601         * org-list.el (org-list-parse-list): Parse for checkboxes.
30602         (org-list-to-generic): Introduce and handle new parameters :cbon
30603         and :cboff.
30604         (org-list-to-latex, org-list-to-html, org-list-to-texinfo):
30605         Add optional parameter PARAMS.
30607         * org-export-latex.el (org-export-latex-special-chars):
30608         Fix problems with interpreting dollar signs.
30609         (org-inside-latex-math-p): New function.
30610         (org-export-latex-preprocess): Protect all the math fragments.
30612         * org.el (org-latex-regexps): Allow a dash after a dollar.
30614         * org-w3m.el (org-w3m-copy-for-org-mode): Always deactivate the
30615         mark after copying.
30617         * org-agenda.el (org-run-agenda-series): Have series options set
30618         when finalizing the agenda.
30620         * org-exp.el (org-export-format-source-code-or-example):
30621         Protect the converted examples.
30623         * org.el (org-set-regexps-and-options): Fix the regexp
30624         `org-complex-heading-regexp'.
30626 2009-01-25  Carsten Dominik  <carsten.dominik@gmail.com>
30628         * org.el (org-edit-src-get-label-format): New function.
30629         (org-coderef-label-format): New option.
30630         (org-edit-src-code, org-edit-src-find-region-and-lang): Parse for
30631         a label format specification and make sure it is used in the edit
30632         buffer.
30633         (org-edit-src-get-label-format): New function.
30634         (org-store-link): Handle new coderef formats.
30635         (org-link-search): Handle new coderef formats.
30637         * org-footnote.el (org-footnote-create-definition)
30638         (org-footnote-goto-local-insertion-point): Make footnote insertion
30639         work correctly when the "Footnotes" headline is the last line in
30640         the buffer.
30642         * org.el (org-goto-marker-or-bmk): Expose context after jumping to
30643         the location.
30645 2009-01-25  Carsten Dominik  <carsten.dominik@gmail.com>
30647         * org-w3m.el (org-w3m): New customization group.
30648         (org-w3m-deactivate-mark): New option.
30649         (org-w3m-copy-for-org-mode): Deactivate region, unless the user
30650         option say not to.
30652 2009-01-25  Carsten Dominik  <carsten.dominik@gmail.com>
30654         * org.el (org-set-font-lock-defaults): Trigger footnote
30655         fontification.
30656         (org-activate-footnote-links): New function.
30657         (org-activate-links): New entry `footnote'.
30659         * org-faces.el (org-footnote): New face.
30661 2009-01-25  Carsten Dominik  <carsten.dominik@gmail.com>
30663         * org-macs.el (org-re): Handle the [:word:] class.
30665         * org-exp.el (org-export-preprocess-string):
30666         Call `org-export-protect-colon-examples'.
30667         (org-export-protect-colon-examples): Rename from
30668         `org-export-protect-examples', and scope limited to lines starting
30669         with a colon.
30671 2009-01-25  Carsten Dominik  <carsten.dominik@gmail.com>
30673         * org-exp.el (org-export-preprocess-string): Move the preprocess
30674         hook to after turning on Org-mode.
30675         (org-export-preprocess-after-include-files-hook)
30676         (org-export-preprocess-after-tree-selection-hook)
30677         (org-export-preprocess-before-backend-specifics-hook)
30678         (org-export-preprocess-final-hook): New hooks.
30679         (org-export-preprocess-string): Run the new hooks.
30681         * org.el (org-ctrl-c-minus): Fix indentation for new items.
30683         * org-footnote.el: New file.
30685         * org.el (org-footnote): Require footnote code.
30686         (org-startup-options): Add new footnote options.
30687         (org-mode-map): New keybindig for footnotes.
30688         (org-ctrl-c-ctrl-c): Add function at footnotes.
30689         (org-org-menu): New menu entries for footnotes.
30691         * org-export-latex.el (org-export-as-latex): Pass footnote
30692         variable to preprocessor.
30693         (org-export-latex-preprocess): Treat multiple references to a
30694         footnote.
30696         * org-exp.el (org-export-preprocess-string):
30697         Call `org-footnote-normalize'.
30698         (org-export-as-ascii, org-export-as-html): Pass footnote variable
30699         to preprocessor.
30700         (org-export-as-html): Treat multiple references to a footnote.
30702 2009-01-25  Carsten Dominik  <carsten.dominik@gmail.com>
30704         * org-export-latex.el (org-export-latex-links): Handle coderef
30705         links.
30707         * org.el (org-bracket-link-analytic-regexp++): New variable.
30708         (org-make-link-regexps):
30709         Initialize `org-bracket-link-analytic-regexp++'.
30710         (org-store-link): Implement special case in edit-src buffer.
30711         (org-insert-link): No use of ide to insert stored links.
30712         (org-link-search): Implement special case for coderefs.
30714         * org-exp.el (org-export-html-scripts): New constant.
30715         (org-export-html-style-default): Add a new style for highlighted
30716         code.
30717         (org-export-code-refs): New variable.
30718         (org-export-preprocess-string): Initialize `org-export-code-refs'.
30719         Call `org-export-replace-src-segments-and-examples'
30720         No longer call `org-export-protect-examples'.
30721         (org-export-target-internal-links): Take care of coderef targets.
30722         (org-export-last-code-line-counter-value): New variable.
30723         (org-export-replace-src-segments-and-examples): Rename from
30724         `org-export-replace-src-segments', and modified.
30725         (org-export-format-source-code-or-example): Rename from
30726         `org-export-format-source-code'.
30727         (org-export-number-lines): New function.
30728         (org-export-as-ascii, org-export-as-html): Handle coderef links.
30730 2009-01-23  Glenn Morris  <rgm@gnu.org>
30732         * org-rmail.el (rmail-narrow-to-non-pruned-header):
30733         Remove declaration of deleted function.
30735 2009-01-16  Glenn Morris  <rgm@gnu.org>
30737         * org-mouse.el (org-mouse-show-context-menu):
30738         Use mouse-menu-major-mode-map, if defined, rather than the obsolete
30739         mouse-major-mode-menu.
30741 2008-12-23  Carsten Dominik  <dominik@science.uva.nl>
30743         * org-remember.el (org-remember-handler): Safer way to get a new
30744         buffer accessing the target file.
30746         * org.el (org-refile-get-location): Handle case of current buffer
30747         not having a file associated with it.
30749 2008-12-22  Carsten Dominik  <dominik@science.uva.nl>
30751         * org-table.el (org-table-get-formula): Only ask to overwrite
30752         field formula if there really is one.
30754 2008-12-21  Carsten Dominik  <dominik@science.uva.nl>
30756         * org-export-latex.el (org-export-latex-make-header): Double the
30757         commenting % in the time stamp format.
30758         (org-export-latex-special-chars): Handle case where there is no
30759         match group 3.
30761 2008-12-20  Carsten Dominik  <carsten.dominik@gmail.com>
30763         * org.el (org-get-refile-targets, org-refile-get-location):
30764         Use expanded file name to improve comparison.
30766 2008-12-20  Carsten Dominik  <carsten.dominik@gmail.com>
30768         * org.el (org-scan-tags): Rescan for tags, to get the correct
30769         upcase/downcase stuff.  This slows things down for now, but it
30770         works.
30771         (org-mode): Make sure the tag-faces regexp is initialized.
30773         * org-export-latex.el (org-export-latex-links): Fix bug with
30774         undefined label.
30776         * org-table.el (org-table-get-specials):
30777         Set `org-table-current-last-data-line'.
30778         (org-table-current-last-data-line): New variable.
30779         (org-table-insert-column, org-table-delete-column)
30780         (org-table-move-column, org-table-fix-formulas):
30781         Call `org-table-fix-formulas' a second time to fix the $LR references.
30782         (org-table-get-specials): Add the $LR references to the tables.
30783         (org-table-get-formula): Do not offer last-row names as LHS of
30784         formulas.
30786         * org.el (org-store-link): Capture link description from
30787         `org-id-store-link'.
30789         * org-exp.el (org-export-html-format-image): Add the / to the end
30790         of the <img> tag.
30791         (org-export-format-source-code): Surround example by empty lines,
30792         to make sure it will not be inside a paragraph.
30794         * org.el (org-ido-switchb): New function.
30796 2008-12-20  Carsten Dominik  <carsten.dominik@gmail.com>
30798         * org-agenda.el (org-agenda-show): New prefix argument
30799         FULL-ENTRY.
30801         * org.el (org-sort-entries-or-items): Add a COMPARE-FUNC
30802         argument.
30804 2008-12-20  Glenn Morris  <rgm@gnu.org>
30806         * org.el (org-org-menu): Fix some more menu entries.
30808 2008-12-18  Carsten Dominik  <dominik@science.uva.nl>
30810         * org-table.el (org-table-get-specials): Revert introduction of @0
30811         as reference of the last table row, because of conflicts.
30813         * org-agenda.el (org-agenda-change-all-lines): Remove FORCE-TAGS
30814         argument, get the current tags directly.
30815         (org-agenda-set-tags): Leave getting current tags to
30816         `org-agenda-change-all-lines'.
30818 2008-12-17  Carsten Dominik  <dominik@science.uva.nl>
30820         * org.el (org-org-menu): Do not quote the set-tags command.
30822 2008-12-17  Carsten Dominik  <carsten.dominik@gmail.com>
30824         * Fix typos in comments and docstrings throughout Org-mode.
30826         * org.el (org-get-outline-path): Fix bug if level is not given.
30828         * org-agenda.el (org-finalize-agenda): Fix typo with variable name.
30830 2008-12-16  Carsten Dominik  <carsten.dominik@gmail.com>
30832         * org.el (org-refile): Avoid refiling to within the region to be
30833         refiled.
30835         * org-export-latex.el (org-export-latex-special-chars):
30836         Replace special characters also in tables.
30838         * org-agenda.el (org-agenda-change-all-lines): New argument
30839         FORCE-TAGS.
30840         (org-agenda-set-tags): Get the new tags and pass them to
30841         `org-format-agenda-item'.
30843 2008-12-16  Carsten Dominik  <carsten.dominik@gmail.com>
30845         * org-export-latex.el (org-export-latex-classes): Add longable as
30846         a default package to all classes.
30847         (org-export-latex-tables): Handle the longtable attribute and the
30848         align attribute.
30850         * org-table.el (orgtbl-to-generic): Handle tables that start with
30851         a hline.
30853         * org-export-latex.el (org-export-latex-emphasis-alist): Switch to
30854         \verb for colde-like snippets.
30855         (org-export-as-latex): Fix issues with region export.
30857         * org.el (org-up-heading-safe): Speed up function by using a
30858         direct regexp search.
30859         (org-olpa): New variable.
30860         (org-get-outline-path): Speed-up path constructions in cases where
30861         this is possible because the entire hierarchy is scanned anyway.
30862         (org-refile-get-location): Don't compare the truenames of files,
30863         this is too slow.
30864         (org-goto-max-level): New option.
30865         (org-goto): Use `org-goto-max-level'.
30867 2008-12-16  Tassilo Horn  <tassilo@member.fsf.org>
30869         * org-gnus.el (org-gnus-article-link, org-gnus-article-link):
30870         Strip angle brackets from message-ids in the former and don't do
30871         it in the latter.
30872         (org-gnus-follow-link): Open summary reliable, even if the last
30873         messages were deleted, and handle empty groups, too.
30875 2008-12-16  Carsten Dominik  <carsten.dominik@gmail.com>
30877         * org-export-latex.el (org-export-latex-emphasis-alist): Use \verb
30878         instead of \texttt for the =...= and ~===~ emphasis environments.
30879         (org-export-as-latex): Remove any old :org-license-to-kill text
30880         properties.
30881         (org-export-as-latex): Pass RBEG to `org-export-latex-first-lines'.
30882         (org-export-latex-make-header): Add some hard space after the
30883         table of contents.
30884         (org-export-latex-first-lines): Accept RBEG argument.
30885         Mark exported text so that it will be excuded in further steps.
30887         * org-table.el (org-table-get-specials): Make @0 reference the
30888         last line in a table.
30889         (org-table-recalculate): Improve docstring.
30891 2008-12-16  Carsten Dominik  <carsten.dominik@gmail.com>
30893         * org.el (org-log-done): Fix docstring.
30895 2008-12-16  Carsten Dominik  <carsten.dominik@gmail.com>
30897         * org-exp.el (org-export-html-format-image): Fix bugs.
30899         * org-export-latex.el (org-export-latex-tables)
30900         (org-export-latex-links): Implement attribute, label, and caption
30901         handling.
30903         * org-exp.el (org-export-html-style-default): Add style
30904         definitions for the figure div.
30905         (org-export-preprocess-string, org-export-as-html):
30906         Implement attribute, label, and caption handling.
30907         (org-export-attach-captions-and-attributes): New function.
30908         (org-export-html-format-image): New function.
30909         (org-format-org-table-html): Implement attribute, label, and
30910         caption handling.
30912         * org.el (org-find-text-property-in-string): New function.
30913         (org-extract-attributes): Use the property org-attr instead of
30914         org-attrobutes, because this property is now set with the #+ATTR
30915         lines.
30917 2008-12-16  Carsten Dominik  <carsten.dominik@gmail.com>
30919         * org-compat.el (org-substring-no-properties): Fix for XEmacs, for
30920         the case that FROM is nil.
30922         * org.el (org-before-first-heading-p): New function.
30924 2008-12-16  Carsten Dominik  <carsten.dominik@gmail.com>
30926         * org-exp.el (org-export-as-html): Do not add a space before
30927         enforces line breaks.
30928         (org-export-as-html): Close paragraph before blockquote and verse
30929         tags.
30931 2008-12-16  Carsten Dominik  <carsten.dominik@gmail.com>
30933         * org-id.el (org-id-locations-file): Wrap file name with
30934         `convert-standard-filename'.
30935         (org-id-files): New variable.
30936         (org-id-use-hash): New option.
30937         (org-id-update-id-locations): Also search in all files current
30938         listed in `org-id-files'.  Convert the resulting alist to a hash
30939         if the user customation says so.
30940         (org-id-locations-save): Handle he case if `org-id-locations' is a
30941         hash.
30942         (org-id-locations-load): Convert the alist to a hash.
30943         (org-id-add-location): Handle the hast case.
30944         (kill-emacs-hook): Make sure id locations are saved when Emacs is
30945         exited.
30946         (org-id-hash-to-alist, org-id-alist-to-hash)
30947         (org-id-paste-tracker): New functions.
30949 2008-12-07  Carsten Dominik  <carsten.dominik@gmail.com>
30951         * org-agenda.el (org-agenda-goto-calendar): Remove duplicate let
30952         bindings of calendar variables.
30954         * org-table.el (org-table-find-row-type): Rename from
30955         `org-find-row-type'.
30956         (org-table-rewrite-old-row-references): Rename from
30957         `org-rewrite-old-row-references'.
30958         (org-table-shift-refpart): Rename from `org-shift-refpart'.
30959         (org-table-cleanup-narrow-column-properties): Rename from
30960         `org-cleanup-narrow-column-properties'.
30962 2008-12-07  Carsten Dominik  <carsten.dominik@gmail.com>
30964         * org-table.el (org-find-row-type): New arguments DESC and CLINE,
30965         for better error messages.
30966         (org-table-get-descriptor-line): Supply the new arguments to
30967         `org-find-row-type'.
30968         (org-table-error-on-row-ref-crossing-hline): New option.
30970         * org.el (org-target-link-regexp): Make buffer-local.
30971         (org-move-subtree-down): Fix bug with trees at beginning of
30972         buffer.
30974 2008-12-07  Carsten Dominik  <carsten.dominik@gmail.com>
30976         * org-faces.el (org-set-tag-faces): New function.
30977         (org-tags-special-faces-re): New variable.
30979         * org.el (org-font-lock-add-tag-faces, org-get-tag-face): New functions.
30981         * org-faces.el (org-tag-faces): New option.
30982         (org-tag): Mention `org-tag-faces' in the docstring.
30984 2008-12-07  Carsten Dominik  <carsten.dominik@gmail.com>
30986         * org-exp.el (org-export-html-style-default): Implement new
30987         quoting.
30989         * org-jsinfo.el (org-infojs-template): Implement new quoting.
30991         * org-w3m.el (w3m-minor-mode-hook): Also add the special copy
30992         command to the `w3m-minor-mode-map'.
30994         * org-archive.el (org-archive-to-archive-sibling):
30995         Protect `this-command' to avoid appending kills during archiving.
30997         * org-exp.el (org-export-with-priority): New variable.
30998         (org-export-add-options-to-plist): Use `org-export-plist-vars'
30999         instead of internal list of strings and properties.
31000         (org-print-icalendar-entries): Retrieve the location property with
31001         inheritance.
31003 2008-12-07  Carsten Dominik  <carsten.dominik@gmail.com>
31005         * org-exp.el (org-export-with-todo-keywords): New option.
31006         (org-export-plist-vars): Include also the keys for the #+OPTIONS
31007         line.
31008         (org-default-export-plist, org-export-add-options-to-plist)
31009         (org-export-as-ascii, org-export-as-html): Use the new structure
31010         of `org-export-plist-vars'.
31012         * org.el (org-map-entries): Return all values.
31014 2008-12-07  Carsten Dominik  <carsten.dominik@gmail.com>
31016         * org.el (org-matcher-time): Recognize more special values.
31018         * org-gnus.el (fboundp): Fix defvaralias for XEmacs.
31020 2008-12-07  Carsten Dominik  <carsten.dominik@gmail.com>
31022         * org.el (org-tags-exclude-from-inheritance): New option.
31023         (org-tag-inherit-p, org-remove-uniherited-tags):
31024         Respect `org-tags-exclude-from-inheritance'.
31026         * org-agenda.el (org-agenda-show-inherited-tags): New option.
31027         (org-format-agenda-item): Add inherited tags to the agenda line
31028         string, and make sure that properties are kept when downcasing the
31029         tags list.
31030         (org-agenda-add-inherited-tags): New function.
31031         (org-downcase-keep-props): New function.
31033         * org.el (org-scan-tags): Mark inherited tags with a text
31034         property.
31035         (org-get-tags-at): Mark inherited tags with a text property.
31036         (org-add-prop-inherited): New function.
31038         * org-agenda.el (org-agenda-add-inherited-tags): New function.
31039         (org-agenda-show-inherited-tags): New option.
31041 2008-12-07  Carsten Dominik  <carsten.dominik@gmail.com>
31043         * org.el (org-modules): Add org-w3m to the default modules.
31045         * org-table.el (orgtbl-self-insert-command): Make S-SPC work in
31046         orgtbl-mode.
31047         (orgtabl-create-or-convert-from-region): New command.
31049         * org-exp.el (org-export-as-ascii): Remove the handling of
31050         targets.
31051         (org-export-ascii-preprocess): Handle targets already in this
31052         function.
31054 2008-12-07  Carsten Dominik  <carsten.dominik@gmail.com>
31056         * org-timer.el (org-timer-start-time): Define this variable.
31057         (org-timer-item): Make argument optional.
31059         * org-list.el (org-insert-item): Automatically insert a timer item
31060         if the current list is a timer list.
31062         * org-timer.el: New file.
31064         * org-publish.el (org-publish-org-index): Only exclude the index
31065         file in the main directory from being added to the site-map.
31066         (org-publish-get-project-from-filename): If the current project is
31067         a component, start publishing from the parent project.
31069 2008-12-07  Carsten Dominik  <carsten.dominik@gmail.com>
31071         * org-table.el (orgtbl-ret): Fix RET at beginning-of-buffer.
31073         * org-publish.el (org-publish-org-index): Improve removal of
31074         temporary buffers.
31076 2008-11-24  Carsten Dominik  <carsten.dominik@gmail.com>
31078         * org-agenda.el (org-get-closed): Re-apply changes
31079         accidentially overwritten by last commit to Emacs.
31081         * org.el (org-outline-path-complete-in-steps): New option.
31082         (org-refile-get-location):
31083         Honor `org-outline-path-complete-in-steps'.
31084         (org-agenda-change-all-lines, org-tags-sparse-tree)
31085         (org-time-string-to-absolute, org-small-year-to-year)
31086         (org-link-escape): Re-apply changes accidentially overwritten
31087         by last commit to Emacs.
31089 2008-11-23  Carsten Dominik  <carsten.dominik@gmail.com>
31091         * org-clock.el (org-dblock-write:clocktable): Make sure the
31092         clocktable sees the first line.
31093         (org-clock-in): Warn if the clock cannot be resumed.
31095 2008-11-23  Carsten Dominik  <carsten.dominik@gmail.com>
31097         * org.el (org-open-at-point): Fix mixup about interactive and
31098         non-interactive elisp links.
31100 2008-11-23  Carsten Dominik  <carsten.dominik@gmail.com>
31102         * org-exp.el (org-export-preprocess-string): Allow one comment
31103         line before the first headline to always be included.  This is
31104         to not miss a commented target.
31106         * org-mouse.el (org-mouse-insert-item):
31107         Call `org-indent-to-column' instead of `indent-to', for XEmacs
31108         compatibility.
31110         * org.el (org-refile-targets): Fix customize definition so
31111         that it works also in XEmacs.
31112         (org-fixup-indentation): Call `org-indent-to-column' instead
31113         of `indent-to', for XEmacs compatibility.
31115 2008-11-23  Tokuya Kameshima  <kames@fa2.so-net.ne.jp>
31117         * org-mew.el (org-mew-store-link): Get the correct case folder
31118         for refiled messages.
31120 2008-11-23  Carsten Dominik  <carsten.dominik@gmail.com>
31122         * org-exp.el (org-export-as-ascii): Remove the "\\" forced
31123         line break indicators.
31125         * org.el (org-ido-completing-read): Remove the "i:" prefix for
31126         ido-completion propts.
31128 2008-11-23  Carsten Dominik  <carsten.dominik@gmail.com>
31130         * org-remember.el (org-remember-apply-template):
31131         Use `org-substring-no-properties'.
31133         * org-compat.el (org-substring-no-properties): New function.
31135         * org-remember.el (org-remember-apply-template):
31136         Use `org-substring-no-properties' for compatibility.
31138         * org-list.el (org-list-two-spaces-after-bullet-regexp):
31139         New option.
31140         (org-fix-bullet-type):
31141         Respect `org-list-two-spaces-after-bullet-regexp'.
31143         * org-clock.el (org-clock-load): Clean up the code.
31145         * org.el (org-adaptive-fill-function): Allow two spaces after
31146         "1." as a list bullet.
31148 2008-11-23  Carsten Dominik  <carsten.dominik@gmail.com>
31150         * org-clock.el (org-clock-save, org-clock-load): Check for
31151         live buffers, existing files, and buffer file names to ensure
31152         consistent information.
31153         (org-clock-persist): Make `clock' a special value of this
31154         variable, and improve docstring.
31156         * org-list.el (org-cycle-list-bullet, org-fix-bullet-type)
31157         (org-get-string-indentation): Adapt indentation when the bullet
31158         width changes.
31160 2008-11-23  Carsten Dominik  <carsten.dominik@gmail.com>
31162         * org-remember.el (org-remember-finalize): Make interactive.
31163         (org-remember-kill): New command.
31164         (org-remember-finish-immediately): Call `org-remember-finalize'
31165         directly.
31166         (org-remember-finalize): Make `org-remember-finalize' an interactive
31167         function.
31169 2008-11-23  Carsten Dominik  <carsten.dominik@gmail.com>
31171         * org-remember.el (org-remember-apply-template): No ido completion
31172         for free prompts in remember templates.
31173         (org-remember-before-finalize-hook): New hook.
31174         (org-remember-mode): New minor mode.
31175         (org-remember-apply-template): Turn on `org-remember-mode'.
31177         * org-remember.el (org-remember-apply-template): Fix the way how
31178         the list of allowed properties is retrieved from the target file.
31180         * org.el (org-insert-link): Improve file link matching.
31182 2008-11-23  Carsten Dominik  <carsten.dominik@gmail.com>
31184         * org-colview.el (org-columns-display-here): New argument
31185         DATELINE, to trigger using the new face.
31186         (org-agenda-colview-summarize): Call `org-columns-display-here'
31187         with the new argument.
31189         * org-faces.el (org-agenda-column-dateline): New face.
31191         * org-publish.el (org-publish-org-index): Use index-title at page
31192         title, not as section.
31194         * org-exp.el (org-export-html-format-desc): Respect the
31195         org-protect property.
31196         (org-export-as-html): Protect image specifiers that are in the
31197         description part of a link.
31199         * org.el (org-sort-entries-or-items, org-completing-read)
31200         (org-refile-get-location, org-olpath-completing-read, org-todo)
31201         (org-show-todo-tree, org-sparse-tree, org-make-tags-matcher)
31202         (org-set-tags, org-change-tag-in-region, org-fast-tag-selection)
31203         (org-set-property, org-delete-property)
31204         (org-delete-property-globally): Use `org-ido-completing-read'.
31206         * org-remember.el (org-remember-apply-template):
31207         Use `org-ido-completing-read'.
31209         * org-publish.el (org-publish): Use `org-ido-completing-read'.
31211         * org-colview.el (org-columns-edit-value, org-columns-new)
31212         (org-insert-columns-dblock): Use `org-ido-completing-read'.
31214         * org-attach.el (org-attach-delete-one, org-attach-open):
31215         Use `org-ido-completing-read'.
31217         * org-agenda.el (org-todo-list, org-agenda-filter-by-tag):
31218         Use `org-ido-completing-read'.
31220         * org.el (org-time-today): New function.
31221         (org-matcher-time): Use `org-time-today'.  Add special treatment
31222         for "<tomorrow>" and "<yesterday>".
31223         (org-ido-completing-read): New function.
31224         (org-completion-use-ido): New option.
31226         * org-exp.el (org-export-format-source-code): Fix bug in require
31227         htmlize code.
31228         (org-export-target-internal-links): Fix bug in search for text
31229         property.
31231 2008-11-23  Carsten Dominik  <carsten.dominik@gmail.com>
31233         * org-export-latex.el (org-export-latex-subcontent):
31234         Interpret target aliases as additional labels.
31236         * org-exp.el (org-export-target-aliases): New variable.
31237         (org-export-preprocess-string)
31238         (org-export-handle-invisible-targets): Fill the alias alist.
31239         (org-export-as-html): Remove the &nbsp; from the anchor, and also
31240         assign an id.
31241         (org-html-level-start): Insert the target aliases as additional
31242         anchors.
31244         * org.el (org-edit-fixed-width-region): Fix bug when starting a new
31245         picture area.
31247 2008-11-23  Carsten Dominik  <carsten.dominik@gmail.com>
31249         * org.el (org-open-at-mouse): Ensure correct link abbreviations
31250         when following a link with the mouse from the agenda.
31252         * org-exp.el (org-export-as-html): Avoid lone </div> when no
31253         headlines are created.
31255 2008-11-23  Carsten Dominik  <carsten.dominik@gmail.com>
31257         * org.el (org-link-translation-function): New option.
31258         (org-open-at-point): Call `org-link-translation-function' if
31259         non-nil.
31260         (org-translate-link): New function.
31261         (org-translate-link-from-planner): New function.
31262         (org-open-at-point): Allow interactive commands in elisp links.
31264         * org-exp.el (org-icalendar-cleanup-string): Restore the old
31265         iCalendar quoting.  The new one seems to caus problems with
31266         applications.
31268         * org.el (org-yank): Set `this-command' to `yank', so that
31269         `yank-pop' will work.
31271 2008-11-23  Carsten Dominik  <carsten.dominik@gmail.com>
31273         * org-exp.el (org-icalendar-cleanup-string): Improve RFC2455
31274         compliance as far as quoting is concerned.
31276         * org.el (org-link-expand-abbrev): Implement %h as an escape for a
31277         hexified version of the tag.
31279         * org-vm.el (org-vm-follow-link): Require `vm-search'.
31281         * org.el (org-up-heading-safe, org-forward-same-level):
31282         Always call `org-back-to-heading' instead of `outline-back-to-heading'.
31283         (org-back-to-heading): New wrapper around outline-back-to-heading,
31284         with a useful error message telling where the error happened.
31286         * org-list.el (org-update-checkbox-count): Always call
31287         `org-back-to-heading' instead of `outline-back-to-heading'.
31289         * org-exp.el (org-export-as-html): Make sure that each <img> tag
31290         has an `alt' attribute, to ensure XHTML validation.
31292 2008-11-23  Carsten Dominik  <carsten.dominik@gmail.com>
31294         * org-publish.el (org-publish-attachment): Allow publishing to
31295         overwrite attachment files.
31297         * org-agenda.el (org-agenda-timerange-leaders): New option.
31298         (org-agenda-get-blocks): Use `org-agenda-timerange-leaders'.
31300         * org.el (org-edit-src-exit): Untabify ASCII image before
31301         returning.
31303 2008-11-19  Glenn Morris  <rgm@gnu.org>
31305         * org.el, org-mouse.el (org-agenda-change-all-lines):
31306         Fix declaration.
31308 2008-11-18  Carsten Dominik  <dominik@science.uva.nl>
31310         * org.el ("speedbar"): Only show context if the file really is an
31311         org-mode buffer.
31313 2008-11-17  Juanma Barranquero  <lekktu@gmail.com>
31315         * org.el (org-time-string-to-absolute, org-small-year-to-year)
31316         (org-tags-sparse-tree): Fix typos in docstrings.
31318 2008-11-15  Carsten Dominik  <dominik@science.uva.nl>
31320         * org-publish.el (org-publish-attachment): Allow copy-file to
31321         overwrite files.
31323 2008-11-13  Glenn Morris  <rgm@gnu.org>
31325         * org-agenda.el (org-get-closed): Fix alias.
31327 2008-11-12  Juanma Barranquero  <lekktu@gmail.com>
31329         * org.el (org-link-escape): Fix typo in docstring.
31331 2008-11-12  Carsten Dominik  <carsten.dominik@gmail.com>
31333         * org.el (org-yank): Make any prefix force normal yanking.
31334         Suppress folding if text would be swallowed into a folded
31335         subtree.
31336         (org-yank-folded-subtrees, org-yank): Docstring updates.
31338         * org-agenda.el (org-agenda-compare-effort): Treat no effort
31339         defined as 0.
31341         * org-exp.el (org-export-language-setup): Add Catalan and
31342         Esperanto language entries.
31344 2008-11-12  Carsten Dominik  <carsten.dominik@gmail.com>
31346         * org.el (org-refile): Allow refiling of entire regions.
31348         * org-clock.el (org-clock-time%): New function.
31350         * org.el (org-entry-get, org-entry-delete): Use safer regexps to
31351         retrieve property values.
31353 2008-11-12  Carsten Dominik  <carsten.dominik@gmail.com>
31355         * org-agenda.el (org-agenda-list): Handle the value `only' of
31356         org-agenda-show-log'.
31357         (org-agenda-log-mode): Interpret a double prefix arg.
31359 2008-11-12  Carsten Dominik  <carsten.dominik@gmail.com>
31361         * org-exp.el (org-export-html-footnotes-section): New variable.
31362         (org-export-as-html): Use `org-export-html-footnotes-section' to
31363         insert the footnotes.
31364         (org-export-language-setup): Add "Footnotes" to language words.
31366 2008-11-12  Carsten Dominik  <carsten.dominik@gmail.com>
31368         * org.el (org-yank): Fix bug when not inserting a subtree.
31370 2008-11-12  Carsten Dominik  <carsten.dominik@gmail.com>
31372         * org-vm.el (org-vm-follow-link): Call `vm-preview-current-message'
31373         instead of `vm-beginning-of-message'.
31375         * org.el (org-make-link-regexps): Make sure that links to gnus can
31376         contain brackets.
31378 2008-11-12  Carsten Dominik  <carsten.dominik@gmail.com>
31380         * org-attach.el (org-attach-dir): Remove duplicate ID creation
31381         code.
31383         * org-id.el (org-id-new): Use `org-trim' to extract the uuid from
31384         shell output.
31386         * org.el (org-link-abbrev-alist): Improve customization type.
31388         * org-attach.el (org-attach-expand-link, org-attach-expand):
31389         New functions.
31391         * org-agenda.el (org-agenda-get-progress): Rename from
31392         `org-get-closed'.  Implement searching for state changes as well.
31393         (org-agenda-log-mode-items): New option.
31394         (org-agenda-log-mode): New option prefix argument, interpreted as
31395         request to show all possible progress info.
31396         (org-agenda-get-day-entries): Call `org-get-progress' instead of
31397         `org-get-closed'.
31398         (org-agenda-set-mode-name): Handle the more complex log mode
31399         settings.
31400         (org-get-closed): New alias, pointing to `org-get-progress'.
31402 2008-11-12  Carsten Dominik  <dominik@science.uva.nl>
31404         * org.el (org-file-apps-defaults-gnu)
31405         (org-file-apps-defaults-macosx)
31406         (org-file-apps-defaults-windowsnt): Add an entry defining the
31407         system command.
31408         (org-file-apps): Allow `system' as key and value.
31409         (org-open-at-point): Explain the effect of a double prefix arg.
31410         (org-open-file): If the argument `in-emacs' is (16),
31411         i.e. corresponding to a double prefix argument, try to open the
31412         file externally.
31414 2008-11-12  Carsten Dominik  <dominik@science.uva.nl>
31416         * org.el (org-insert-link): Abbreviate absolute files names in
31417         links.  Also, fix a bug in which the double C-u prefix would not
31418         be honored.
31420 2008-11-12  Carsten Dominik  <dominik@science.uva.nl>
31422         * org.el (org-insert-heading): If buffer does not end with a
31423         newline, add one if necessary to insert headline correctly.
31425         * org-exp.el (org-export-as-html): Make sure that <hr/> is between
31426         paragraphs, not inside.
31428         * org.el (org-todo):
31429         Quote `org-agenda-headline-snapshot-before-repeat'.
31431         * org-exp.el (org-export-as-html): Fully process link descriptions.
31432         (org-export-html-format-desc): New function.
31433         (org-export-as-html): Collect footnotes into the correct basket.
31434         (org-html-protect): No longer protect quotations marks here, this
31435         goes wrong.
31437         * org-agenda.el (org-agenda-remove-marked-text): Bind variable
31438         BEG.
31440         * org-compat.el (org-fit-window-to-buffer): New function (not
31441         really, a preliminary and incomplete version was present earlier,
31442         but not used).
31444         * org.el (org-fast-todo-selection, org-fast-tag-selection):
31445         Use `org-fit-window-to-buffer'.
31447         * org-exp.el (org-export): Use `org-fit-window-to-buffer'.
31449         * org-agenda.el (org-agenda-get-restriction-and-command)
31450         (org-fit-agenda-window, org-agenda-convert-date):
31451         Use `org-fit-window-to-buffer'.
31453         * org-exp.el (org-export-as-html): Process href links through
31454         `org-export-html-format-href'.
31455         (org-export-html-format-href): New function.
31457         * org-agenda.el (org-agenda-todo): Update only the current
31458         headline if this is a repeated TODO, marked done for today.
31459         (org-agenda-change-all-lines): New argument JUST-THIS, to change
31460         only the current line.
31462         * org.el (org-todo): Take a snapshot of the headline if the
31463         repeater might change it.
31465 2008-11-12  Carsten Dominik  <dominik@science.uva.nl>
31467         * org-publish.el (org-publish-find-title): Remove buffers visited
31468         only for extracting the title.
31470         * org-exp.el (org-export-html-style)
31471         (org-export-html-style-default): Mark style definitions as
31472         unparsed CDATA.
31474         * org-publish.el (org-publish-validate-link):
31475         Function re-introduced.
31477 2008-11-12  Charles Sebold  <csebold@gmail.com>
31479         * org-plot.el (org-plot/add-options-to-plist): Supports timefmt
31480         property.
31481         (org-plot-quote-timestamp-field): New function.
31482         (org-plot-quote-tsv-field): Call timestamp field function when
31483         necessary rather than just quoting as a string.
31484         (org-plot/gnuplot-to-data): Pass in timefmt property.
31485         (org-plot/gnuplot-script): Supports timefmt property.
31486         (org-plot/gnuplot): Checks for timestamp column before checking
31487         for text index column.
31489 2008-11-12  Carsten Dominik  <dominik@science.uva.nl>
31491         * org.el (org-insert-heading): Improve behavior with hidden subtrees.
31493         * org-publish.el (org-publish-org-index): Create a section in the
31494         index file.
31495         (org-publish-org-index): Stop linking to directories.
31497         * org.el (org-emphasis-alist): Use span instead of <u> to
31498         underline text.
31500         * org-exp.el (org-export-as-html): Make sure <p> is closed before
31501         <pre> sections.
31503 2008-11-12  Sebastian Rose  <sebastian_rose@gmx.de>
31505         * org-jsinfo.el (org-infojs-template): Remove language attribute
31506         from script tag.
31508 2008-11-12  Carsten Dominik  <dominik@science.uva.nl>
31510         * org-agenda.el (org-agenda-remove-marked-text): New function.
31511         (org-agenda-mark-filtered-text)
31512         (org-agenda-unmark-filtered-text): New functions.
31513         (org-write-agenda): Remove filtered text.
31515         * org.el (org-make-tags-matcher): Give access to TODO "property"
31516         without speed penalty.
31518 2008-11-12  Carsten Dominik  <dominik@science.uva.nl>
31520         * org.el (org-link-frame-setup): Add `org-gnus-no-new-news' as an
31521         option.
31522         (org-store-link-props): Make sure adding to the plist works
31523         correctly.
31525         * org-gnus.el (org-gnus-no-new-news): New function.
31526         (org-gnus-follow-link): Allow the article ID to be a message-id,
31527         in addition to allowing article numbers.  Message IDs make much
31528         more roubust links.
31529         (org-gnus-store-link): Use message-id to create link.
31531 2008-11-12  Carsten Dominik  <dominik@science.uva.nl>
31533         * org.el (org-emphasize): Reverse the selection array.
31534         (org-emphasis-alist): Set <code> tags for the verbatim
31535         environment.
31537         * org-remember.el (org-remember-handler): Fix bug with
31538         prefix-related changing of the note storage target.
31540         * org-exp.el (org-print-icalendar-entries): Make the exported
31541         priorities compatible with RFC 2445.
31543         * org-clock.el (org-clock-save): Insert time stamp without
31544         dependence on time-stamp.el.
31546 2008-11-12  Carsten Dominik  <dominik@science.uva.nl>
31548         * org.el ("saveplace"): If saveplace puts point into an invisible
31549         location, make it visible.
31550         (org-make-tags-matcher): Allow inactive time stamps in time
31551         comparisons.
31552         (org-yank-adjusted-subtrees): New option.
31553         (org-yank): Incorporate adjusting trees.
31554         (org-paste-subtree): New argument FOR-YANK which will cause
31555         insertion at point without backing up over white lines, and leave
31556         point at the end of the inserted text.  Also if the cursor is
31557         at the beginning of a headline, use the same level or the inserted
31558         tree.
31560         * org-publish.el (org-publish-get-base-files-1): Deal correctly
31561         with broken symlinks.
31563 2008-11-12  Carsten Dominik  <dominik@science.uva.nl>
31565         * org-exp.el (org-export-select-tags, org-get-current-options):
31566         Fix typo.
31568 2008-11-06  Glenn Morris  <rgm@gnu.org>
31570         * org-publish.el (org-publish-attachment): Use copy-file rather than
31571         eshell/cp.
31573 2008-11-04  Juanma Barranquero  <lekktu@gmail.com>
31575         * org.el (org-columns-modify-value-for-display-function):
31576         * org-table.el (org-table-convert-region): Fix typos in docstrings.
31578 2008-10-28  Glenn Morris  <rgm@gnu.org>
31580         * org-agenda.el (org-agenda-align-tags): Replace use of cl `adjoin'.
31582         * org-list.el (outline-next-heading, outline-back-to-heading):
31583         Fix declarations.
31585 2008-10-26  Carsten Dominik  <dominik@science.uva.nl>
31587         * org-agenda.el (org-format-agenda-item)
31588         (org-agenda-filter-make-matcher): Make sure tags are stored and
31589         compared downcased.
31591 2008-10-26  Carsten Dominik  <dominik@science.uva.nl>
31593         * org.el (org-insert-todo-heading): Fix bug with force-heading
31594         argument.
31596 2008-10-26  Carsten Dominik  <dominik@science.uva.nl>
31598         * org-exp.el (org-export-as-ascii): Handle the case that we are
31599         bulishing from an indirect buffer.
31601         * org-table.el (org-table-copy-down): Fix bug with time stamp
31602         increment.
31604         * org-mouse.el (org-mouse-features): New option.
31605         (org-mode-hook): Turn on features depending on
31606         `org-mouse-features'.
31608         * org.el (org-insert-heading-respect-content): Force heading
31609         creation.
31610         (org-insert-heading): Keep the folding state of the heading before
31611         the inserted one.
31613 2008-10-26  Carsten Dominik  <dominik@science.uva.nl>
31615         * org-archive.el (org-archive-to-archive-sibling): Handle top
31616         level headlines better.
31618 2008-10-26  Bastien Guerry  <bzg@gnu.org>
31620         * org-export-latex.el (org-export-latex-classes):
31621         Add \usepackage{graphicx} to the default list of packages.
31623 2008-10-26  Carsten Dominik  <dominik@science.uva.nl>
31625         * org-agenda.el (org-agenda-filter): Rename from
31626         `org-agenda-filter-tags'.
31628 2008-10-26  Carsten Dominik  <dominik@science.uva.nl>
31630         * org.el (org-entry-properties): Add CATEGORY property, iven if it
31631         is not defined as a property in this entry.
31632         (org-add-log-note): Mask prefix argument when immediately storing
31633         the note.
31635         * org-agenda.el (org-agenda-filter-effort-default-operator):
31636         New option.
31638 2008-10-26  James TD Smith  <ahktenzero@mohorovi.cc>
31640         * org.el (org-add-log-setup): Bugfix; code to find insertion point
31641         after drawers was skipping ahead one line too many, so notes were
31642         inserted after the first note instead of before it.
31644 2008-10-26  Carsten Dominik  <dominik@science.uva.nl>
31646         * org-agenda.el (org-agenda-filter-tags, org-agenda-filter-form):
31647         New variables.
31648         (org-prepare-agenda): Reset the filter tags.
31649         (org-agenda-filter-by-tag, org-agenda-filter-by-tag-show-all):
31650         Show filter tags in mode line.
31652         * org-table.el (orgtbl-to-html): Bind `html-table-tag' for the
31653         formatter.
31655         * org-export-latex.el (org-latex-entities-regexp): New constant.
31656         (org-export-as-pdf): Use two calls to `shell-command'.
31658 2008-10-26  Carsten Dominik  <dominik@science.uva.nl>
31660         * org-export-latex.el (org-export-latex-treat-sub-super-char):
31661         Honor the {} value of the subsuperscript setting.  Make sure that
31662         longer subsuperscripts are typeset in a roman font.
31664         * org.el (org-clock-update-time-maybe): Compute negative clock
31665         intervals correctly.
31667 2008-10-26  Carsten Dominik  <dominik@science.uva.nl>
31669         * org.el (org-add-log-setup):
31670         Respect `org-log-state-notes-insert-after-drawers'.
31671         (org-log-state-notes-insert-after-drawers): New option.
31672         (org-todo-trigger-tag-changes): New function.
31673         (org-todo): Call `org-todo-trigger-tag-changes'.
31675 2008-10-26  James TD Smith  <ahktenzero@mohorovi.cc>
31677         * org.el (org-add-log-setup): Only skip drawers if they are
31678         immediately after the scheduling keywords.
31680         * org-clock.el (org-clock-in-switch-to-state): Allow this to be a
31681         function.
31682         (org-clock-in): If `org-clock-in-switch-to-state' is a function,
31683         call it with the current todo state to get the state to switch to
31684         when clocking in.
31685         (org-clock-in): Use org-indent-line-function to indent clock lines.
31686         (org-clock-find-position): Fix indentation of empty clock drawers.
31688 2008-10-26  Carsten Dominik  <dominik@science.uva.nl>
31690         * org-publish.el (org-publish-org-to): Handle case when
31691         org-export-to-pdf does return a file name, not a buffer.
31692         (org-publish-org-to-pdf): New function.
31694         * org-export-latex.el (org-export-as-pdf)
31695         (org-export-as-pdf-and-open): New commands.
31697         * org-table.el (org-table-eval-formula): Avoid parsing Calc's HMS
31698         forms as ranges.
31700         * org-export-latex.el (org-export-latex-lists): Ignore lists-like
31701         things in protexted regions.
31703 2008-10-26  Carsten Dominik  <dominik@science.uva.nl>
31705         * org-export-latex.el (org-export-latex-preprocess):
31706         Improve quoting of LaTeX environments.
31708 2008-10-19  Eli Zaretskii  <eliz@gnu.org>
31710         * org.el (org-default-notes-file):
31711         * org-publish.el (org-publish-timestamp-directory):
31712         * org-id.el (org-id-locations-file): Run file names that begin
31713         with a period thru `convert-standard-filename'.
31715 2008-10-12  Carsten Dominik  <dominik@science.uva.nl>
31717         * org-plot.el: Switch coding system to unix.
31719 2008-10-12  John Wiegley  <johnw@newartisans.com>
31721         * org-attach.el: New file.
31723 2008-10-12  Carsten Dominik  <carsten.dominik@gmail.com>
31725         * org.el (org-edit-fixed-width-region): Exclude final newline from
31726         picture area.
31728         * org-export-latex.el (org-export-latex-subcontent): Add labels to
31729         sections, to make internal links work.
31730         (org-export-latex-fontify-headline): Do not remove all text
31731         properties, to make sure that target properties survive this
31732         process.
31734         * org-exp.el (org-export-preprocess-string): Change sequence of
31735         modifications, to make sure links are prepared before the LaTeX
31736         conversions do happen.
31738         * org-attach.el (org-attach-delete-all): Rename from
31739         `org-attch-delete'.  Add a security query before deleting the
31740         entire directory.  New optional argument FORCE can overrule the
31741         security query.
31742         (org-attach-delete-one): New command.
31744         * org-attach.el (org-attach-file-list): Fix bug with directory.
31746         * org.el (org-apps-regexp-alist): New function.
31747         (org-file-apps): Add auto-mode to the default value.
31748         (org-open-file): Use the new structure of org-file-apps.
31750         * org-attach.el (org-attach): Support the new keys.
31751         (org-attach-method): New option.
31753         * org-bbdb.el (org-bbdb-anniversaries): Fix but with 29 Feb/1
31754         March.
31756         * org.el (org-remove-uniherited-tags): Fix reverse interpretation
31757         of the list value o `org-use-tag-inheritance'.
31759         * org-attach.el (org-attach-auto-tag): New option.
31760         (org-attach-tag, org-attach-untag): New functions.
31761         (org-attach-attach, org-attach-new, org-attach-sync):
31762         Call `org-attach-tag'.
31763         (org-attach-delete): Call `org-attach-untag'.
31765         * org-table.el (orgtbl-self-insert-command): Make this work for
31766         the keypad as well.
31768         * org.el (org-add-log-setup): Limit searc for drawers to entry
31769         text, not to subtree.
31771         * org-clock.el (org-clock-heading-for-remember): New variable.
31772         (org-clock-in): Set `org-clock-heading-for-remember'.
31774 2008-10-12  James TD Smith  <ahktenzero@mohorovi.cc>
31776         * org-remember.el (org-remember-apply-template): Add new
31777         expansions: %k, %K for currently clocked task and a link to the
31778         currently clocked task, and %< to file notes in the currently
31779         clocked task.
31781 2008-10-12  Carsten Dominik  <dominik@science.uva.nl>
31783         * org-export-latex.el (org-export-latex-make-header): Also insert
31784         the content of the property :latex-header-extra.
31786         * org-exp.el (org-infile-export-plist): Put the content of
31787         #+LATEX_HEADER: into the property :latex-header-extra.
31789         * org-colview.el (org-columns-get-format-and-top-level):
31790         Remove resetting the marker.
31792         * org.el (org-entry-property-inherited-from): Improve docstring.
31793         (org-entry-get-with-inheritance): Reset marker before starting the
31794         search.
31796         * org-exp.el (org-infile-export-plist): Allow multiple STYLE lines.
31798         * org.el (org-entry-get-multivalued-property)
31799         (org-entry-protect-space, org-entry-restore-space):
31800         New functions.
31801         (org-file-apps-defaults-macosx): Let PostScript files be opened by
31802         preview.
31803         (org-time-stamp-inactive): Call `org-time-stamp'.
31804         (org-time-stamp): New argument `inactive'.  Also edit inactive
31805         stamps.  Convert time stamp type.
31806         (org-open-file): Interpret the `default' value for the `command'
31807         in `org-file-apps'.
31809         * org-id.el (org-id-int-to-b36-one-digit)
31810         (org-id-b36-to-int-one-digit, org-id-int-to-b36)
31811         (org-id-b36-to-int, org-id-time-to-b36): Modify from b62 to
31812         b36.
31814         * org-id.el (org-id-reverse-string): New function.
31815         (org-id-new): Use `org-id-reverse-string' to make sure the
31816         beginning chars of the ID are mutating fast.  This allows to use a
31817         directory structure to spread things better.
31818         (org-id-prefix): Change default to nil.
31820         * org-list.el (org-move-item-down, org-move-item-up): Remember and
31821         restore the column of the cursor position.
31823         * org-remember.el (org-remember-apply-template): Remove properties
31824         from `initial'.
31826         * org-wl.el (org-wl-open): Remove useless call to
31827         `wl-thread-open-all'.
31829         * org-remember.el (org-remember-handler): Fix bug with `bottom'
31830         location.
31832         * org-bbdb.el (org-bbdb-anniversaries): Require bbdb in
31833         `org-bbdb-anniversaries'.
31835         * org.el (org-get-next-sibling, org-forward-same-level):
31836         New functions, similar to the outline versions, but invisible headings
31837         are OK.
31839 2008-10-12  Bastien Guerry  <bzg@gnu.org>
31841         * org.el (org-auto-repeat-maybe): Insert a space between
31842         the timestamp's type and the timestamp itself.
31844 2008-10-12  Carsten Dominik  <dominik@science.uva.nl>
31846         * org-table.el (org-table-sum): Do not format the result with %g,
31847         it does rounding when there are too many digits.
31849         * org.el (org-map-entries): Protect the keyword-selecting variables.
31851 2008-10-12  Bastien Guerry  <bzg@gnu.org>
31853         * org-agenda.el (org-agenda-to-appt): Make sure the function check
31854         against all agenda files.
31856 2008-10-12  Carsten Dominik  <dominik@science.uva.nl>
31857             Bastien Guerry  <bzg@gnu.org>
31859         * org-list.el: New file, aggregating list functions from org.el
31860         and org-export-latex.el.
31862 2008-10-12  Carsten Dominik  <dominik@science.uva.nl>
31864         * org.el (org-edit-src-region-extra): New option.
31866         * org-agenda.el (org-agenda-to-appt): Fix bug with appointment
31867         time before 1am.
31869 2008-10-12  Bastien Guerry  <bzg@gnu.org>
31871         * org-export-latex.el (org-export-latex-keywords-maybe): Bug fix.
31873 2008-10-12  James TD Smith  <ahktenzero@mohorovi.cc>
31875         * org-plot.el (org-plot/gnuplot): Make tables starting with a
31876         hline work correctly.
31877         (org-plot/gnuplot-script): Put commas at the end of each script
31878         line.
31880         * org.el (org-get-refile-targets): Replace links with their
31881         descriptions.
31882         (org-imenu-get-tree): Replace links with their descriptions.
31884         * org-remember.el (org-remember-apply-template): Add a new
31885         expansion for adding properties to remember items.
31887         * org.el (org-add-log-setup): Skip over drawers (properties,
31888         clocks etc) when adding notes.
31890         * org-agenda.el (org-agenda-get-closed): Show durations of clocked
31891         items as well as the start and end times.
31893         * org-compat.el (org-get-x-clipboard-compat): Add a compat
31894         function for fetching the X clipboard on XEmacs and GNU Emacs 21.
31896         * org-remember.el (org-get-x-clipboard): Use the compat
31897         function to get clipboard values when x-selection-value is
31898         unavailable.  Use substring-no-properties instead of
31899         set-text-properties to remove text properties from the clipboard
31900         value.
31902         * org-clock.el (org-update-mode-line): Support limiting the
31903         modeline clock string, and display the full todo value in the
31904         tooltip.  Set a local keymap so mouse-3 on the clock string goes to
31905         the currently clocked task.
31906         (org-clock-string-limit): Add a custom value for the maximum
31907         length of the clock string in the modeline.
31908         (org-clock-mode-map): Add a keymap for the modeline string.
31910 2008-10-12  Carsten Dominik  <dominik@science.uva.nl>
31912         * org-compat.el (org-propertize): New function.
31914 2008-10-12  Bastien Guerry  <bzg@gnu.org>
31916         * org-export-latex.el (org-export-latex-tables): Protect exported
31917         tables from further special chars conversion.
31918         (org-export-latex-preprocess): Preserve LaTeX environments.
31919         (org-list-parse-list): Parse descriptive lists.
31920         (org-list-to-generic, org-list-to-latex, org-list-to-html)
31921         (org-list-to-texinfo): Export descriptive lists.
31922         (org-quote-chars): Remove.
31923         (org-export-latex-keywords-maybe): Use `replace-regexp-in-string'.
31924         (org-export-latex-list-beginning-re): Rename to
31925         `org-list-beginning-re'.
31926         (org-list-item-begin): Rename to `org-list-item-beginning'.
31928 2008-10-12  Eric Schulte  <schulte.eric@gmail.com>
31930         * org-plot.el: New file.
31932 2008-10-12  Carsten Dominik  <dominik@science.uva.nl>
31934         * org.el (org-refile): Allow refiling to the last entry in the
31935         buffer.
31936         (org-get-tags-at): Fix bug when inheritance is turned off.
31938         * org.el (org-indent-line-function): No longer check for src
31939         regions, this is too much overhead.
31941         * org-agenda.el (org-agenda-highlight-todo): Fix bugs with keyword
31942         matching.
31944         * org.el (org-scan-tags): Make sure that tags matching is not case
31945         sensitive.  TODO keyword matching is case sensitive, however, to
31946         avoid confusion with similar words that are not meant to be
31947         keywords.
31949         * org.el (org-get-local-tags-at): New function.
31950         (org-get-local-tags): New function.
31952         * org-exp.el (org-export-get-categories): New function.
31954         * org-agenda.el (org-sorting-choice)
31955         (org-agenda-sorting-strategy, org-agenda-get-todos)
31956         (org-agenda-get-timestamps, org-agenda-get-deadlines)
31957         (org-agenda-get-scheduled, org-agenda-get-blocks)
31958         (org-entries-lessp): Implement sorting by TODO state.
31959         (org-cmp-todo-state): New defsubst.
31961         * org-colview.el (org-colview-construct-allowed-dates):
31962         New function.
31963         (org-columns-next-allowed-value):
31964         Use `org-colview-construct-allowed-dates'.
31966         * org.el (org-protect-slash): New function.
31967         (org-get-refile-targets): Use `org-protect-slash'.
31969         * org-agenda.el (org-global-tags-completion-table): New variable.
31971         * org-exp.el (org-export-handle-export-tags): New function.
31972         (org-export-preprocess-string):
31973         Call `org-export-handle-export-tags'.
31975         * org-publish.el (org-publish-expand-components): Function removed.
31976         (org-publish-expand-projects): Allow components to have components.
31978         * org.el (org-indent-line-function): Do not indent in regions that
31979         are external source code.
31980         (org-yank-and-fold-if-subtree): New function.
31982         * org-agenda.el (org-agenda-todayp): New function.
31983         (org-agenda-get-deadlines, org-agenda-get-scheduled):
31984         Use `org-agenda-todayp'.
31986         * org.el (org-insert-heading-respect-content)
31987         (org-insert-todo-heading-respect-content): New commands.
31988         (org-insert-heading-respect-content): New option.
31989         (org-insert-heading): Respect `org-insert-heading-respect-content'.
31991         * org-clock.el (org-clock-find-position): Make sure the note after
31992         the clock line gets moved into the new clock drawer.
31994         * org-id.el (org-id-new): New option.
31996         * org-table.el (org-table-copy-down): Avoid overflow during
31997         increment.  Use prefix argument 0 to temporarily disable the
31998         increment.
32000         * org-exp.el (org-export-as-html): Do not turn on the major mode
32001         if the buffer will be killed anyway.
32002         (org-get-current-options): Exclude the #+TEXT field.
32003         (org-export-as-html): Make sure text before the first headline is
32004         a paragraph.
32006         * org-publish.el (org-publish-org-to): Tell the exporter that this
32007         buffer will be killed, so it is not necessary to do major mode
32008         initialization.
32010         * org-archive.el (org-archive-to-archive-sibling): Show empty
32011         lines after folding the archive sibling.
32013         * org.el (org-log-note-extra): New variable.
32015 2008-10-12  Bastien Guerry  <bzg@gnu.org>
32017         * org.el (org-additional-option-like-keywords): Add keywords for
32018         the _QUOTE, _VERSE and _SRC environments.
32020         * org-export-latex.el (org-export-latex-preprocess): Fix bug when
32021         exporting _QUOTE and _VERSE environments.
32023 2008-10-12  Carsten Dominik  <dominik@science.uva.nl>
32025         * org-agenda.el (org-agenda-filter-by-tag): New command.
32027         * org-exp.el (org-get-current-options): Remove angular brackets
32028         from the date entry.
32030         * org.el (org-edit-fixed-width-region): New function.
32031         (org-edit-fixed-width-region): Also try
32032         `org-edit-fixed-width-region'.
32033         (org-edit-fixed-width-region-mode): New option.
32034         (org-activate-code): Only interpret lines starting with colon
32035         plus a space as example lines.
32037         * org-remember.el (org-remember-templates): Add nil instead of
32038         empty strings to fix the length of remember templates.
32040         * org-table.el (org-calc-default-modes): Fix the time format for
32041         calc, from 12 hour to 24 hour clock.
32043         * org-agenda.el (org-agenda-get-deadlines)
32044         (org-agenda-get-scheduled): Avoid `time-of-day' extraction for
32045         entries that are pre-warnings of deadlines or reminders.
32047         * org.el (org-sort-entries-or-items): Make numeric and alpha
32048         comparisons ignore any TODO keyword and priority cookie.
32050         * org-remember.el (org-remember-handler): Reinterpretation of the
32051         prefix argument.
32053         * org-agenda.el (org-agenda-get-scheduled): Use new
32054         `org-scheduled' face.
32056         * org-faces.el (org-scheduled): New face.
32058         * org-wl.el (org-wl-open): Remove incorrect declaration.
32060         * org-gnus.el (org-gnus-store-link): Support for :to information
32061         in gnus links.
32063         * org-exp.el (org-export-as-html): Fix typo in creator
32064         information.
32065         (org-export-protect-examples): New parameter indent.  Insert extra
32066         spaces only when this parameter is specified.
32067         (org-export-preprocess-string): Call `org-export-protect-examples'
32068         with an indentation parameter when exporting to ASCII.
32070         * org-remember.el (org-remember-templates)
32071         (org-remember-apply-template): Allow the file component to be a
32072         function.
32074         * org.el (org-goto-local-search-headings): Rename from
32075         `org-goto-local-search-forward-headings'.  Added the possibility
32076         to search backwards.
32078         * org-export-latex.el (org-export-latex): New customization
32079         group.
32081         * org-agenda.el (org-write-agenda): Erase buffer for txt export.
32083         * org-exp.el (org-html-do-expand): Allow {} to terminate
32084         tex macro.
32086         * org.el (org-buffer-list): Select buffers based on major mode,
32087         not on file name.
32089         * org-agenda.el (org-agenda-align-tags): Fix bug with malformed
32090         face property.
32092         * org-colview.el (org-columns-display-here):
32093         Use `org-columns-modify-value-for-display-function'.
32095         * org.el (org-columns-modify-value-for-display-function): New option.
32097         * org-publish.el (org-publish-file): Make sure the directory match
32098         for the publishing directory works correctly.
32100         * org-agenda.el (org-agenda-execute-calendar-command)
32101         (org-agenda-diary-entry): Additional optional argument.
32103 2008-07-24  Carsten Dominik  <dominik@science.uva.nl>
32105         * org-exp.el (org-export-as-html): Add attributes also in mailto
32106         and ftp links.
32108         * org.el (org-autoload): Add `org-dblock-write:columnview'.
32110 2008-08-11  Glenn Morris  <rgm@gnu.org>
32112         * org-mac-message.el (do-applescript): Fix declaration.
32114 2008-08-10  Glenn Morris  <rgm@gnu.org>
32116         * org-exp.el (org-export-as-html): Let-bind `i'.
32118         * org.el (org-renumber-ordered-list): Fix bob/bobp typo.
32119         (org-extract-attributes): Let-bind `key', `value'.
32120         (org-make-tags-matcher): Let-bind `time-p'.
32122 2008-07-27  Carsten Dominik  <dominik@science.uva.nl>
32124         * org-install.el: New file.
32126 2008-07-26  Carsten Dominik  <dominik@science.uva.nl>
32128         * org-exp.el (org-export-html-style)
32129         (org-export-html-style-extra): Declare as safe-local-variable.
32131 2008-07-25  Carsten Dominik  <dominik@science.uva.nl>
32133         * org-publish.el (org-publish-file): Use the true name of the
32134         file.
32136         * org-jsinfo.el (org-infojs-handle-options): Use :style-extra
32137         instead of :style.
32139         * org-exp.el (org-export-plist-vars)
32140         (org-export-add-options-to-plist): Handle creator setting flag.
32141         (org-export-as-html): Handle attributes also for ftp and mailto
32142         links.
32144         * org-agenda.el (org-agenda-diary-entry)
32145         (org-agenda-execute-calendar-command): Cater for the second
32146         argument of `calendar-cursor-to-date'.
32148 2008-07-24  Carsten Dominik  <dominik@science.uva.nl>
32150         * org-exp.el (org-export-region-as-html, org-export-as-html):
32151         Make sure that calls from `org-export-region-as-html' do not do the
32152         special check for a subtree.
32154         * org-agenda.el (org-batch-store-agenda-views): Fix parsing bug.
32156         * org.el (org-open-file):
32157         Use `org-open-directory-means-index-dot-org'.
32158         (org-open-directory-means-index-dot-org): New option.
32160         * org.el (org-make-link-string): Remove link attributes from
32161         description.
32162         (org-open-at-point): Remove link attributes before using the path.
32164         * org-exp.el (org-export-as-html): Handle link attributes.
32166         * org.el (org-extract-attributes, org-attributes-to-string): New functions.
32168         * org-table.el (org-table-to-lisp): New function.
32170         * org.el (org-narrow-to-subtree): Do not include the final newline
32171         into the narrowed region.
32173         * org-agenda.el (org-agenda-custom-commands-local-options):
32174         Fix bug with user-define skipping condition.
32176         * org-agenda.el (org-agenda-get-restriction-and-command): Fix typo.
32178         * org-exp.el (org-export-html-style-default): Automatic overflow
32179         handling for pre fields.
32180         (org-export-as-ascii, org-export-as-html): Change default format
32181         for time stamp.
32183         * org-table.el (org-table-export): Offer completion for translator
32184         functions, and do not require a heading above the table.
32186         * org.el (org-renumber-ordered-list, org-beginning-of-item-list):
32187         Cater for the case of a list starting in the first line of the
32188         buffer.
32190         * org-publish.el (org-publish-find-title): Bug fix.
32191         (org-publish-org-index): Implement new :index-style option.
32193         * org-publish.el (org-publish-timestamp-filename):
32194         Use SHA1-encoded file names in the timestamp directory.
32196         * org-publish.el (org-publish-needed-p): Be verbose about files
32197         published and files skipped.
32199         * org-exp.el (org-export-preprocess-string): Swap link
32200         normalization and internal link targeting.
32202         * org-publish.el (org-publish-needed-p): Create timestamp
32203         directory when it does not exist.
32205         * org-clock.el (org-clock-out-when-done): Doc fix.
32207         * org.el (org-agenda-skip-unavailable-files): Doc fix.
32209         * org-exp.el (org-export-remove-comment-blocks-and-subtrees):
32210         Ignore case when searching for the COMMENT cookie at export time.
32212         * org-exp.el (org-get-file-contents)
32213         (org-get-and-remove-property): New functions.
32214         (org-export-handle-include-files): Handle the new prefix options.
32215         (org-export-as-html): Fix the verse environment.
32217         * org.el (org-time=, org-time<, org-time<=, org-time>)
32218         (org-time>=, org-time<>, org-2ft): New functions.
32219         (org-op-to-function): Also provide for the time testing functions.
32221         * org-exp.el (org-export-html-style-default): New constant.
32223         * org-exp.el (org-export-html-style-extra): New variable.
32224         (org-export-splice-style): New function.
32226         * org-exp.el (org-export-plist-vars, org-export-as-html):
32227         Implement `org-export-creator-info'.
32228         (org-export-creator-info): New option.
32230         * org.el (org-clock-drawer-start-re, org-clock-drawer-end-re)
32231         (org-property-drawer-re, org-clock-drawer-re): New constants.
32233         * org-exp.el (org-icalendar-use-deadline)
32234         (org-icalendar-use-scheduled): New options.
32235         (org-icalendar-include-todo): Default changed to t.
32236         (org-print-icalendar-entries): Implement better utilization of
32237         scheduling and deadline time stamps.
32238         (org-export-target-internal-links, org-export-as-html): Allow file
32239         lines without the "file:" prefix if the file path is an absolute
32240         path or starts with ".".
32242         * org-clock.el (org-clocktable-shift): Also understand yesterday,
32243         lastweek etc.
32244         (org-clock-special-range): Also understand yesterday, lastweek etc.
32246         * org.el (org-agenda-skip-archived-trees): Docstring now
32247         discourages using this.
32248         (org-scan-tags): Check for org-agenda-archives-mode.
32249         (org-map-entries): Make sure org-agenda-archives-mode is nil.
32250         (org-agenda-files): Functionality of second arg changed.
32252         * org-agenda.el (org-agenda-archives-mode): New variable.
32253         (org-write-agenda, org-prepare-agenda, org-agenda-list)
32254         (org-search-view, org-todo-list, org-tags-view)
32255         (org-agenda-list-stuck-projects): Call `org-agenda-files' with
32256         `ifmode' argument.
32257         (org-agenda-quit): Reset the archives mode.
32258         (org-agenda-archives-mode): New command.
32259         (org-agenda-set-mode-name): Include archives info.
32261         * org.el (org-paste-subtree): Make sure the yanked headline is
32262         visible if it was yanked at a visible point.
32263         (org-move-item-up): Fix the bug with moving white space at the end
32264         of the item.
32265         (org-show-empty-lines-in-parent): New function.
32267 2008-07-19  Juri Linkov  <juri@jurta.org>
32269         * org.el (narrow-map): Bind `org-narrow-to-subtree' to "s" on the
32270         new keymap `narrow-map' instead of binding "\C-xns".
32272 2008-07-02  Juanma Barranquero  <lekktu@gmail.com>
32274         * org.el (org-agenda-skip-unavailable-files):
32275         * org-clock.el (org-clock-out-when-done): Doc fixes.
32277 2008-06-18  Glenn Morris  <rgm@gnu.org>
32279         * org.el (org-map-entries): Let-bind `file'.
32281 2008-06-17  Carsten Dominik  <dominik@science.uva.nl>
32283         * org-colview.el (org-columns-next-allowed-value): Bug fix.
32285         * org-agenda.el (org-agenda-get-closed): Get the end time into the
32286         agenda prefix as well.
32288         * org-publish.el (org-publish-org-index): Make a properly indented
32289         list.
32291         * org.el (org-calendar-agenda-action-key): New option.
32292         (org-get-cursor-date): New function.
32293         (org-mark-entry-for-agenda-action): New command.
32294         (org-overriding-default-time): New variable.
32295         (org-read-date): Respect `org-overriding-default-time'.
32297         * org-remember.el (org-remember-apply-template): Respect the
32298         overriding default time.
32300         * org-agenda.el (org-agenda-action-marker): New variable.
32301         (org-agenda-action): New command.
32302         (org-agenda-do-action): New function.
32304 2008-06-17  Carsten Dominik  <dominik@science.uva.nl>
32306         * org.el (org-schedule, org-deadline): Protect scheduled and
32307         deadline tasks against changes that accidentally remove the
32308         repeater.  Also show a message with the new date when done.
32310 2008-06-17  Carsten Dominik  <dominik@science.uva.nl>
32312         * org.el (org-beginning-of-line): Cater for the case when there
32313         are tags but no headline text.
32314         (org-align-tags-here): Convert to tabs only when indent-tabs-mode
32315         it set.
32317 2008-06-17  Carsten Dominik  <dominik@science.uva.nl>
32319         * org-mhe.el (org-mhe-get-message-folder-from-index): Make sure
32320         the return value is nil instead of "nil" when there is no match.
32322         * org-exp.el (org-insert-centered): Use fill-column instead of
32323         80.
32324         (org-export-as-ascii): Use string-width to measure the width of
32325         the heading.
32327         * org.el (org-diary-to-ical-string): No longer kill buffer
32328         FROMBUF, this is now done by the caller.
32330         * org-exp.el (org-print-icalendar-entries): Move the call to
32331         `org-diary-to-ical-string' out of the loop, and kill the buffer
32332         afterwords.
32334         * org-remember.el (org-remember-visit-immediately):
32335         Position cursor after moving to the note.
32336         (org-remember-apply-template): Use a text property to record the
32337         cursor position.
32338         (org-remember-handler): Align tags after pasting the note.
32340 2008-06-17  Carsten Dominik  <dominik@science.uva.nl>
32342         * org-bbdb.el (org-bbdb-follow-anniversary-link): New function.
32344         * org-agenda.el (org-agenda-open-link): If there is an
32345         org-bbdb-name property in the current line, jump to that bbdb
32346         entry.
32348         * org-bbdb.el (org-bbdb-anniversaries): Add the bbdb-name as a
32349         text property, so that the agenda knows where this entry comes
32350         from.
32352         * org-agenda.el (org-agenda-clock-in): Fix bug in the
32353         interaction between clocking-in from the agenda, and  automatic
32354         task state switching.
32356         * org-macs.el (org-with-point-at): Bug fix in macro definition.
32358         * org.el (org-beginning-of-line, org-end-of-line): Make sure the
32359         zmacs-region stays after this command in XEmacs.
32361 2008-06-17  Carsten Dominik  <dominik@science.uva.nl>
32363         * org.el (org-scan-tags): Allow new values for ACTION parameter.
32365         * org-remember.el (org-remember-templates): Fix bug in
32366         customization type definition.
32368         * org.el (org-map-entries): New function.
32370 2008-06-17  Carsten Dominik  <dominik@science.uva.nl>
32372         * org-agenda.el (org-agenda-skip-comment-trees): New option.
32373         (org-agenda-skip): Respect `org-agenda-skip-comment-trees'.
32375 2008-06-17  Carsten Dominik  <dominik@science.uva.nl>
32377         * org-remember.el (org-jump-to-target-location): New variable.
32378         (org-remember-apply-template):
32379         Set `org-remember-apply-template' if requested by template.
32380         (org-remember-handler): Start an idle timer to jump to
32381         remember location.
32383         * org-exp.el (org-get-current-options): Add the FILETAGS setting.
32385         * org.el (org-set-regexps-and-options): Fix bug with parsing of
32386         file tags.
32387         (org-get-tags-at): Add the content of `org-file-tags'.
32389         * org-exp.el (org-export-handle-comments): Fix bug with several
32390         comment lines after each other.
32391         (org-number-to-roman, org-number-to-counter): New functions.
32392         (org-export-section-number-format): New option.
32394 2008-06-17  Carsten Dominik  <dominik@science.uva.nl>
32396         * org-exp.el (org-export-protect-examples): Catch the case of a
32397         missing end_example line.
32399         * org.el (org-set-regexps-and-options): Set `org-file-properties' and
32400         `org-file-tags' to nil.
32402         * org-colview.el (org-columns-next-allowed-value): Handle next
32403         argument NTH to directly select a value.
32405 2008-06-17  Carsten Dominik  <dominik@science.uva.nl>
32407         * org-agenda.el (org-agenda-scheduled-leaders): Fix docstring.
32409 2008-06-17  Carsten Dominik  <dominik@science.uva.nl>
32411         * org.el (org-columns-ellipses): New option.
32413 2008-06-17  Carsten Dominik  <dominik@science.uva.nl>
32415         * org-colview.el (org-columns-add-ellipses): New function.
32416         (org-columns-compact-links): New function.
32417         (org-columns-cleanup-item): Call `org-columns-compact-links'.
32418         (org-columns-display-here): Call `org-agenda-columns-cleanup-item'
32419         when in agenda.
32420         (org-columns-edit-value): Fix bug with editing values from
32421         agenda column view.
32422         (org-columns-redo): Also redo the agenda itself.
32424 2008-06-17  Carsten Dominik  <dominik@science.uva.nl>
32426         * org-agenda.el (org-agenda-columns-remove-prefix-from-item):
32427         New option.
32429         * org-colview.el (org-agenda-columns-cleanup-item): New function.
32431         * org-exp.el (org-export-ascii-preprocess): Rename from
32432         `org-export-ascii-clean-string'.
32433         (org-export-kill-licensed-text)
32434         (org-export-define-heading-targets)
32435         (org-export-handle-invisible-targets)
32436         (org-export-target-internal-links)
32437         (org-export-remove-or-extract-drawers)
32438         (org-export-remove-archived-trees)
32439         (org-export-protect-quoted-subtrees)
32440         (org-export-protect-verbatim, org-export-protect-examples)
32441         (org-export-select-backend-specific-text)
32442         (org-export-mark-blockquote-and-verse)
32443         (org-export-remove-comment-blocks-and-subtrees)
32444         (org-export-handle-comments, org-export-mark-radio-links)
32445         (org-export-remove-special-table-lines)
32446         (org-export-normalize-links)
32447         (org-export-concatenate-multiline-links)
32448         (org-export-concatenate-multiline-emphasis): New functions,
32449         obtained from spliting the export preprocessor.
32451         * org-table.el (org-table-recalculate): Improve error message if
32452         the row number is invalid.
32454 2008-06-17  Carsten Dominik  <dominik@science.uva.nl>
32456         * org-archive.el (org-archive-save-context-info): Fix bugs in
32457         customization setup and docstring.
32459         * org-exp.el (org-export-html-style): Change the size of in the
32460         <pre> element to 90%.
32462 2008-06-17  Carsten Dominik  <dominik@science.uva.nl>
32464         * org.el (org-find-src-example-start): Function removed.
32465         (org-edit-src-find-region-and-lang): New function.
32467 2008-06-17  Carsten Dominik  <dominik@science.uva.nl>
32469         * org.el (org-edit-src-exit): New function.
32470         (org-exit-edit-mode): New minor mode.
32472         * org-exp.el (org-export-preprocess-string): Fix bug with removing
32473         comment-like lines from protected examples.
32475         * org.el (org-edit-src-example, org-find-src-example-start)
32476         (org-protect-source-example, org-edit-special): New functions.
32478 2008-06-17  Carsten Dominik  <dominik@science.uva.nl>
32480         * org-publish.el (org-publish-project-alist): Fix typo in
32481         docstring.
32482         (org-publish-project-alist): Handle :index-title property.
32484 2008-06-17  Carsten Dominik  <dominik@science.uva.nl>
32486         * org-export-latex.el (org-export-as-latex): Make sure region
32487         bounds are correct.  Parse subtree properties relating to export.
32489         * org-exp.el (org-export-add-options-to-plist): New function.
32490         (org-infile-export-plist): Use `org-export-add-options-to-plist'.
32492 2008-06-17  Carsten Dominik  <dominik@science.uva.nl>
32494         * org.el (org-default-properties): Add EXPORT_FILE_NAME and
32495         EXPORT_TITLE.
32497         * org-exp.el (org-export-get-title-from-subtree)
32498         (org-export-as-ascii, org-export-as-html): Make sure the original
32499         region-beginning and region-end are used, even after moving point.
32500         (org-export-get-title-from-subtree): Also try the EXPORT_TITLE
32501         property.
32503         * org-remember.el (org-remember-last-stored-marker): New variable.
32504         (org-remember-goto-last-stored): Use `org-goto-marker-or-bmk'.
32505         (org-remember-handler): Also use marker to remember
32506         last-stored position.
32508         * org.el (org-goto-marker-or-bmk): New function.
32510 2008-06-17  Carsten Dominik  <dominik@science.uva.nl>
32512         * org.el (org-file-properties): Rename from `org-local-properties'.
32513         (org-scan-tags): Take file tags into account.
32514         (org-tags-match-list-sublevels): Default changed to t.
32516         * org-exp.el (org-export-as-html): Close paragraph after a footnote.
32518         * org.el (org-update-parent-todo-statistics): New function.
32520         * org-exp.el (org-icalendar-store-UID): New option.
32521         (org-icalendar-force-UID): Option removed.
32522         (org-print-icalendar-entries): IMplement UIDs.
32524 2008-06-17  Carsten Dominik  <dominik@science.uva.nl>
32526         * org-mhe.el (org-mhe-follow-link): Fix bug in mhe searches.
32528 2008-06-17  Carsten Dominik  <dominik@science.uva.nl>
32530         * org-faces.el (org-column): Document how this face is being used
32531         and why sometimes the background faces shine through.
32533         * org-mhe.el (org-mhe-follow-link): Improve handling of searches.
32535         * org-publish.el (org-publish-attachment): Create publishing
32536         directory if it does not yet exist.
32538         * org-table.el (org-calc-default-modes): Change default number
32539         format to (float 8).
32541         * org.el (org-olpath-completing-read): New function.
32542         (org-time-clocksum-format): New option.
32543         (org-minutes-to-hh:mm-string): Use `org-time-clocksum-format'.
32545         * org-clock.el (org-clock-display, org-clock-out)
32546         (org-update-mode-line): Use `org-time-clocksum-format'.
32548         * org-colview.el (org-columns-number-to-string):
32549         Use `org-time-clocksum-format'.
32551 2008-06-17  Carsten Dominik  <dominik@science.uva.nl>
32553         * org-id.el: New file, move from contrib to core.
32555         * org-exp.el (org-icalendar-force-UID): New option.
32557 2008-06-17  Carsten Dominik  <dominik@science.uva.nl>
32559         * org-exp.el (org-print-icalendar-entries): Make sure DTEND is
32560         shifted by one day if there is a date range without an end time.
32562         * org.el (org-try-structure-completion): New function.
32564 2008-06-17  Carsten Dominik  <dominik@science.uva.nl>
32566         * org.el (org-set-font-lock-defaults): Improve fontification of
32567         description lists.
32568         (org-insert-item): Handle description lists.
32569         (org-adaptive-fill-function): Improve auto indentation in
32570         description lists.
32572         * org-exp.el (org-export-as-html, org-export-preprocess-string):
32573         Implement VERSE environment.
32574         (org-export-preprocess-string): Implement the COMMENT
32575         environment.
32577         * org-export-latex.el (org-export-latex-preprocess):
32578         Implement VERSE environment.
32580 2008-06-17  Carsten Dominik  <dominik@science.uva.nl>
32582         * org-jsinfo.el (org-infojs-opts-table): Add entry for FIXED_TOC
32583         option.
32585 2008-06-17  Carsten Dominik  <dominik@science.uva.nl>
32587         * org-table.el (orgtbl-to-tsv, orgtbl-to-csv): New functions.
32589         * org.el (org-quote-csv-field): New functions.
32591         * org-table.el (org-table-export-default-format): Remove :splice
32592         from default format, we get the same effect by not specifying
32593         :tstart and :tend.
32594         (org-table-export): Improve setup, distinguish better between
32595         interactive and non-interactive use, allow specifying the format
32596         on the fly, better protection against wrong file names.
32597         (orgtbl-to-generic): Fix documentation.  Do not require :tstart
32598         and :tend when :splice is omitted.
32600 2008-06-17  Carsten Dominik  <dominik@science.uva.nl>
32602         * org-clock.el (org-clock-select-task): Make sure the selection
32603         letters are 1-9 and A-Z, no special characters.
32605 2008-06-17  Carsten Dominik  <dominik@science.uva.nl>
32607         * org-exp.el (org-export-htmlize): New group.
32608         (org-export-htmlize-output-type)
32609         (org-export-htmlize-css-font-prefix): New options.
32610         (org-export-htmlize-region-for-paste): New function.
32611         (org-export-htmlize-generate-css): New command.
32613 2008-06-17  Carsten Dominik  <dominik@science.uva.nl>
32615         * org.el (org-set-visibility-according-to-property): New function.
32616         (org-ctrl-c-ctrl-c): Do not restart org-mode, just get the options
32617         and compute the regular expressions, and update font-lock.
32618         (org-property-re): Allow a dash in property names.
32620         * org-archive.el (org-extract-archive-file): Insert the file name
32621         without the path into the format, to allow the location format to
32622         contain a subdirectory.
32624         * org-agenda.el (org-agenda-post-command-hook): If point is at end
32625         of buffer, and the `org-agenda-type' property undefined, use the
32626         value from the character before.
32628         * org.el (org-add-planning-info): Don't let indentation for
32629         would-be timestamp become extra whitespace at the end of headline.
32631 2008-06-17  Carsten Dominik  <dominik@science.uva.nl>
32633         * org.el (org-remove-double-quotes, org-file-contents):
32634         New functions.
32636         * org-exp.el (org-infile-export-plist): Also parse the
32637         contents of #+SETUPFILE files, recursively.
32639         * org.el (org-set-regexps-and-options): Also parse the
32640         contents of #+SETUPFILE files, recursively.
32642         * org-exp.el (org-export-handle-include-files): New function.
32643         (org-export-preprocess-string):
32644         Call `org-export-handle-include-files'.
32646         * org.el (org-delete-property-globally)
32647         (org-delete-property, org-set-property): Ignore case during
32648         completion.
32649         (org-set-property): Use `org-completing-read' instead of
32650         `completing-read'.
32652         * org.el (org-complete-expand-structure-template): New,
32653         experimental function.
32654         (org-structure-template-alist): New, experimental option.
32655         (org-complete): Call `org-complete-expand-structure-template'.
32657 2008-06-17  Bastien Guerry  <bzg@gnu.org>
32659         * org-export-latex.el (org-export-latex-preprocess):
32660         Add support for blockquotes.
32662 2008-06-17  Carsten Dominik  <dominik@science.uva.nl>
32664         * org.el (org-read-date-analyze): Catch the case where only a
32665         weekday is given.
32667 2008-06-17  Carsten Dominik  <dominik@science.uva.nl>
32669         * org.el (org-set-font-lock-defaults): Make the description
32670         tag bold.
32672         * org-exp.el (org-export-as-html, org-close-li):
32673         Implement description lists.
32675 2008-06-17  Jason Riedy  <jason@acm.org>
32677         * org-table.el (*orgtbl-default-fmt*): New variable.
32678         (orgtbl-format-line): Use the value of *orgtbl-default-fmt*
32679         when there is no other fmt available.
32681         (orgtbl-to-generic): Allow an explicitly nil :tstart or
32682         :tend to suppress the appropriate string.
32684         (orgtbl-to-orgtbl): New function for translating to another orgtbl
32685         table.
32687 2008-06-17  Carsten Dominik  <dominik@science.uva.nl>
32689         * org.el (org-read-date-analyze): "." as an alias for "+0" in
32690         read date.
32692         * org-clock.el (org-clock-save-markers-for-cut-and-paste):
32693         New function.
32695         * org-agenda.el (org-agenda-save-markers-for-cut-and-paste):
32696         New function.
32698 2008-06-17  Carsten Dominik  <dominik@science.uva.nl>
32700         * org-clock.el (org-clock-find-position): Don't include notes
32701         into clock drawer.
32703         * org-archive.el (org-archive-subtree): No longer remove an
32704         extra line after cutting the subtree.  `org-cut-subtree' already
32705         takes care of this.
32707         * org-remember.el (org-remember-handler): Only kill the target
32708         buffer if it does not contain the running clock.
32710         * org.el (org-markers-to-move): New variable.
32711         (org-save-markers-in-region, org-check-and-save-marker)
32712         (org-reinstall-markers-in-region): New function.
32713         (org-move-subtree-down, org-copy-subtree): Remember relative
32714         marker positions before cutting.
32715         (org-move-subtree-down, org-paste-subtree): Restore relative
32716         marker positions after pasting.
32718         * org-remember.el (org-remember-clock-out-on-exit): New option.
32719         (org-remember-finalize): Clock out only if the setting in
32720         `org-remember-clock-out-on-exit' requires it.
32721         (org-remember-handler): Do the cleanup in the buffer, to make sure
32722         that the clock marker remains in tact.
32724 2008-06-17  Carsten Dominik  <dominik@science.uva.nl>
32726         * org-clock.el (org-clock-goto): Widen buffer if necessary.
32727         (org-clock-in): Make sure that also tasks outside the narrowed
32728         region will be clocked in correctly.
32729         (org-clock-insert-selection-line): Widen the buffer so that we can
32730         find the correct task heading.
32732         * org.el (org-base-buffer): New function.
32734         * org-exp.el (org-icalendar-cleanup-string): Make sure ","
32735         and ";" are escaped.
32736         (org-print-icalendar-entries): Also apply
32737         `org-icalendar-cleanup-string' to the headline, not only to the
32738         summary property.
32740 2008-06-17  Carsten Dominik  <dominik@science.uva.nl>
32742         * org-exp.el (org-export-preprocess-hook): New hook.
32743         (org-export-preprocess-string): Call `org-export-preprocess-hook'.
32745         * org.el (org-font-lock-hook): New variable.
32746         (org-font-lock-hook): New function.
32747         (org-set-font-lock-defaults): Call `org-font-lock-hook'.
32749 ;; Local Variables:
32750 ;; coding: utf-8
32751 ;; add-log-time-zone-rule: t
32752 ;; End:
32754         Copyright (C) 2008-2014 Free Software Foundation, Inc.
32756   This file is part of GNU Emacs.
32758   GNU Emacs is free software: you can redistribute it and/or modify
32759   it under the terms of the GNU General Public License as published by
32760   the Free Software Foundation, either version 3 of the License, or
32761   (at your option) any later version.
32763   GNU Emacs is distributed in the hope that it will be useful,
32764   but WITHOUT ANY WARRANTY; without even the implied warranty of
32765   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
32766   GNU General Public License for more details.
32768   You should have received a copy of the GNU General Public License
32769   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.