1 2010-05-28 Bastien Guerry <bzg@altern.org>
3 * org-timer.el (org-timer-set-timer): Use a prefix argument.
4 See the docstring of the function.
6 2010-05-24 Bastien Guerry <bzg@altern.org>
8 * org-timer.el (org-timer-set-timer): Fix bug about cancelling
11 2010-05-22 David Maus <dmaus@ictsoc.de>
13 * org-w3m.el (org-w3m-copy-for-org-mode)
14 (org-w3m-get-next-link-start, org-w3m-get-prev-link-start):
15 Get text property directly, not using macro `w3m-anchor'.
17 2010-05-21 Carsten Dominik <carsten.dominik@gmail.com>
19 * org.el (org-emph-re): Document the match groups.
21 2010-05-20 Bernt Hansen <bernt@norang.ca>
23 * org-clock.el (org-clock-in): Set `org-clock-clocking-in' to
24 t before calling `org-clock-out', so that that function can
25 know its call context.
27 2010-05-20 Bastien Guerry <bzg@altern.org>
29 * org-timer.el (org-timer-default-timer): New variable.
30 (org-timer-set-timer): Use the new variable. Also offer the
31 possibility to replace the current timer by a new one.
33 2010-05-20 Carsten Dominik <carsten.dominik@gmail.com>
35 * org.el (org-kill-note-or-show-branches): Hide subtree before
36 exposing the headings.
38 2010-05-19 Carsten Dominik <carsten.dominik@gmail.com>
40 * org.el (org-add-planning-info): Remove the empty line also
41 if there is no whitespace at all in there.
43 * org-table.el (org-table-align): Fix alignment of strings
44 with invisible characters.
46 2010-05-19 David Maus <dmaus@ictsoc.de>
48 * org.el (org-refile-cache-get): Return empty list of targets
49 when cache was cleared.
50 (org-clone-subtree-with-time-shift): Maybe create ID property
52 (org-clone-delete-id): New customization variable.
53 (org-clone-subtree-with-time-shift): Use customization
54 variable `org-clone-delete-id'.
55 (org-clone-subtree-with-time-shift): Remove empty property
56 drawer in cloned subtrees.
58 2010-05-17 Carsten Dominik <carsten.dominik@gmail.com>
60 * org.el (org-refile-use-cache): New option.
61 (org-refile-cache, org-refile-markers): New variable.
62 (org-refile-marker, org-refile-cache-clear)
63 (org-refile-cache-check-set, org-refile-cache-put)
64 (org-refile-cache-get): New function.
65 (org-get-refile-targets): Use the refile cache.
67 * org-clock.el (org-clock-sum): Don't include running clock if
68 the time block is wrong.
70 2010-05-16 John Wiegley <jwiegley@gmail.com>
72 * org-clock.el (org-clock-clock-in, org-clock-in): Added
73 parameter `start-time'.
74 (org-clock-resolve-clock): Added parameter `clock-out-time'.
75 If set, and resolve-to is a past time, then the clock out
76 event occurs at `clock-out-time' rather than at `resolve-to'.
77 In this case, `resolve-to' becomes the clock in time.
78 (org-clock-jump-to-current-clock): Created new global command
79 to reveal the current clock.
80 (org-clock-resolve): Added new commands g/G and j/J, and a
81 help window describing all commands and their meaning.
82 (org-clock-resolve-expert): New customization variable.
83 (org-find-open-clocks): Fixed a bug that caused discovered
84 clocks not to match up with the currently active clock.
85 (org-resolve-clocks): Changed the argument
86 `also-non-dangling-p' to `only-dangling-p', since due to a bug
87 this was the default behavior all along.
89 2010-05-16 David Maus <dmaus@ictsoc.de>
91 * org-id.el (org-id-uuid): New function. Return string with
92 random (version 4) UUID.
93 (org-id-method): Make 'uuid the new default value.
94 (org-id-new): Use `org-id-uuid' if call to uuidgen program
95 does not return a UUID.
97 2010-05-15 Carsten Dominik <carsten.dominik@gmail.com>
99 * org-latex.el (org-export-latex-format-image): Add support
100 for multicolumn figures in LaTeX.
102 2010-05-14 David Maus <dmaus@ictsoc.de>
104 * org.el (org-clone-subtree-with-time-shift): Remove ID
105 property of original subtree in cloned subtrees.
107 2010-05-14 Carsten Dominik <carsten.dominik@gmail.com>
109 * org-exp.el (org-export-format-source-code-or-example):
110 XEmacs compatibility.
112 * org-latex.el (org-export-latex-tables): Accept comma in
115 * org-docbook.el (org-export-docbook-xslt-stylesheet): New option.
116 (org-export-docbook-xslt-proc-command): Fix docstring.
117 (org-export-docbook-xsl-fo-proc-command): Fix docstring.
118 (org-export-as-docbook-pdf): Improve
119 formatting of the xslt command.
121 * org-exp.el (org-infile-export-plist): Check for XSLT setting.
123 * org.el (org-file-contents): Improve error message.
124 (org-set-regexps-and-options): Remove spaces at both ends.
126 2010-05-13 Carsten Dominik <carsten.dominik@gmail.com>
128 * org-docbook.el (org-export-as-docbook-pdf): Improve
129 formatting of the xslt command.
131 2010-05-13 Sebastian Rose <sebastian_rose@gmx.de>
133 * org-publish.el (org-publish-cache): Use one big hashmap for
134 each project defined in `org-publish-project-alist'. The
135 hashmap will hold pairs of our timestamp-filenames and
136 timestamps, as well as pairs of source-paths and associated
137 plists for arbitrary values. Currently only the files title is
140 The caching feature writes the information gathered during
141 publishing to disk and re-loads it from there the next time we
142 publish the same project. All this information will hence
143 survive a restart of emacs.
145 One cache file per publishing project is used. The contents of
146 that file is the elisp that fills the new variable
147 `org-publish-cache'. The cache file is named according to the
148 project with `.cache' added and lives in
149 `org-timestamp-directory'.
151 * org-publish.el (initialize-files-alist): This function and
152 the variable `org-publish-files-alist' are not used anymore in
153 favour of the reloadable cache and the functions for handling
156 * org-publish.el (org-publish-validate-link) was not used
159 * org-publish.el (org-publish-get-base-files): Added the
160 variable `sitemap-requested' to avoid sorting where possible.
161 See also end of `org-publish-get-base-files-1'.
163 * org-publish.el (org-publish-get-files): This function is
164 not called anymore. Removed.
166 * org-publish.el (org-publish-get-project-from-filename): does
167 not depend on a list of files anymore. Instead of laoding all
168 files of all, we walk `org-publish-project-alist' until we
169 find a project, where the properties :base-directory, :recursive,
170 :base-extension, :include and :exclude match.
172 * org-publish.el (org-publish-file): takes an additional
173 parameter to avoid superfloues loading and writing of the
174 cache file when used to publish a part of a project.
176 2010-05-13 Carsten Dominik <carsten.dominik@gmail.com>
178 * org.el (org-beginning-of-defun, org-end-of-defun): New
180 (org-mode): Install the `org-beginning-of-defun' and
181 `org-end-of-defun' functions.
182 (org-pretty-entities): New option.
183 (org-toggle-pretty-entities): New command.
184 (org-fontify-entities): New function.
185 (org-startup-options): New keywords for pretty entities.
186 (org-set-font-lock-defaults): Call the pretty entities
189 * org-latex.el (org-export-latex-keywords-maybe): Protect the
192 2010-05-13 Mikael Fornius <mfo@abc.se>
194 * org-habit.el (org-habit-build-graph): Help-echo date when
197 2010-05-13 Jan Böker <jan.boecker@jboecker.de>
199 * org.el (org-file-apps): Improve docstring to reflect
202 2010-05-12 Carsten Dominik <carsten.dominik@gmail.com>
204 * org.el (org-set-startup-visibility): Fix empty line display.
206 * org-latex.el (org-export-latex-links): Use the formatting
207 function of the link type, if it is available.
209 * org-table.el (org-table-get-remote-range): Return to
210 original buffer when retrieving remote reference.
212 * org.el (org-display-inline-images): Do the entire buffer,
213 not just the narrowed region. Clear the cache.
214 (org-display-inline-images): Match mode file paths.
216 2010-05-12 David Maus <dmaus@ictsoc.de>
218 * org-wl.el (org-wl-store-link-folder): Don't throw error when
219 called on WL folder group.
221 2010-05-10 Carsten Dominik <carsten.dominik@gmail.com>
223 * org.el (org-replace-escapes): Make sure the cdr is not nil.
224 (org-read-date): Make `M-v' and `C-v' scroll the popup calendar.
225 (org-mode): Revert comment syntax changes.
227 2010-05-09 Carsten Dominik <carsten.dominik@gmail.com>
229 * org.el (org-sparse-tree): Make `C-c / t' search for all TODO
230 keywords, and `C-c / T' for a specific one.
232 2010-05-08 Carsten Dominik <carsten.dominik@gmail.com>
234 * org.el (org-mode): Fix comment syntax settings.
236 * org-src.el (org-edit-src-allow-write-back-p): Define
239 * org.el (org-inline-image-overlays): New variable.
240 (org-toggle-inline-images, org-display-inline-images)
241 (org-remove-inline-images): New commands.
242 (org-mode-map): Define a key for `org-toggle-inline-images'.
244 2010-05-08 David Maus <dmaus@ictsoc.de>
246 * org-wl.el (org-wl-message-field): New function. Return
247 content of header field in message entity.
248 (org-wl-store-link): Call `org-wl-store-link-folder' or
249 `org-wl-store-link-message' depending on major-mode.
250 (org-wl-store-link-folder): New function. Store link to
252 (org-wl-store-link-message): New function. Store link to
254 (org-wl-store-link-message): Store link to message while
256 (org-wl-open): Don't try to jump to message when opening a
259 2010-05-08 David Maus <dmaus@ictsoc.de>
261 * org.el (org-replace-escapes): Avoid infinite loop when
262 replace string contains escape sequence it replaces.
264 2010-05-08 Carsten Dominik <carsten.dominik@gmail.com>
266 * org-crypt.el (org-crypt-key-for-heading): Use symmetric
267 encryption when now key is set.
269 2010-05-07 Carsten Dominik <carsten.dominik@gmail.com>
271 * org-table.el (org-table-recalculate-buffer-tables)
272 (org-table-iterate-buffer-tables): New commands.
274 * org.el (org-check-for-hidden): When there is a region, skip
277 2010-05-02 Dan Davison <davison@stats.ox.ac.uk>
279 * org-src.el (org-edit-src-code): allow-write-back-p had
280 erroneously been omitted from let binding
282 2010-04-30 Carsten Dominik <carsten.dominik@gmail.com>
284 * org-agenda.el (org-sorting-choice): New sorting type alpha.
285 (org-cmp-alpha): New defsubst.
286 (org-em): New defsubst.
287 (org-entries-lessp): Only compute needed comparisons.
289 2010-04-29 Carsten Dominik <carsten.dominik@gmail.com>
291 * org-html.el (org-format-org-table-html): Test all columns
294 2010-04-28 Carsten Dominik <carsten.dominik@gmail.com>
296 * org-latex.el (org-export-latex-treat-sub-super-char): Make
297 sure parenthesis matching is consistent.
299 * org-table.el (org-table-colgroup-line-p)
300 (org-table-cookie-line-p): New functions.
302 * org-exp.el (org-table-clean-before-export): Better tests for
303 colgroup and cookie lines.
305 2010-04-27 Carsten Dominik <carsten.dominik@gmail.com>
307 * org-agenda.el (org-agenda-goto): Push a mark before changing
310 * org-footnote.el (org-footnote): New group.
311 (org-footnote-section)
312 (org-footnote-tag-for-non-org-mode-files): Fix typos.
314 * org-list.el (org-end-of-item-text-before-children): Also do
315 the right thing at the end of a file.
317 * org.el (org-set-packages-alist, org-get-packages-alist): New
319 (org-export-latex-default-packages-alist)
320 (org-export-latex-packages-alist): Add extra flag to
321 each package, indicating if it should be used for snippets.
322 (org-create-formula-image): Add the snippet argument.
323 (org-splice-latex-header): New argument SNIPPET-P, pass it
324 through to `org-latex-packages-to-string'.
325 (org-latex-packages-to-string): New argument SNIPPET-P.
327 * org-latex.el (org-export-latex-make-header): Add the snippet
330 * org-docbook.el (org-export-as-docbook): Implement ordered
331 lists starting at some offset.
333 2010-04-26 Carsten Dominik <carsten.dominik@gmail.com>
335 * org.el (org-link-types, org-open-at-point): Add doi links.
337 * org-ascii.el (org-export-ascii-preprocess): Remove list
338 startcounter cookies.
340 * org-list.el (org-renumber-ordered-list): Respect counter
343 * org-latex.el (org-export-latex-lists): Accept ordered list
346 * org-html.el (org-export-as-html): Accept ordered list
349 * org-indent.el (org-indent-mode): Turn off `indent-tabs-mode'
350 which messes up alignment of tags.
352 2010-04-25 Carsten Dominik <carsten.dominik@gmail.com>
354 * org-clock.el (org-clock-cancel, org-clock-out): Make sure
355 the modeline display is removed.
357 * org-exp.el (org-export-format-drawer-function): Fix
360 * org-agenda.el (org-agenda-refile): New optional argument
362 (org-agenda-refile): Call `org-agenda-redo' unless NO-UPDATE
364 (org-agenda-bulk-action): Call the refile command with updates
365 suppressed - but arrange for `org-agenda-redo' to be called at
368 * org.el (org-mode): Make table mapping quiet.
369 (org-table-map-tables): New optional argument QUIETLY.
371 * org-ascii.el (org-export-ascii-preprocess): Make table
374 * org-html.el (org-export-as-html, org-html-level-start): Change
375 XHTML IDs to not use dots.
377 * org-exp.el (org-export-define-heading-targets): Change
378 XHTML IDs to not use dots.
380 * org-docbook.el (org-export-docbook-level-start): Change
381 XHTML IDs to not use dots.
383 * org-latex.el (org-export-as-latex): Make sure that the
384 result buffer is in latex-mode.
386 * org.el (org-shiftup-final-hook, org-shiftdown-final-hook)
387 (org-shiftleft-final-hook, org-shiftright-final-hook): New
390 2010-04-24 Carsten Dominik <carsten.dominik@gmail.com>
392 * org-table.el (org-table-justify-field-maybe): Make sure that
393 inserting a value does not turn a line into a hline.
395 2010-04-23 Carsten Dominik <carsten.dominik@gmail.com>
397 * org-clock.el (org-clock-sum): New argument HEADLINE-FILTER.
398 (org-clock-sum): Add property to selected headlines.
399 (org-dblock-write:clocktable): Make tags matcher.
401 * org.el (org-set-autofill-regexps): XEmacs compatibility.
403 * org-latex.el (org-export-latex-set-initial-vars): Allow "-"
404 in latex class definitions
406 * org.el (org-shiftup-hook, org-shiftdown-hook)
407 (org-shiftleft-hook, org-shiftright-hook): New hooks.
409 * org-entities.el (org-entities): Use \land and \lor for logical
412 * org.el (org-shiftmetaleft, org-shiftmetaright): Call the subtree
413 indentation commands.
414 (org-hidden-tree-error): New defsubst.
415 (org-metaleft, org-metaright): Check for hidden stuff and throw an
417 (org-check-for-hidden): New function.
419 * org-list.el (org-item-re): New function.
420 (org-at-item-p): Use `org-item-re'.
421 (org-end-of-item-text-before-children): New function.
422 (org-outdent-item, org-indent-item): Arrange for leaving the
424 (org-outdent-item-tree, org-indent-item-tree): New argument
426 (org-indent-item-tree): Use `org-end-of-item-text-before-children'
427 to find the end for processing while ignoring the subtree.
429 * org-publish.el (org-publish-sitemap-sort-alphabetically)
430 (org-publish-sitemap-sort-folders)
431 (org-publish-sitemap-sort-ignore-case): New options.
433 2010-04-22 Carsten Dominik <carsten.dominik@gmail.com>
435 * org-publish.el (org-publish-compare-directory-files): Fix sorting.
437 * org-compat.el (org-get-x-clipboard-compat): Use (featurep 'xemacs).
439 * org-publish.el (org-publish-project-alist): Update docstring.
440 (org-publish-file-title-cache): New variable.
441 (org-publish-initialize-files-alist): Initialize
442 `org-publish-initialize-files-alist' to nil.
443 (org-publish-sort-directory-files): New function.
444 (org-publish-projects): Access the new properties.
445 (org-publish-find-title): Use the file title cache.
446 (org-publish-find-title): Build the file title cache.
447 (org-publish-get-base-files-1): Sort files.
448 (org-publish-aux-preprocess): Do not throw an error when before
449 the first headline. Allow an empty target, meaning to link just
451 (org-publish-index-generate-theindex.inc): Check if there is
452 actually a target and only then add it to the link.
453 (org-publish-projects): Fix a remaining issue with the last commit
455 * org-html.el (org-export-as-html): Treat verse as open/close
457 (org-export-html-close-lists-maybe): Allow to splice raw HTML into
460 2010-04-22 Dan Davison <davison@stats.ox.ac.uk>
462 * org-src.el (org-edit-src-code): Allow the org-src edit buffer to
463 be used in a read-only mode.
464 (org-edit-src-code): Different message in read-only mode
466 2010-04-21 Carsten Dominik <carsten.dominik@gmail.com>
468 * org-src.el (org-edit-src-find-region-and-lang): Test for
469 table.el as late as possible.
471 * org-colview-xemacs.el: Make sure this file is never loaded into
472 Emacs. Remove all tests for XEmacs.
474 * org-colview.el: Make sure this file is never loaded into XEmacs.
476 * org-agenda.el (org-highlight, org-unhighlight): Use direct
479 * org.el (org-key): Apply the translations defined in
480 `org-xemacs-key-equivalents'.
482 * org-mouse.el (org-mode-hook): Use `org-defkey'.
484 * org-compat.el (org-xemacs-key-equivalents): New constant.
486 2010-04-20 Carsten Dominik <carsten.dominik@gmail.com>
488 * org-inlinetask.el (org-inlinetask-defaut-state): New option.
489 (org-inlinetask-insert-task): Use `org-inlinetask-defaut-state'.
490 Obey `org-odd-levels-only'.
492 * org-compat.el (org-find-overlays): Use overlays-in/at.
494 * org.el (org-remove-empty-overlays-at)
495 (org-outline-overlay-data, org-hide-block-toggle)
496 (org-format-latex, org-context): Use overlays-in/at.
498 * org-src.el (org-edit-src-exit): Use overlays-in/at.
500 * org-agenda.el (org-agenda-mark-clocking-task)
501 (org-agenda-fontify-priorities, org-agenda-dim-blocked-tasks)
502 (org-agenda-entry-text-hide)
503 (org-agenda-fix-tags-filter-overlays-at)
504 (org-agenda-bulk-remove-overlays): Use overlays-in/at.
506 * org-compat.el (org-overlays-at): Function removed.
507 (org-overlays-in): Function removed.
509 2010-04-19 Bastien Guerry <bzg@altern.org>
511 * org-clock.el (org-clock-set-current): Just return the headline
512 itself, strip the TODO keyword, the priority cookie and the tags.
514 2010-04-18 Carsten Dominik <carsten.dominik@gmail.com>
516 * org-compat.el (org-xemacs-without-invisibility): New macro.
517 (org-xemacs-without-invisibility): New macro.
518 (org-indent-to-column, org-indent-line-to, org-move-to-column):
519 Redefine using the macro `org-xemacs-without-invisibility'.
521 * org.el (org-mode, org-org-menu): Use `add-to-invisibility-spec'.
523 * org-table.el (orgtbl-mode): Use `add-to-invisibility-spec'.
525 * org-compat.el (org-make-overlay, org-delete-overlay)
526 (org-overlay-start, org-overlay-end, org-overlay-put)
527 (org-overlay-get, org-overlay-move, org-overlay-buffer): Functions
529 (org-add-to-invisibility-spec): Function removed.
531 * org-html.el (org-export-as-html-and-open): Add argument to
534 * org-habit.el (require): `calendar' is now required already by
537 * org-clock.el (require): `calendar' is now required already by
540 * org-agenda.el (require, org-timeline, org-agenda-list)
541 (org-todo-list, org-agenda-to-appt): `calendar' is now required
542 already by org.el on top level.
544 * org.el (org-export-latex-fix-inputenc): Declare function.
546 * org-agenda.el (org-agenda-goto-calendar): Do not bind obsolete
549 * org.el (calendar): Require calendar now on top level in org.el
550 and define aliases to new variables when needed.
551 (org-read-date, org-goto-calendar): Do not bind obsolete
554 * org-clock.el (org-clock-out, org-clock-cancel): Get rid of
555 compilation warning, add comment that this cannot be done with
556 `with-current-buffer'.
558 * org-wl.el (org-wl-open): Use `with-current-buffer'.
560 * org.el (overlay, org-remove-empty-overlays-at)
561 (org-outline-overlay-data, org-set-outline-overlay-data)
562 (org-show-block-all, org-hide-block-toggle)
563 (org-highlight-new-match, org-remove-occur-highlights)
564 (org-tags-overlay, org-fast-tag-selection, org-date-ovl)
565 (org-read-date, org-read-date-display, org-eval-in-calendar)
566 (org-format-latex, org-context)
567 (org-speedbar-restriction-lock-overlay)
568 (org-speedbar-set-agenda-restriction): Use the normal overlay API.
570 * org-table.el (org-table-add-rectangle-overlay)
571 (org-table-remove-rectangle-highlight)
572 (org-table-overlay-coordinates)
573 (org-table-toggle-coordinate-overlays): Use the normal overlay
576 * org-src.el (org-edit-src-code, org-edit-fixed-width-region)
577 (org-edit-src-exit, org-src-mode-configure-edit-buffer): Use the
580 * org-colview.el (org-columns-new-overlay)
581 (org-columns-display-here, org-columns-remove-overlays)
582 (org-columns-edit-value, org-columns-next-allowed-value)
583 (org-columns-update): Use the normal overlay API.
585 * org-clock.el (org-clock-out, org-clock-cancel)
586 (org-clock-put-overlay, org-clock-remove-overlays): Use the normal
589 * org-agenda.el (org-agenda-mark-filtered-text)
590 (org-agenda-mark-clocking-task, org-agenda-fontify-priorities)
591 (org-agenda-dim-blocked-tasks, org-agenda-entry-text-show-here)
592 (org-agenda-entry-text-hide)
593 (org-agenda-restriction-lock-overlay)
594 (org-agenda-set-restriction-lock)
595 (org-agenda-filter-by-tag-hide-line)
596 (org-agenda-fix-tags-filter-overlays-at)
597 (org-agenda-filter-by-tag-show-all, org-hl)
598 (org-agenda-goto-calendar, org-agenda-bulk-mark)
599 (org-agenda-bulk-remove-overlays): Use the normal overlay API.
601 * org-freemind.el (org-freemind-from-org-mode-node)
602 (org-freemind-from-org-mode, )
603 (org-freemind-from-org-sparse-tree, org-freemind-to-org-mode): Use
604 interactive-p instead of called-interactively, because this is
605 backward compatible with older Emacsen I still support..
607 2010-04-16 Carsten Dominik <carsten.dominik@gmail.com>
609 * org-exp.el (org-export-define-heading-targets): Fix bug in
610 regexp finding ID and CUSTOM_ID properties.
612 2010-04-14 Carsten Dominik <carsten.dominik@gmail.com>
614 * org-footnote.el (org-footnote-goto-previous-reference): Renamed
615 from `org-footnote-goto-next-reference'.
617 * org.el (org-auto-repeat-maybe): Only record LAST_REPEAT if
618 org-log-repeat is non-nil, or if there is clocking data in the
621 * org-crypt.el (org-encrypt-entry): Improve mapping behavior.
623 2010-04-13 Carsten Dominik <carsten.dominik@gmail.com>
625 * org.el (org-align-all-tags): New command.
627 2010-04-13 David Maus <dmaus@ictsoc.de>
629 * org-wl.el (org-wl-link-remove-filter): New customizable
630 variable. If non-nil, filter conditions are stripped when storing
631 link to message in filter folder.
632 (org-wl-shimbun-prefer-web-links): New customizable variable. If
633 non-nil, links to shimbun messages are created as web links to
635 (org-wl-nntp-prefer-web-links): New customizable variable. If
636 non-nil, links to nntp message are created as web links to gmane
638 (org-wl-namazu-default-index): New customizable variable.
639 Directory of namazu search index that should be used as default
640 when opening a link in a search folder.
641 (org-wl-folder-types): New constant. Wanderlust folder type
643 (org-wl-folder-type): New function. Return type of Wanderlust
645 (org-wl-store-link): Create web links for shimbun or nntp messages
646 and strip filter conditions depending on customizable variables.
647 (org-wl-open): Open namazu search folder for message when called
650 2010-04-12 Carsten Dominik <carsten.dominik@gmail.com>
652 * org.el (org-remove-if, org-remove-if-not): New functions.
653 (org-open-file): Use internal remove-if functions.
655 2010-04-10 Jan Böcker <jan.boecker@jboecker.de>
657 * org.el (org-file-apps-entry-match-against-dlink-p): new function.
658 (org-file-apps-ex): remove variable.
659 (org-open-file): Integrate org-file-apps-ex functionality back
660 into org-file-apps, and decide whether to match a regexp against
661 the link or the filename using org-file-apps-entry-uses-grouping-p.
663 2010-04-09 Jan Böcker <jan.boecker@jboecker.de>
665 * org.el (org-file-apps-ex): new variable.
666 (org-open-file): Before considering org-file-apps, first match the
667 regexps from org-file-apps-ex against the whole link. See
668 docstring of org-file-apps-ex.
670 2010-04-12 Carsten Dominik <carsten.dominik@gmail.com>
672 * org.el (org-export-latex-default-packages-alist): Remove
674 (org-todo-repeat-to-state): New variable.
675 (org-auto-repeat-maybe): Allow user-selected target states.
676 (org-default-properties): Add the new property REPEAT_TO_STATE.
678 2010-04-09 Carsten Dominik <carsten.dominik@gmail.com>
680 * org-mobile.el (org-mobile-check-setup): Make sure that there is
681 a binary to compute checksums.
683 2010-04-08 Carsten Dominik <carsten.dominik@gmail.com>
685 * org.el (org-insert-link): Find the link buffer on visible
687 (org-export-latex-default-packages-alist): hyperref must be loaded
690 2010-04-07 Carsten Dominik <carsten.dominik@gmail.com>
692 * org-latex.el (org-export-latex-preprocess): Do not yet protect
693 defined entities - these will be taken care of later.
694 (org-export-latex-special-chars): Post-process entity replacement.
695 (org-export-latex-fontify-headline): Do not yet protect defined
696 entities - these will be taken care of later.
697 (org-export-latex-tables, org-export-latex-links): Format the
700 * org-entities.el (org-entities-user): Fix typo.
702 * org.el (org-prepare-agenda-buffers): Uniquify TODO keywords
704 * org-entities.el (org-entities-user): Improve docstring.
706 2010-04-06 Carsten Dominik <carsten.dominik@gmail.com>
708 * org-entities.el (org-macs): Require org-macs, to be sure that we
709 have `declare-function' defined.
711 2010-04-05 Carsten Dominik <carsten.dominik@gmail.com>
713 * org-latex.el (org-export-latex-classes): Update docstring.
715 * org.el (org-format-latex-header): Add cookies to the header.
716 (org-splice-latex-header): Implement placement according to
719 2010-04-04 Carsten Dominik <carsten.dominik@gmail.com>
721 * org-publish.el (org-publish-aux-preprocess): Control case
724 2010-04-04 Bastien Guerry <bzg@altern.org>
726 * org.el (org-splice-latex-header): Fix typo.
728 2010-04-04 Carsten Dominik <carsten.dominik@gmail.com>
730 * org-latex.el (org-export-latex-make-header): Use
731 `org-splice-latex-header' to build the header.
732 (org-export-latex-classes): Update docstring.
734 * org.el (org-splice-latex-header): New function.
735 (org-create-formula-image): Use `org-splice-latex-header' to build
738 * org-gnus.el (org-gnus-follow-link): Handle nndoc backend.
740 2010-04-03 Carsten Dominik <carsten.dominik@gmail.com>
742 * org.el (org-export-latex-packages-alist)
743 (org-export-latex-default-packages-alist): Fix docstring to
744 reflect the expected structure.
746 * org-docbook.el (org-docbook-do-expand): Fix bug with variable names.
747 (org-export-docbook-finalize-table): Make use of label for tables.
749 2010-04-02 Carsten Dominik <carsten.dominik@gmail.com>
751 * org-attach.el (org-attach-commit): Split on newlines.
753 * org.el (org-export-latex-default-packages-alist): Use list
754 instead of cons for the entries.
756 2010-04-01 Carsten Dominik <carsten.dominik@gmail.com>
758 * org-entities.el (org-entity-get-representation): Catch the case
759 that there is not entry in the list.
761 * org-mobile.el (org-mobile-use-encryption)
762 (org-mobile-encryption-tempfile, org-mobile-encryption-password):
764 (org-mobile-check-setup): CHeck the encryption setup.
765 (org-mobile-copy-agenda-files, org-mobile-sumo-agenda-command)
766 (org-mobile-create-sumo-agenda): Use encryption code.
767 (org-mobile-encrypt-and-move): New function.
768 (org-mobile-encrypt-file, org-mobile-decrypt-file): New
770 (org-mobile-move-capture): Decrypt the capture file.
772 * org.el (org-entities): Require the new file.
773 (org-export-latex-default-packages-alist): New variable.
774 (org-complete): Use new entity code for completion.
775 (org-create-formula-image): Use the new packages variable.
777 * org-latex.el (org-export-latex-classes): Remove the standard
778 packages from the class headers.
779 (org-export-latex-make-header): Use the new package variable.
780 (org-export-latex-special-chars): Better regexp for entities, to
781 support entity name that contain numbers.
782 (org-export-latex-treat-backslash-char): Use the new entity code.
784 * org-html.el (org-html-do-expand): Use the new entity code.
786 * org-exp.el (org-export): Add the new export commands.
787 (org-html-entities): Constant removed.
788 (org-export-visible): Add the new export commands.
790 * org-entities.el: New file.
792 * org-docbook.el (org-docbook-do-expand): Use new entity code.
794 * org-ascii.el (org-export-ascii-entities): New variable.
795 (org-export-as-latin1, org-export-as-latin1-to-buffer)
796 (org-export-as-utf8, org-export-as-utf8-to-buffer): New commands.
797 (org-export-as-encoding): New function.
798 (org-export-ascii-preprocess): Call `org-ascii-replace-entities'.
799 (org-ascii-replace-entities): New function.
801 2010-03-31 Carsten Dominik <carsten.dominik@gmail.com>
803 * org-html.el (org-html-level-start): Catch the case that target
806 2010-03-31 Dan Davison <davison@stats.ox.ac.uk>
808 * org.el (org-appearance): Change Customize group variable name
809 from org-font-lock to org-appearance, and change tag from "Org
810 Font Lock" to "Org Appearance"
811 (org-odd-levels-only): Change Customize group variable name
812 (org-level-color-stars-only): Change Customize group variable name
813 (org-hide-leading-stars): Change Customize group variable name
814 (org-hidden-keywords): Change Customize group variable name
815 (org-fontify-done-headline): Change Customize group variable name
816 (org-fontify-emphasized-text): Change Customize group variable name
817 (org-fontify-whole-heading-line): Change Customize group variable name
818 (org-highlight-latex-fragments-and-specials): Change Customize
820 (org-hide-emphasis-markers): Change Customize group variable name
821 (org-emphasis-alist): Change Customize group variable name
822 (org-emphasis-regexp-components): Change Customize group variable
824 (org-modules): Remove mention of org-R
826 * org-faces.el (org-faces): Change Customize group variable name
828 2010-03-29 Carsten Dominik <carsten.dominik@gmail.com>
830 * org-agenda.el (org-diary-last-run-time): New variable.
831 (org-diary): prepare agenda buffers only if last call was some
834 * org-html.el (org-export-html-preprocess): Replace \ref macros
836 (org-format-org-table-html): Add the label as an anchor.
838 * org-docbook.el (org-export-docbook-format-image): Do some
839 formatting on captions.
841 * org-latex.el (org-export-latex-tables, org-export-latex-links):
842 Do some formatting on captions.
844 * org-html.el (org-export-html-format-image)
845 (org-format-org-table-html): Do some formatting on captions.
847 2010-03-28 Dan Davison <davison@stats.ox.ac.uk>
849 * org.el (org-hidden-keywords): New customizable variable. This is
850 a list of symbols specifying which of the special keywords #+DATE,
851 #+AUTHOR, #+EMAIL and #+TITLE should be hidden by font lock.
852 (org-fontify-meta-lines-and-blocks): Changes to font-lock code
853 implementing new faces and hiding behaviour.
855 * org-faces.el (org-document-title): New face for #+TITLE lines
856 (org-document-info): New face for #+DATE, #+AUTHOR, #+EMAIL lines
857 (org-document-info-keyword): New face for #+DATE, #+AUTHOR, #+EMAIL keywords
859 2010-03-28 Carsten Dominik <carsten.dominik@gmail.com>
861 * org-publish.el (org-publish-sanitize-plist): New function to
862 rename "index" properties to "sitemap". Do this renaming
864 (org-publish-with-aux-preprocess-maybe): New macro.
865 (org-publish-org-to-pdf, org-publish-org-to-html): Use the new
867 (org-publish-aux-preprocess)
868 (org-publish-index-generate-theindex.inc): New function.
870 2010-03-27 Carsten Dominik <carsten.dominik@gmail.com>
872 * org-table.el (org-table-align): Interpret <N> at fixed width,
873 not as maximum width.
875 2010-03-26 Carsten Dominik <carsten.dominik@gmail.com>
877 * org-exp.el (org-export-author-info, org-export-email-info): Fix
880 * org-beamer.el (org-beamer-select-environment): Renamed from
881 `org-beamer-set-environment-tag'. Improve docstring.
883 * org-freemind.el (org-freemind-write-mm-buffer): Fix another
884 problem with odd levels.
886 * org-ascii.el (org-export-as-ascii): Export email only if the
889 * org-docbook.el (org-export-as-docbook): Export email only if the
892 * org-html.el (org-export-as-html): Export email only if the
895 * org-exp.el (org-export-email-info): New option.
896 (org-export-plist-vars): Add entry for `org-export-email'.
898 2010-03-25 Carsten Dominik <carsten.dominik@gmail.com>
900 * org-table.el (org-table-goto-line): Fix typo.
902 2010-03-25 Mikael Fornius <mfo@abc.se>
904 * org.el (org-agenda-files): Typo.
905 (org-read-agenda-file-list): Add optional argument to help
906 `org-store-new-agenda-file-list' to remember un-expanded file
907 names. Expand file names relative to `org-directory'.
908 (org-store-new-agenda-file-list): Keep un-expanded file names when
909 saving, if available.
910 (org-agenda-files): Update documentation.
912 2010-03-25 Carsten Dominik <carsten.dominik@gmail.com>
914 * org-ascii.el (org-export-as-ascii): Catch the case of exporting
915 a buffer with no file name attached.
917 * org.el (org-log-refile): New option.
918 (org-log-note-headings): Add a heading for refiling.
919 (org-startup-options): Add keywords for logging of the refile
921 (org-refile): Add logging action.
922 (org-add-log-note): Allow for refiling action.
924 * org-agenda.el (org-agenda-bulk-action): Make sure
925 `org-log-refile' is not `note' during a bulk action.
927 2010-03-24 Carsten Dominik <carsten.dominik@gmail.com>
929 * org.el (org-map-dblocks): Use save-excursion to remember the
932 * org-attach.el (org-attach-commit): Remove dependence on xargs.
933 (org-attach-delete-one): Commit after deleting a file.
935 * org-latex.el (org-export-latex-fontify): Do not mistake table.el
936 borders for strike-through emphasis.
938 * org-freemind.el (org-freemind-write-mm-buffer): Simplify the
939 handling of odd levels.
941 * org-agenda.el (org-agenda-todo-ignore-deadlines): Document `past'
943 (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item):
944 Handle `past' and `future' values.
946 * org.el (org-read-agenda-file-list): Interpret file names
947 relative to org-directory and allow environment variables and
950 * org-latex.el (org-export-latex-special-chars): Allow a
951 parenthesis before an exponent or subscript.
953 2010-03-23 Dan Davison <davison@stats.ox.ac.uk>
955 * org-src.el (org-edit-src-exit): When returning from code edit
956 buffer, if code block is hidden, leave point at start of
959 2010-03-23 Carsten Dominik <carsten.dominik@gmail.com>
961 * org.el (org-insert-heading): Do not remove all spaces if the
964 * org-indent.el (org-indent): Fix group name.
966 2010-03-21 Carsten Dominik <carsten.dominik@gmail.com>
968 * org-table.el (org-table-goto-column): Fix forcing a non-existing
970 (org-table-get, org-table-put, org-table-goto-line)
971 (org-table-current-line): New functions.
973 2010-03-21 Carsten Dominik <carsten.dominik@gmail.com>
975 * org-crypt.el (org-reveal-start-hook): Add a decryption function
977 (org-decrypt-entries, org-encrypt-entries, org-decrypt-entry): Add
980 * org.el (org-point-at-end-of-empty-headline)
981 (org-level-increment, org-get-previous-line-level): New function.
982 (org-cycle-level): Rewritten to be independent of when this
984 (org-in-regexps-block-p): New function.
985 (org-reveal-start-hook): New hook.
986 (org-reveal): Run new hook.
988 2010-03-19 Carsten Dominik <carsten.dominik@gmail.com>
990 * org-latex.el (org-export-latex-keywords): Start a new paragraph
991 after time keywords, do not add "\newline".
993 * org-html.el (org-export-as-html): Avoid double # in href.
995 * org.el (org-refile-get-location): Catch an invalid target
998 2010-03-18 Carsten Dominik <carsten.dominik@gmail.com>
1000 * org-agenda.el (org-agenda-add-entry-to-org-agenda-diary-file):
1001 Make sure the behavior regarding to extracting time is
1004 2010-03-17 Stephen Eglen <stephen@gnu.org>
1006 * org-agenda.el (org-agenda-insert-diary-extract-time): New
1008 (org-agenda-add-entry-to-org-agenda-diary-file): Use this new
1009 variable rather than `org-agenda-search-headline-for-time'.
1011 2010-03-17 Carsten Dominik <carsten.dominik@gmail.com>
1013 * org-list.el (org-fix-bullet-type): Improve cursor positioning.
1015 2010-03-15 Carsten Dominik <carsten.dominik@gmail.com>
1017 * org.el (org-adaptive-fill-regexp-backup): New variable.
1018 (org-set-autofill-regexps): Store a backup of
1019 `adaptive-fill-regexp'.
1020 (org-adaptive-fill-function): Fix filling of comments and ordered
1021 lists. If there is no other match, till try adaptive fill.
1023 2010-03-15 John Wiegley <jwiegley@gmail.com>
1025 * org-agenda.el (org-agenda-include-deadlines): Added new
1026 customization variable to determine whether unscheduled tasks
1027 should appear in the agenda solely because of their deadline.
1028 Default to true, which was the previous behavior (it just wasn't
1030 (org-agenda-mode-map, org-agenda-view-mode-dispatch): Bind ! in
1031 the agenda to show/hide deadline tasks.
1032 (org-agenda-menu): Added menu option for show/hide deadlines.
1033 (org-agenda-list): Make the agenda list sensitive to the value of
1034 `org-agenda-include-deadlines'.
1035 (org-agenda-toggle-deadlines): New function to toggle the value of
1036 `org-agenda-include-deadlines' and repaint the modeline
1038 (org-agenda-set-mode-name): Show "Deadlines" in the agenda
1039 modeline if deadline tasks are being displayed.
1041 2010-03-14 Carsten Dominik <carsten.dominik@gmail.com>
1043 * org-table.el (org-table-eval-formula): Replace $# and @# by
1044 current column and row number.
1046 2010-03-12 Carsten Dominik <carsten.dominik@gmail.com>
1048 * org.el (org-set-property, org-delete-property): Go back to
1049 prompting for the property.
1051 * org-latex.el (org-export-latex-make-header): Fully process
1053 (org-export-latex-fontify-headline): Allow several arguments, not
1055 (org-export-latex-fix-inputenc): Catch the error when
1056 `latexenc-coding-system-to-inputenc' is not defined.
1058 * org-agenda.el (org-agenda-skip-if-todo): New function.
1059 (org-agenda-skip-if): Add conditions for TODO keywords.
1060 (org-agenda-skip-if): Document the new todo conditions.
1062 2010-03-11 Mikael Fornius <mfo@abc.se>
1064 * org.el (org-at-property-p): Check if we are inside a property
1065 drawer not just any drawer.
1066 (org-set-property, org-delete-property): When cursor is on a
1067 property key value pair do not prompt for property name instead
1069 (org-ctrl-c-ctrl-c): Still do org-property-action when cursor is
1070 on the first line of a property drawer.
1071 (org-property-end-re): Spell check.
1073 2010-03-11 Carsten Dominik <carsten.dominik@gmail.com>
1075 * org-exp.el (org-export-attach-captions-and-attributes): Add the
1076 properties to the entire table, in case the first line is
1079 * org-archive.el (org-archive-reversed-order): New option.
1080 (org-archive-subtree, org-archive-to-archive-sibling): Use the new
1081 option `org-archive-reversed-order'.
1083 2010-03-10 Carsten Dominik <carsten.dominik@gmail.com>
1085 * org-agenda.el (org-agenda-entry-types): New variable.
1086 (org-agenda-list): Use `org-agenda-entry-types'.
1087 (org-agenda-custom-commands-local-options): Support for setting
1088 `org-agenda-entry-types' as an option.
1089 (org-diary): Shift some documentation from here to the variable
1090 `org-agenda-entry-types'.
1092 2010-03-09 Carsten Dominik <carsten.dominik@gmail.com>
1094 * org-latex.el (org-export-latex-make-header): Apply macros in
1097 * org-clock.el (org-clocking-buffer, org-clocking-p): New function.
1098 (org-clock-select-task, org-clock-notify-once-if-expired)
1099 (org-clock-in, org-clock-out, org-clock-cancel, org-clock-goto)
1100 (org-clock-out-if-current, org-clock-save): Use the new functions.
1102 2010-03-08 Carsten Dominik <carsten.dominik@gmail.com>
1104 * org-docbook.el (org-export-as-docbook): Remove unnecessary
1106 (org-export-as-docbook): Remove unnecessary newline.
1107 (org-export-as-docbook): Fix problem with double footnote
1108 reference in one place.
1110 * org-exp.el (org-export-format-source-code-or-example): Remove
1111 unnecessary newline.
1113 * org.el (org-deadline, org-schedule): Allow rescheduling entries
1116 * org-table.el (org-table-convert-refs-to-rc): Better way to catch
1117 function calls that look like references.
1119 * org.el (org-open-at-point): Get link abbreviations from
1122 2010-03-07 Carsten Dominik <carsten.dominik@gmail.com>
1124 * org-table.el (org-table-convert-refs-to-rc): Do not read arctan2
1127 2010-03-05 Carsten Dominik <carsten.dominik@gmail.com>
1129 * org.el (org-link-unescape): Solve issue with lower-case escapes.
1131 2010-03-04 Carsten Dominik <carsten.dominik@gmail.com>
1133 * org-latex.el (org-export-latex-classes): Add
1134 \usepackage{latexsym} to all classes.
1136 2010-03-03 Carsten Dominik <carsten.dominik@gmail.com>
1138 * org-html.el (org-export-as-html): Do not allow protected lines
1139 into the table of contents.
1141 * org-latex.el (org-export-latex-special-chars): Find subsequent
1142 occurrences of special characters.
1143 (org-export-latex-tables): Do not convert table-like stuff that is
1146 2010-03-01 Carsten Dominik <carsten.dominik@gmail.com>
1148 * org-list.el (org-toggle-checkbox): No errors when updating
1149 checkbox count fails because there is no heading.
1151 2010-02-27 Carsten Dominik <carsten.dominik@gmail.com>
1153 * org-clock.el (org-clock-report-include-clocking-task): New
1155 (org-clock-sum): Add the current clocking task.
1157 2010-02-26 Carsten Dominik <carsten.dominik@gmail.com>
1159 * org.el (org-cycle): Print a message when in a table.el table.
1160 (org-edit-special): Recognize the table.el context.
1161 (org-ctrl-c-ctrl-c): Print a message when in a table.el table.
1163 * org-src.el (org-at-table.el-p): Declare.
1164 (org-edit-src-code): Handle a special case for table.el editing.
1165 (org-edit-src-find-region-and-lang): Recognize the table.el
1168 * org-latex.el (org-export-latex-tables): Convert table.el
1170 (org-export-latex-convert-table.el-table): New function.
1172 * org-html.el (org-html-expand): Fix table.el export.
1174 * org-latex.el (org-export-latex-preprocess): Protect footnotes in
1177 * org-id.el (org-id-find-id-file): Fix bug when there is no hash
1178 table for the id locations.
1180 * org.el (org-read-date-analyze): Match American-style dates, like
1181 5/30 or 5/13/7. Make sure cal-iso.el is loaded. Don't force he
1182 current year when reading ISO and American dates.
1184 2010-02-25 Carsten Dominik <carsten.dominik@gmail.com>
1186 * org.el (org-face-from-face-or-color): New function.
1187 (org-get-todo-face, org-font-lock-add-priority-faces)
1188 (org-get-tag-face): Use `org-face-from-face-or-color'.
1190 * org-faces.el (org-todo-keyword-faces, org-priority-faces): Allow
1191 simple colors as values.
1192 (org-faces-easy-properties): New option.
1194 * org-agenda.el (org-agenda-set-mode-name): Show if the agenda is
1195 restricted, as an agenda mode.
1196 (org-agenda-fontify-priorities): Allow simple colors as values.
1198 2010-02-25 Bastien Guerry <bzg@altern.org>
1200 * org-timer.el (org-timer-current-timer): Renamed from
1201 `org-timer-last-timer'.
1202 (org-timer-timer1, org-timer-timer2, org-timer-timer3): Removed.
1203 (org-timer-cancel-timer, org-timer-show-remaining-time)
1204 (org-timer-set-timer): Update to use only one timer.
1206 * org.el (org-set-property): Remove useless space in the prompt.
1208 2010-02-25 Carsten Dominik <carsten.dominik@gmail.com>
1210 * org-html.el (org-export-html-style-default): Add a default style
1213 * org-exp.el (org-export-format-source-code-or-example): Fix
1216 2010-02-24 Bastien Guerry <bzg@altern.org>
1218 * org-clock.el (org-clock-current-task): New variable to store
1219 last clocked in task.
1220 (org-clock-set-current, org-clock-delete-current): New functions.
1222 2010-02-24 Carsten Dominik <carsten.dominik@gmail.com>
1224 * org-remember.el (org-remember-apply-template): Extend comment.
1225 (org-remember-handler): Implement clock sibling filing.
1227 2010-02-23 Carsten Dominik <carsten.dominik@gmail.com>
1229 * org-publish.el (org-publish-all, org-publish-current-file)
1230 (org-publish-current-project): When called with prefix argument
1231 FORCE, also rebuild the validation file list.
1233 * org-latex.el (org-export-latex-preprocess): Protect footnotes in
1236 2010-02-21 Carsten Dominik <carsten.dominik@gmail.com>
1238 * org-html.el (org-export-as-html-and-open): Kill product buffer
1239 if the user wants that.
1241 * org-latex.el (org-export-as-pdf-and-open): Kill product buffer
1242 if the user wants that.
1244 * org-exp.el (org-export-kill-product-buffer-when-displayed): New
1247 * org-agenda.el (org-batch-agenda-csv): Use the time property
1248 instead of the `time-of-day' property.
1250 2010-02-20 Carsten Dominik <carsten.dominik@gmail.com>
1252 * org-timer.el (org-timer-start-hook, org-timer-stop-hook)
1253 (org-timer-pause-hook, org-timer-set-hook)
1254 (org-timer-cancel-hook): New hooks.
1255 (org-timer-start): Run `org-timer-start-hook'.
1256 (org-timer-pause-or-continue): Run `org-timer-pause-hook'.
1257 (org-timer-stop): Run `org-timer-stop-hook'.
1258 (org-timer-cancel-timers): Run `org-timer-cancel-hook'.
1260 2010-02-19 Carsten Dominik <carsten.dominik@gmail.com>
1262 * org.el (org-reveal): Double prefix arg shows the subtree of the
1265 2010-02-17 Carsten Dominik <carsten.dominik@gmail.com>
1267 * org-agenda.el (org-search-view): Fix bug with searching full
1268 words in headlines in search view.
1269 (org-agenda-skip-deadline-prewarning-if-scheduled): New option.
1270 (org-agenda-get-deadlines): Suppress pre-warning if the entry is
1271 scheduled (if the user configures it so.
1273 2010-02-16 Carsten Dominik <carsten.dominik@gmail.com>
1275 * org.el (org-hide-archived-subtrees): Don't jump to end of
1276 subtree if the match was not in a headline.
1277 (org-inside-latex-macro-p): Allow more complex arguments.
1278 (org-emphasize): Protect against use at end of buffer.
1280 2010-02-15 Carsten Dominik <carsten.dominik@gmail.com>
1282 * org-agenda.el (org-agenda-align-tags): Avoid side effects on
1285 2010-02-14 Carsten Dominik <carsten.dominik@gmail.com>
1287 * org-agenda.el (org-agenda-todo-ignore-scheduled): More allowed
1289 (org-agenda-todo-ignore-scheduled)
1290 (org-agenda-todo-ignore-deadlines): More control with different
1292 (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item):
1293 Honor the new option settings.
1295 2010-02-12 Carsten Dominik <carsten.dominik@gmail.com>
1297 * org.el (org-get-location): Make sure the selection buffer is
1298 shown in the current frame.
1300 * org-ascii.el (org-export-ascii-table-widen-columns): New
1302 (org-export-ascii-preprocess): Realign tables to remove narrowing
1303 if `org-export-ascii-table-widen-columns' is set.
1305 * org-table.el (org-table-do-narrow): New variable.
1306 (org-table-align): Narrow only if `org-table-do-narrow' is t.
1308 * org.el (org-deadline, org-schedule): Allow updating if the
1309 relevant time stamp does not have a repeater, i.e. do not require
1310 that no time stamp has a repeater.
1312 * org-agenda.el (org-agenda-align-tags): Don't add a face to the
1313 new white space before the tags.
1315 * org-latex.el (org-export-as-latex): Do nit require the buffer to
1316 be visiting a file when only exporting to a buffer or string.
1317 (org-export-latex-fix-inputenc): Only save the buffer is there is
1318 a file name attached to it.
1320 2010-02-09 Dan Davison <davison@stats.ox.ac.uk>
1322 * org-src.el (org-edit-src-exit): Widen before exiting edit buffers
1324 2010-02-08 Carsten Dominik <carsten.dominik@gmail.com>
1326 * org.el (org-fontify-meta-lines-and-blocks): Honor
1327 `org-fontify-quote-and-verse-blocks'.
1329 * org-faces.el (org-fontify-quote-and-verse-blocks): New option.
1331 2010-02-03 Carsten Dominik <carsten.dominik@gmail.com>
1333 * org.el (org-open-at-point): Also check for text property
1334 org-linked-text before offering collected links.
1336 2010-02-03 Stephen Eglen <stephen@gnu.org>
1338 * org-agenda.el (org-agenda-add-entry-to-org-agenda-diary-file):
1339 Optionally extract time specification from text and add to the
1342 2010-02-03 Carsten Dominik <carsten.dominik@gmail.com>
1344 * org-exp.el (org-html-entities): Fix typo.
1346 * org-latex.el (org-export-latex-make-header): Use \providecommand
1347 to make sure the \alert macro is defined.
1349 * org.el (org-format-latex-signal-error)
1350 (org-create-formula-image): Use `org-format-latex-signal-error'.
1352 2010-02-02 Stephen Eglen <stephen@gnu.org>
1354 * org.el (org-store-link): For dired buffers, use
1355 default-directory as link name if dired-get-filename returns
1358 2010-02-02 Carsten Dominik <carsten.dominik@gmail.com>
1360 * org-exp.el (org-export-concatenate-multiline-links): The for
1361 protectedness at beginning of match.
1363 * org-latex.el (org-export-latex-fix-inputenc): Never leave the
1364 AUTO as a coding system, instead default to utf8.
1366 2010-02-01 Carsten Dominik <carsten.dominik@gmail.com>
1368 * org.el (org-block-todo-from-children-or-siblings-or-parent)
1369 (org-block-todo-from-checkboxes): Respect the local variable
1370 value when deciding if blocking should be active.
1372 * org-latex.el (org-export-latex-make-header): Define the align
1373 macro if it is not yet defined.
1375 * org-agenda.el (org-agenda-insert-diary-make-new-entry): Call
1376 `org-insert-heading' with the INVISIBLE-OK argument.
1378 * org-mac-message.el (org-mac-message-insert-flagged): Call
1379 `org-insert-heading' with the INVISIBLE-OK argument.
1381 * org.el (org-insert-heading): New argument INVISIBLE-OK.
1383 * org-agenda.el (org-agenda-view-mode-dispatch): Improve the
1386 * org-html.el (org-html-level-start): Use the
1387 `html-container-class' text property to set an additional class
1388 for an outline container.
1390 * org-exp.el (org-export-remember-html-container-classes): New
1392 (org-export-preprocess-string): Call
1393 `org-export-remember-html-container-classes'.
1395 * org.el (org-cycle): Mention level cycling in the docstring.
1396 (org-default-properties): Add new property HTML_CONTAINER_CLASS.
1398 * org-remember.el (org-remember-apply-template): Do file insertion
1401 2010-01-31 Carsten Dominik <carsten.dominik@gmail.com>
1403 * org-habit.el (org-habit-insert-consistency-graphs): Fix a
1404 problem with mis-aligned graphs when showing habits.
1406 2010-01-28 Mikael Fornius <mfo@abc.se>
1408 * org.el (org-assign-fast-keys): Prefer keys used in keyword name
1409 when assigning. Begin using numerical characters when all in name
1410 is used up. This is to spare alphanumeric characters for better
1411 match with other keywords.
1413 2010-01-28 Carsten Dominik <carsten.dominik@gmail.com>
1415 * org-exp.el (org-export-preprocess-hook): Improve documentation.
1417 * org-latex.el (org-export-latex-preprocess): More consistent
1418 conversion and protection of the words LaTeX and TeX.
1419 (org-export-latex-fontify-headline, org-export-latex-preprocess):
1420 Allow angle brackets in commands, for beamer.
1422 2010-01-26 Carsten Dominik <carsten.dominik@gmail.com>
1424 * org-clock.el (org-clock-in): Improve the look of the clock line
1425 by formatting links.
1427 2010-01-24 Carsten Dominik <carsten.dominik@gmail.com>
1429 * org-latex.el (org-export-latex-classes): Use AUTO as the place
1430 holder string for the coding system. And improve the
1432 (org-export-latex-fix-inputenc): Only modify the coding system if
1433 it is given by the placeholder AUTO.
1435 2010-01-23 Carsten Dominik <carsten.dominik@gmail.com>
1437 * org-clock.el (org-task-overrun-text): New option.
1438 (org-task-overrun, org-clock-update-period): New variables.
1439 (org-clock-get-clock-string, org-clock-update-mode-line): Mark
1441 (org-clock-notify-once-if-expired): Check if clock is overrun.
1443 * org-faces.el: New face `org-mode-line-clock-overrun'.
1445 2010-01-18 Jan Böcker <jan.boecker@jboecker.de>
1447 * org.el (org-narrow-to-subtree): Position the end of the narrowed
1448 region before the line with the next heading, to prevent the user
1449 from prepending text to the next headline.
1451 2010-01-20 Stephen Eglen <stephen@gnu.org>
1453 * org-agenda.el (org-get-time-of-day): Use
1454 org-agenda-time-leading-zero to allow leading zero (rather than
1457 2010-01-20 Carsten Dominik <carsten.dominik@gmail.com>
1459 * org-agenda.el (org-agenda-diary-entry-in-org-file): Make sure
1460 org-datetree.el is loaded.
1462 * org-datetree.el: autoload `org-datetree-find-day-create'
1464 * org-latex.el (org-export-latex-hyperref-format): New option.
1465 (org-export-latex-links): Use `org-export-latex-hyperref-format'.
1467 2010-01-18 Carsten Dominik <carsten.dominik@gmail.com>
1469 * org-ctags.el (org-ctags-enable): Change order of functions.
1470 (org-ctags-create-tags): Add wildcard to file name expansion.
1472 2010-01-17 Carsten Dominik <carsten.dominik@gmail.com>
1474 * org.el (org-entry-properties): Fix some important bugs.
1476 2010-01-16 Carsten Dominik <carsten.dominik@gmail.com>
1478 * org.el (org-link-unescape, org-link-escape): Only use hexlify if
1479 the table is not explicitly given.
1481 2010-01-15 Carsten Dominik <carsten.dominik@gmail.com>
1483 * org-clock.el (org-clock-out-when-done): Allow a list of keywords
1485 (org-clock-out-if-current): Work with the new list value of
1486 `org-clock-out-when-done'.
1487 (org-clock-out, org-clock-out-if-current): Avoid circular logic
1488 between clocking out and state changes.
1490 * org-ctags.el (org-ctags-path-to-ctags): Better system-type test.
1492 * org-latex.el (org-export-latex-treat-backslash-char): Do not by
1493 accident protect a character that is before a backslash.
1495 2010-01-14 Carsten Dominik <carsten.dominik@gmail.com>
1497 * org-agenda.el (org-diary-class): Use
1498 `org-order-calendar-date-args'.
1500 * org.el (org-order-calendar-date-args): New function.
1502 * org-exp.el (org-export-target-internal-links): Check for
1503 protectedness after the first bracket.
1505 * org.el (org-entry-properties): Don't match wrong-case TODO
1508 * org-agenda.el (org-agenda-schedule, org-agenda-deadline):
1509 Document that ARG is passed through to remove the date.
1510 (org-agenda-bulk-action): Accept prefix arg and pass it on. Do
1511 not read a date when the user has given a `C-u' prefix.
1513 2010-01-11 Carsten Dominik <carsten.dominik@gmail.com>
1515 * org-agenda.el (org-agenda-fix-displayed-tags): Fix bug when all
1518 2010-01-10 Carsten Dominik <carsten.dominik@gmail.com>
1520 * org-latex.el (org-export-latex-fix-inputenc): New function.
1521 (org-export-latex-inputenc-alist): New option.
1523 * org-exp.el (org-export): New key SPC to publish enclosing
1526 2010-01-09 Carsten Dominik <carsten.dominik@gmail.com>
1528 * org-indent.el (org-indent-add-properties): Catch case when there
1529 is no headline in the buffer.
1531 2010-01-08 Carsten Dominik <carsten.dominik@gmail.com>
1533 * org-exp.el (org-html-entities): Add checkmark symbol.
1535 * org-ascii.el (org-export-ascii-preprocess): Protect targets in
1536 verbatim code for ASCII export.
1538 * org.el (org-update-statistics-cookies): Also see checkboxes in
1541 2010-01-07 Carsten Dominik <carsten.dominik@gmail.com>
1543 * org-agenda.el (org-agenda-view-mode-dispatch): Define the `L'
1546 * org-beamer.el (org-beamer-amend-header): Change the location
1547 where `org-beamer-header-extra' is inserted.
1549 * org.el (org-compute-latex-and-specials-regexp): Don't do BIND
1550 just for computing this regexp.
1552 2010-01-06 Carsten Dominik <carsten.dominik@gmail.com>
1554 * org-beamer.el (org-beamer-frame-default-options): New option.
1555 (org-beamer-sectioning): Use default options if the user does not
1557 (org-beamer-fix-toc): Put a frame around the table of contents.
1559 * org-exp.el (org-export-remove-comment-blocks-and-subtrees): Make
1560 sure case-folding works well when processing comment stuff.
1562 * org-latex.el (org-export-latex-after-save-hook): New hook.
1563 (org-export-as-latex): Run the new hook.
1565 2010-01-05 Carsten Dominik <carsten.dominik@gmail.com>
1567 * org-beamer.el (org-beamer-environments-default): Add the note
1569 (org-beamer-after-initial-vars): Allow several BEAMER_HEADER_EXTRA
1570 lines and collect and combine the content.
1571 (org-beamer-after-initial-vars): Check for note tags and make sure
1572 they will be seen like a property.
1574 * org.el (org-offer-links-in-entry): Fix bug when there is a
1577 * org-exp.el (org-export): Make sure the mark is activated, also
1578 when `transient-mark-mode' is off.
1580 * org-agenda.el (org-agenda-search-view-always-boolean): New option.
1581 (org-agenda-search-view-search-words-only): Obsolete variable, is
1582 now an alias for `org-agenda-search-view-always-boolean'.
1583 (org-agenda-search-view-force-full-words): New option.
1584 (org-search-view): Improve docstring, and implement a better logic
1585 for Boolean and phrase searches.
1586 (org-agenda-last-search-view-search-was-boolean): New variable.
1587 (org-agenda-manipulate-query): Consider the type of the last
1588 search when modifying the search string.
1590 2010-01-04 Carsten Dominik <carsten.dominik@gmail.com>
1592 * org-latex.el (org-export-as-latex): Do the first letbind in the
1595 * org-agenda.el (org-get-entries-from-diary): Add the new face to
1598 * org-faces.el (org-agenda-diary): New face.
1600 * org.el (org-make-link-regexps): Allow regexp-special characters
1602 (org-open-file): When in-emacs is `system', also force system
1603 opening, like when the value was `(16)'.
1604 (org-update-statistics-cookies): Handle entries without children.
1607 (org-export-preprocess-before-normalizing-links-hook): New hook.
1608 (org-export-preprocess-string): Run the new hook.
1610 * org.el (org-offer-links-in-entry): Make RET open all links.
1612 * org-html.el (org-export-as-html): Remove any leftover display
1613 properties in the html file.
1615 * org-wl.el (org-wl-store-link): Work-around for format bug with
1618 * org-habit.el (org-habit-insert-consistency-graphs): Turn off
1619 invisibility while adding the graphs.
1621 2010-01-03 Carsten Dominik <carsten.dominik@gmail.com>
1623 * org-remember.el (org-select-remember-template): Use C letter to
1624 customize remember templates.
1626 * org-agenda.el (org-agenda-bulk-mark, org-agenda-bulk-unmark):
1627 Move cursor to next visible line.
1629 2010-01-02 Carsten Dominik <carsten.dominik@gmail.com>
1631 * org-beamer.el (org-beamer-sectioning): Leave columns environment
1632 by specifying 0 or 1 for column width.
1633 (org-beamer-column-widths): Make 0 stand for 0.0.
1635 2010-01-01 Carsten Dominik <carsten.dominik@gmail.com>
1637 * org-exp.el (org-export-mark-radio-links): Don't match inside
1640 * org.el (org-format-latex-header-extra): New variable.
1641 (org-format-latex): Set org-format-latex-header-extra from
1643 (org-format-latex): Add org-format-latex-header-extra to the
1644 variables on which image creation depends.
1645 (org-create-formula-image): Add the header stuff from in-buffer
1647 (org-read-date-analyze): Base the analysis for future preference
1648 on NOW, not on the default date.
1650 * org-inlinetask.el (org-inlinetask-export-handler): Add CSS class
1651 for TODO keyword in inline tasks.
1653 * org.el (org-log-note-headings): New headings for removing
1654 deadline or scheduling date.
1655 (org-deadline, org-schedule): Arrange for logging when removing a
1657 (org-add-log-note): Handle deadline and scheduling removal.
1659 2009-12-31 Carsten Dominik <carsten.dominik@gmail.com>
1661 * org-exp.el (org-export-visible): Add LaTeX/pdf export.
1663 2009-12-28 Carsten Dominik <carsten.dominik@gmail.com>
1665 * org-agenda.el (org-diary-class): New function.
1667 2009-12-24 Carsten Dominik <carsten.dominik@gmail.com>
1669 * org-latex.el (org-export-latex-preprocess): Do process the text
1672 2009-12-20 Carsten Dominik <carsten.dominik@gmail.com>
1674 * org.el (org-entry-properties): Add TIMESTAMP properties back
1677 2009-12-18 Carsten Dominik <carsten.dominik@gmail.com>
1679 * org.el (org-all-time-keywords): New variable.
1680 (org-set-regexps-and-options): Set `org-all-time-keywords'.
1681 (org-entry-blocked-p): New function.
1682 (org-special-properties): Add BLOCKED as a new special property.
1683 (org-entry-properties): New optional argument SPECIFIC, only parse
1684 for this property when it is specified.
1685 (org-entry-get): Pass a SPECIFIC argument to
1686 `org-entry-properties'.
1688 * org-latex.el (org-export-as-latex): Preprocess TEXT as well.
1690 2009-12-17 Carsten Dominik <carsten.dominik@gmail.com>
1692 * org-latex.el (org-export-latex-tables): No forced line end if
1693 there is no caption.
1695 2009-12-16 Carsten Dominik <carsten.dominik@gmail.com>
1697 * org-exp.el (org-html-entities): Add Euro symbols from Marvosym
1700 * org-latex.el (org-export-latex-tables): Only add a caption when
1701 macro in in longtable environments if one has been defined.
1703 * org-html.el (org-export-as-html): Only take title from buffer if
1704 not exporting body-only.
1706 * org-latex.el (org-export-latex-preprocess): Better version of
1707 the regular expression for protecting LaTeX macros.
1708 (org-export-latex-preprocess): Start searching for macros to
1709 protect from beginning of buffer.
1711 * org-exp.el (org-export-target-internal-links): Check for
1712 protectedness earlier in the string.
1714 * org-agenda.el (org-agenda-highlight-todo): Match TODO keywords
1717 * org-id.el (org-id-store-link): Match TODO keywords case
1720 * org.el (org-heading-components, org-get-outline-path)
1721 (org-display-outline-path): Match TODO keywords case sensitively.
1723 * org-latex.el (org-export-as-latex): Ignore read-only
1726 * org-exp.el (org-export-preprocess-string): Remove any
1727 `read-only' properties.
1729 * org-agenda.el (org-agenda-inactive-leader): New option.
1730 (org-agenda-get-timestamps): Use `org-agenda-inactive-leader'.
1731 (org-tags-view): Prompt for matcher if MATCH is an empty string.
1732 (org-todo-list): Prompt for matcher if ARG is an empty string.
1734 2009-12-15 Carsten Dominik <carsten.dominik@gmail.com>
1736 * org.el (org-open-link-functions): New hook.
1737 (org-open-at-point): Run `org-open-link-functions'.
1739 2009-12-14 Carsten Dominik <carsten.dominik@gmail.com>
1741 * org-agenda.el (org-agenda-date-prompt): Allow inactive time
1744 * org.el (org-inhibit-startup-visibility-stuff): New variable.
1745 (org-mode): Don't do startup visibility if inhibited.
1746 (org-outline-overlay-data, org-set-outline-overlay-data): New
1748 (org-save-outline-visibility): New macro.
1749 (org-log-note-headings): Document that one should not change the
1750 `state' note format.
1752 2009-12-13 Carsten Dominik <carsten.dominik@gmail.com>
1754 * org.el (org-make-link-regexps): Capture link path into a group.
1756 2009-12-12 Carsten Dominik <carsten.dominik@gmail.com>
1758 * org-beamer.el (org-beamer-after-initial-vars): Do not overwrite
1761 2009-12-11 Carsten Dominik <carsten.dominik@gmail.com>
1763 * org.el (org-startup-with-beamer-mode): New option.
1764 (org-property-changed-functions)
1765 (org-property-allowed-value-functions): New hooks.
1766 (org-entry-put, org-property-get-allowed-values): Run the new
1768 (org-property-next-allowed-value): Run the new hooks.
1770 * org-exp.el (org-export-select-backend-specific-text): Add the
1771 special beamer tags.
1774 (org-export-preprocess-before-selecting-backend-code-hook): New
1777 * org-latex.el (org-export-latex-after-initial-vars-hook): New hook.
1778 (org-export-as-latex): Run
1779 `org-export-latex-after-initial-vars-hook'.
1780 (org-export-latex-format-toc-function)
1781 (org-export-latex-make-header): Call
1782 `org-export-latex-format-toc-function'.
1784 * org.el (org-fill-template): Make template searches case sensitive.
1786 * org-exp.el (org-export): Use "1" as a sign to export only the
1789 * org-colview-xemacs.el (org-columns-edit-value): Use
1790 org-unrestricted property.
1792 * org-colview.el (org-columns-edit-value): Use
1793 org-unrestricted property.
1795 * org.el (org-compute-property-at-point): Set org-unrestricted
1796 text property if the list contains ":ETC".
1797 (org-insert-property-drawer): Use
1798 org-unrestricted property.
1801 (org-export-preprocess-before-selecting-backend-code-hook): New hook.
1802 (org-export-preprocess-string): Run
1803 `org-export-preprocess-before-selecting-backend-code-hook'.
1805 * org-xoxo.el (org-export-as-xoxo): Run `org-export-first-hook'.
1807 * org-latex.el (org-export-region-as-latex): Run
1808 `org-export-first-hook'.
1810 * org-html.el (org-export-as-html): Run `org-export-first-hook'.
1812 * org-docbook.el (org-export-as-docbook): Run
1813 `org-export-first-hook'.
1815 * org-ascii.el (org-export-as-ascii): Run `org-export-first-hook'.
1817 * org-exp.el (org-export-first-hook): New hook.
1819 2009-12-10 Carsten Dominik <carsten.dominik@gmail.com>
1821 * org-list.el (org-previous-item): Exit at the beginning of the
1824 * org-id.el (org-id-locations-save): Only write the id locations
1827 * org-archive.el (org-archive-all-done): Make this work in a file
1828 with org-odd-levels-only set.
1830 * org.el (org-get-refile-targets): Catch the case when a buffer
1833 * org-latex.el (org-export-as-latex): Cleanup forced line ends
1834 where they are not needed.
1835 (org-export-latex-subcontent): Remove unnecessary newlines.
1837 2009-12-09 Carsten Dominik <carsten.dominik@gmail.com>
1839 * org-latex.el (org-export-latex-make-header): Remove \obeylines.
1840 (org-export-latex-fontify): Fix regexp bug that takes special
1841 care of protecting the right boundary characters in emphasis
1843 (org-export-latex-preprocess): Allow multiple arguments to latex
1846 * org.el (org-make-link-regexps): Use John Gruber's regexp for
1849 * org-macs.el (org-re): Interpret :punct: in regexps.
1851 * org-exp.el (org-export-replace-src-segments-and-examples): Also
1852 take the final newline after the END line.
1854 * org.el (org-clean-visibility-after-subtree-move): Only fix
1855 entries that are not entirely invisible already.
1856 (org-insert-link): Respect org-link-file-path-type for
1857 "docview:" links in addition to "file:" links.
1859 2009-12-03 Carsten Dominik <carsten.dominik@gmail.com>
1861 * org-exp.el (org-export-format-source-code-or-example): Avoid
1862 additional extra white lines in LaTeX.
1864 * org-list.el (org-list-parse-list): Leave empty lines after the
1865 list, don't consider them as part of the list.
1867 * org-mobile.el (org-mobile-sumo-agenda-command): Allow tagstodo
1870 * org-clock.el (org-clock-select-task): Convert integer to
1871 character for XEmacs.
1873 2009-12-02 Carsten Dominik <carsten.dominik@gmail.com>
1875 * org-clock.el (org-clock-resolve): Make reading a char XEmacs
1878 2009-11-30 Tassilo Horn <tassilo@member.fsf.org>
1880 * org.el (org-complete-tags-always-offer-all-agenda-tags): New
1882 (org-set-tags): Use it.
1884 2009-11-30 Carsten Dominik <carsten.dominik@gmail.com>
1886 * org-list.el (org-empty-line-terminates-plain-lists): Update
1889 * org.el (org-format-latex): Fix link creation for processed latex
1892 2009-11-29 Carsten Dominik <carsten.dominik@gmail.com>
1894 * org-footnote.el (org-footnote-normalize): Protect replacement
1897 * org.el (org-inside-latex-macro-p): Save match data.
1899 2009-11-28 Jan Böcker <jan.boecker@jboecker.de>
1901 * org-docview.el: New file.
1903 2009-11-27 Carsten Dominik <carsten.dominik@gmail.com>
1905 * org-latex.el (org-export-latex-class-options): New variable.
1906 (org-export-latex-set-initial-vars): Use the class options.
1908 * org.el (org-forward-same-level): Stop at headings that start
1909 with an invisible character.
1910 (org-additional-option-like-keywords): Add LaTeX_CLASS_OPTIONS.
1912 2009-11-26 Carsten Dominik <carsten.dominik@gmail.com>
1914 * org-footnote.el (org-footnote-normalize): Don't take optional
1915 arguments in LaTeX macros as footnotes.
1917 * org.el (org-inside-latex-macro-p): New function.
1919 * org-latex.el (org-latex-to-pdf-process): Change customization
1920 group to `org-export-pdf'.
1922 * org-agenda.el (org-agenda-get-blocks): Look at time string also
1923 on days after the first one.
1925 * org.el (org-insert-heading): Also check for item before assuming
1926 before-first-heading condition.
1928 * org-latex.el (org-latex-to-pdf-process): Fix typo in group tag.
1929 (org-export-pdf-logfiles): New option.
1930 (org-export-as-pdf): Use `org-export-pdf-logfiles'.
1931 (org-export-pdf-logfiles): Fix customization type.
1933 * org.el (org-insert-link): Improve error message when there is no
1934 default link to select with RET.
1936 * org-agenda.el (org-agenda-filter-by-tag): Use char argument from
1939 2009-11-25 Carsten Dominik <carsten.dominik@gmail.com>
1941 * org-latex.el (org-export-latex-parse-global)
1942 (org-export-latex-parse-content)
1943 (org-export-latex-parse-subcontent): Use
1944 `org-re-search-forward-unprotected'.
1945 (org-export-as-pdf): Remove log files produced by XeTeX.
1947 * org-macs.el (org-re-search-forward-unprotected): New function.
1949 2009-11-25 James TD Smith <ahktenzero@mohorovi.cc>
1951 * org-colview.el (org-agenda-colview-summarize): Sort out some
1952 confusion between properties and titles, which resulted in
1953 agenda summaries not working if a title was set for a column.
1955 2009-11-24 Carsten Dominik <carsten.dominik@gmail.com>
1957 * org-mobile.el (org-mobile-agendas): New option.
1958 (org-mobile-sumo-agenda-command): Select the right agendas.
1960 * org-latex.el (org-export-latex-format-image): Preserve the
1961 original-indentation property.
1963 2009-11-23 Carsten Dominik <carsten.dominik@gmail.com>
1965 * org-clock.el (org-clock-insert-selection-line): Catch error when
1966 an old tasks no longer exists.
1968 * org-latex.el (org-export-as-pdf): Remove also the .idx file.
1969 (org-export-as-pdf): Don't remove the old PDF file before making
1972 * org-mouse.el (org-mouse-end-headline, org-mouse-insert-item)
1973 (org-mouse-context-menu): Use `org-looking-back'.
1975 * org.el (org-cycle-level): Use `org-looking-back'.
1977 * org-list.el (org-cycle-item-indentation): Use
1980 * org-compat.el (org-looking-back): New function.
1982 * org.el (org-insert-heading): Catch before-first-headline when
1983 inserting a headline.
1985 2009-11-22 Carsten Dominik <carsten.dominik@gmail.com>
1987 * org-latex.el (org-export-latex-format-image): Indent figure
1988 environment, so that it does not interrupt plain list.
1990 * org.el (org-open-at-point): Allow long link descriptions.
1992 2009-11-21 Carsten Dominik <carsten.dominik@gmail.com>
1994 * org-html.el (org-export-as-html): Remove empty lines at the
1995 beginning of the exported text.
1998 ;; add-log-time-zone-rule: t
2001 Copyright (C) 2008 Free Software Foundation, Inc.
2003 This file is part of GNU Emacs.
2005 GNU Emacs is free software: you can redistribute it and/or modify
2006 it under the terms of the GNU General Public License as published by
2007 the Free Software Foundation, either version 3 of the License, or
2008 (at your option) any later version.
2010 GNU Emacs is distributed in the hope that it will be useful,
2011 but WITHOUT ANY WARRANTY; without even the implied warranty of
2012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2013 GNU General Public License for more details.
2015 You should have received a copy of the GNU General Public License
2016 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
2018 ;; arch-tag: a9bdcf06-7c2d-4b5a-bf7a-c5e7b706f67c