diff --git a/contrib/README b/contrib/README index 7f4e305e9..62a0eba0e 100644 --- a/contrib/README +++ b/contrib/README @@ -16,16 +16,18 @@ org-bookmark.el --- Links to bookmarks org-depend.el --- TODO dependencies for Org-mode org-elisp-symbol.el --- Org links to emacs-lisp symbols org-eval.el --- The tag, adapted from Muse -org-expiry.el --- expiry mechanism for Org entries +org-eval-light.el --- Evaluate List code on demand +org-expiry.el --- Expiry mechanism for Org entries +org-exp-blocks --- Pre-process blocks when exporting org files org-indent.el --- Dynamic outline indentation (does not really work) org-interactive-query.el --- Interactive modification of tags query org-mairix.el --- Hook mairix search into Org for different MUAs org-man.el --- Support for links to manpages in Org-mode org-mtags.el --- Support for some Muse-like tags in Org-mode org-panel.el --- Simple routines for us with bad memory -org-registry.el --- a registry for Org links +org-registry.el --- A registry for Org links org2rem.el --- Convert org appointments into reminders -org-screen.el --- visit screen sessions through Org-mode links +org-screen.el --- Visit screen sessions through Org-mode links org-toc.el --- Table of contents for Org-mode buffer orgtbl-sqlinsert.el --- Convert Org-mode tables to SQL insertions. diff --git a/doc/org.texi b/doc/org.texi index 14b0b1a10..8923903c3 100644 --- a/doc/org.texi +++ b/doc/org.texi @@ -8982,6 +8982,10 @@ distribution, others are available somewhere on the web. to include text in a document that is the result of evaluating some code. Other scripting languages like @code{perl} can be supported with this package as well. +@item @file{org-eval-light.el} by @i{Eric Schulte} + User-controlled evaluation of Lisp code in an Org buffer. +@item @file{org-exp-blocks.el} by @i{Eric Schulte} + Preprocess user-defined blocks for export. @item @file{org-expiry.el} by @i{Bastien Guerry} Expiry mechanism for Org entries. @item @file{org-indent.el} by @i{Carsten Dominik} @@ -9003,8 +9007,6 @@ distribution, others are available somewhere on the web. to publish the same file using either org-publish or Muse. @item @file{org-panel.el} by @i{Lennard Borgman} Simplified and display-aided access to some Org commands. -@c @item @file{org-plot.el} by @i{Eric Schulte} -@c Plotting Org tables with Gnuplot. @item @file{org-registry.el} by @i{Bastien Guerry} A registry for Org links, to find out from where links point to a given file or location. @@ -9020,7 +9022,6 @@ distribution, others are available somewhere on the web. be found on the Worg pages. @end table - @node Other extensions, , Extensions in the contrib directory, Extensions @section Other extensions diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 155995b69..a841106c2 100755 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -4,6 +4,8 @@ (org-remember-kill): New command. (org-remember-finish-immediately): Call `org-remember-finalize' directly. + (org-remember-finalize): Make `org-remember-finalize' an interactive + function. 2008-11-18 Carsten Dominik diff --git a/lisp/org.el b/lisp/org.el index b660f96f7..cfe991bf6 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -180,7 +180,9 @@ to add the symbol `xyz', and the package must have a call to (const :tag "C depend: TODO dependencies for Org-mode" org-depend) (const :tag "C elisp-symbol: Org links to emacs-lisp symbols" org-elisp-symbol) (const :tag "C eval: Include command output as text" org-eval) + (const :tag "C eval-light: Evaluate code on demand" org-eval-light) (const :tag "C expiry: Expiry mechanism for Org entries" org-expiry) + (const :tag "C exp-blocks: Pre-process blocks for export" org-exp-blocks) (const :tag "C id: Global id's for identifying entries" org-id) (const :tag "C interactive-query: Interactive modification of tags query" org-interactive-query) (const :tag "C mairix: Hook mairix search into Org for different MUAs" org-mairix)