1
0
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-11-22 07:09:47 +00:00

Move org-exp-blocks.el into the core

This commit is contained in:
Carsten Dominik 2009-06-11 16:17:50 +02:00
parent ce2b2ea8f8
commit 74e8c78b93
4 changed files with 14 additions and 16 deletions

View File

@ -23,7 +23,6 @@ org-eval.el --- The <lisp> tag, adapted from Muse
org-eval-light.el --- Evaluate in-buffer code on demand
org-expiry.el --- Expiry mechanism for Org entries
org-exp-bibtex.el --- Export citations to LaTeX and HTML
org-exp-blocks.el --- 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-jira.el --- Add a jira:ticket protocol to Org

View File

@ -1,25 +1,24 @@
;;; org-exp-blocks.el --- pre-process blocks when exporting org files
;; Copyright (C) 2008 Eric Schulte
;; Copyright (C) 2009
;; Free Software Foundation, Inc.
;; Author: Eric Schulte
;; This file is not currently part of GNU Emacs.
;; This file is part of GNU Emacs.
;;
;; GNU Emacs is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is free software; you can redistribute it and/or
;; modify it under the terms of the GNU General Public License as
;; published by the Free Software Foundation; either version 2, or (at
;; your option) any later version.
;; This program is distributed in the hope that it will be useful, but
;; WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
;; General Public License for more details.
;; GNU Emacs is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program ; see the file COPYING. If not, write to
;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;;

View File

@ -28,6 +28,7 @@
(require 'org)
(require 'org-agenda)
(require 'org-exp-blocks)
(eval-and-compile
(require 'cl))

View File

@ -192,7 +192,6 @@ to add the symbol `xyz', and the package must have a call to
(const :tag "C eval-light: Evaluate inbuffer-code on demand" org-eval-light)
(const :tag "C expiry: Expiry mechanism for Org entries" org-expiry)
(const :tag "C exp-bibtex: Export citations using BibTeX" org-exp-bibtex)
(const :tag "C exp-blocks: Pre-process blocks for export" org-exp-blocks)
(const :tag "C interactive-query: Interactive modification of tags query (PARTIALLY OBSOLETE, see secondary filtering)" org-interactive-query)
(const :tag "C jira Add a jira:ticket protocol to Org" org-jira)
(const :tag "C mairix: Hook mairix search into Org for different MUAs" org-mairix)