1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-23 07:19:15 +00:00

Fix copyright year for Org files.

This commit is contained in:
Bastien Guerry 2012-01-04 15:14:29 +01:00
parent 7e67562fca
commit b73f1974f0
96 changed files with 114 additions and 103 deletions

View File

@ -1,7 +1,7 @@
The files OrgOdtContentTemplate.xml and OrgOdtStyles.xml have the
following copyright information:
Copyright (C) 2010-2011 Free Software Foundation, Inc.
Copyright (C) 2010-2012 Free Software Foundation, Inc.
These file are part of GNU Emacs.

View File

@ -1,6 +1,6 @@
;;; ob-R.el --- org-babel functions for R code evaluation
;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
;; Author: Eric Schulte
;; Dan Davison

View File

@ -1,6 +1,6 @@
;;; ob-asymptote.el --- org-babel functions for asymptote evaluation
;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
;; Author: Eric Schulte
;; Keywords: literate programming, reproducible research

View File

@ -1,6 +1,6 @@
;;; ob-awk.el --- org-babel functions for awk evaluation
;; Copyright (C) 2011 Free Software Foundation, Inc.
;; Copyright (C) 2012 Free Software Foundation, Inc.
;; Author: Eric Schulte
;; Keywords: literate programming, reproducible research

View File

@ -1,6 +1,6 @@
;;; ob-clojure.el --- org-babel functions for clojure evaluation
;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
;; Author: Joel Boehland
;; Eric Schulte

View File

@ -1,6 +1,6 @@
;;; ob-comint.el --- org-babel functions for interaction with comint buffers
;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
;; Author: Eric Schulte
;; Keywords: literate programming, reproducible research, comint

View File

@ -1,6 +1,6 @@
;;; ob-css.el --- org-babel functions for css evaluation
;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
;; Author: Eric Schulte
;; Keywords: literate programming, reproducible research

View File

@ -1,6 +1,6 @@
;;; ob-ditaa.el --- org-babel functions for ditaa evaluation
;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
;; Author: Eric Schulte
;; Keywords: literate programming, reproducible research
@ -39,10 +39,22 @@
(require 'ob)
(defvar org-babel-default-header-args:ditaa
'((:results . "file") (:exports . "results") (:java . "-Dfile.encoding=UTF-8"))
'((:results . "file")
(:exports . "results")
(:java . "-Dfile.encoding=UTF-8"))
"Default arguments for evaluating a ditaa source block.")
(defvar org-ditaa-jar-path)
(defcustom org-ditaa-jar-path nil
"Path for the ditaa jar file."
:group 'org-babel
:type 'string)
(defcustom org-ditaa-jar-option "-jar"
"Option for the ditaa jar file.
Do not leave leading or trailing spaces in this string."
:group 'org-babel
:type 'string)
(defun org-babel-execute:ditaa (body params)
"Execute a block of Ditaa code with org-babel.
This function is called by `org-babel-execute-src-block'."
@ -55,7 +67,7 @@ This function is called by `org-babel-execute-src-block'."
(cmdline (cdr (assoc :cmdline params)))
(java (cdr (assoc :java params)))
(in-file (org-babel-temp-file "ditaa-"))
(cmd (concat "java " java " -jar "
(cmd (concat "java " java " " org-ditaa-jar-option " "
(shell-quote-argument
(expand-file-name org-ditaa-jar-path))
" " cmdline

View File

@ -1,6 +1,6 @@
;;; ob-dot.el --- org-babel functions for dot evaluation
;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
;; Author: Eric Schulte
;; Keywords: literate programming, reproducible research

View File

@ -1,6 +1,6 @@
;;; ob-emacs-lisp.el --- org-babel functions for emacs-lisp code evaluation
;; Copyright (C) 2009-2011 Free Software Foundation, Inc
;; Copyright (C) 2009-2012 Free Software Foundation, Inc
;; Author: Eric Schulte
;; Keywords: literate programming, reproducible research

View File

@ -1,6 +1,6 @@
;;; ob-eval.el --- org-babel functions for external code evaluation
;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
;; Author: Eric Schulte
;; Keywords: literate programming, reproducible research, comint

View File

@ -1,6 +1,6 @@
;;; ob-exp.el --- Exportation of org-babel source blocks
;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
;; Author: Eric Schulte
;; Dan Davison

View File

@ -1,6 +1,6 @@
;;; ob-fortran.el --- org-babel functions for fortran
;; Copyright (C) 2011 Sergey Litvinov, Eric Schulte
;; Copyright (C) 2012 Sergey Litvinov, Eric Schulte
;; Authors: Sergey Litvinov (based on ob-C.el by Eric Schulte), Eric Schulte
;; Keywords: literate programming, reproducible research, fortran

View File

@ -1,6 +1,6 @@
;;; ob-gnuplot.el --- org-babel functions for gnuplot evaluation
;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
;; Author: Eric Schulte
;; Keywords: literate programming, reproducible research

View File

@ -1,6 +1,6 @@
;;; ob-haskell.el --- org-babel functions for haskell evaluation
;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
;; Author: Eric Schulte
;; Keywords: literate programming, reproducible research

View File

@ -1,6 +1,6 @@
;;; ob-java.el --- org-babel functions for java evaluation
;; Copyright (C) 2011 Free Software Foundation, Inc.
;; Copyright (C) 2012 Free Software Foundation, Inc.
;; Author: Eric Schulte
;; Keywords: literate programming, reproducible research

View File

@ -1,6 +1,6 @@
;;; ob-js.el --- org-babel functions for Javascript
;; Copyright (C) 2010-2011 Free Software Foundation
;; Copyright (C) 2010-2012 Free Software Foundation
;; Author: Eric Schulte
;; Keywords: literate programming, reproducible research, js

View File

@ -1,6 +1,6 @@
;;; ob-keys.el --- key bindings for org-babel
;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
;; Author: Eric Schulte
;; Keywords: literate programming, reproducible research

View File

@ -1,6 +1,6 @@
;;; ob-latex.el --- org-babel functions for latex "evaluation"
;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
;; Author: Eric Schulte
;; Keywords: literate programming, reproducible research

View File

@ -1,6 +1,6 @@
;;; ob-lisp.el --- org-babel functions for common lisp evaluation
;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
;; Author: Joel Boehland
;; Eric Schulte

View File

@ -1,6 +1,6 @@
;;; ob-lob.el --- functions supporting the Library of Babel
;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
;; Author: Eric Schulte
;; Dan Davison

View File

@ -1,6 +1,6 @@
;;; ob-maxima.el --- org-babel functions for maxima evaluation
;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
;; Author: Eric S Fraga
;; Eric Schulte

View File

@ -1,6 +1,6 @@
;;; ob-ocaml.el --- org-babel functions for ocaml evaluation
;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
;; Author: Eric Schulte
;; Keywords: literate programming, reproducible research

View File

@ -1,6 +1,6 @@
;;; ob-org.el --- org-babel functions for org code block evaluation
;; Copyright (C) 2010-2011 Free Software Foundation, Inc.
;; Copyright (C) 2010-2012 Free Software Foundation, Inc.
;; Author: Eric Schulte
;; Keywords: literate programming, reproducible research

View File

@ -1,6 +1,6 @@
;;; ob-perl.el --- org-babel functions for perl evaluation
;; Copyright (C) 2009-2011 Free Software Foundation
;; Copyright (C) 2009-2012 Free Software Foundation
;; Author: Dan Davison
;; Eric Schulte

View File

@ -1,6 +1,6 @@
;;; ob-python.el --- org-babel functions for python evaluation
;; Copyright (C) 2009-2011 Free Software Foundation
;; Copyright (C) 2009-2012 Free Software Foundation
;; Author: Eric Schulte
;; Dan Davison

View File

@ -1,6 +1,6 @@
;;; ob-ref.el --- org-babel functions for referencing external data
;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
;; Author: Eric Schulte
;; Dan Davison

View File

@ -1,6 +1,6 @@
;;; ob-ruby.el --- org-babel functions for ruby evaluation
;; Copyright (C) 2009-2011 Free Software Foundation
;; Copyright (C) 2009-2012 Free Software Foundation
;; Author: Eric Schulte
;; Keywords: literate programming, reproducible research

View File

@ -1,6 +1,6 @@
;;; ob-sass.el --- org-babel functions for the sass css generation language
;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
;; Author: Eric Schulte
;; Keywords: literate programming, reproducible research

View File

@ -1,6 +1,6 @@
;;; ob-scheme.el --- org-babel functions for Scheme
;; Copyright (C) 2010-2011 Free Software Foundation
;; Copyright (C) 2010-2012 Free Software Foundation
;; Author: Eric Schulte
;; Keywords: literate programming, reproducible research, scheme

View File

@ -1,6 +1,6 @@
;;; ob-screen.el --- org-babel support for interactive terminal
;; Copyright (C) 2009-2011 Free Software Foundation
;; Copyright (C) 2009-2012 Free Software Foundation
;; Author: Benjamin Andresen
;; Keywords: literate programming, interactive shell

View File

@ -1,6 +1,6 @@
;;; ob-sh.el --- org-babel functions for shell evaluation
;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
;; Author: Eric Schulte
;; Keywords: literate programming, reproducible research

View File

@ -1,6 +1,6 @@
;;; ob-shen.el --- org-babel functions for Shen
;; Copyright (C) 2010-2011 Free Software Foundation
;; Copyright (C) 2010-2012 Free Software Foundation
;; Author: Eric Schulte
;; Keywords: literate programming, reproducible research, shen

View File

@ -1,6 +1,6 @@
;;; ob-sql.el --- org-babel functions for sql evaluation
;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
;; Author: Eric Schulte
;; Keywords: literate programming, reproducible research

View File

@ -1,6 +1,6 @@
;;; ob-table.el --- support for calling org-babel functions from tables
;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
;; Author: Eric Schulte
;; Keywords: literate programming, reproducible research

View File

@ -1,6 +1,6 @@
;;; ob-tangle.el --- extract source code from org-mode files
;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
;; Author: Eric Schulte
;; Keywords: literate programming, reproducible research

View File

@ -1,6 +1,6 @@
;;; ob.el --- working with code blocks in org-mode
;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
;; Author: Eric Schulte
;; Dan Davison
@ -1074,8 +1074,7 @@ ALTS is a cons of two character options where each option may be
either the numeric code of a single character or a list of
character alternatives. For example to split on balanced
instances of \"[ \t]:\" set ALTS to '((32 9) . 58)."
(flet ((matches (ch spec) (or (and (numberp spec) (= spec ch))
(member ch spec)))
(flet ((matches (ch spec) (if (listp spec) (member ch spec) (equal spec ch)))
(matched (ch last)
(if (consp alts)
(and (matches ch (cdr alts))

View File

@ -1,6 +1,6 @@
;;; org-agenda.el --- Dynamic task and appointment lists for Org
;; Copyright (C) 2004-2011 Free Software Foundation, Inc.
;; Copyright (C) 2004-2012 Free Software Foundation, Inc.
;; Author: Carsten Dominik <carsten at orgmode dot org>
;; Keywords: outlines, hypermedia, calendar, wp

View File

@ -1,6 +1,6 @@
;;; org-archive.el --- Archiving for Org-mode
;; Copyright (C) 2004-2011 Free Software Foundation, Inc.
;; Copyright (C) 2004-2012 Free Software Foundation, Inc.
;; Author: Carsten Dominik <carsten at orgmode dot org>
;; Keywords: outlines, hypermedia, calendar, wp

View File

@ -1,6 +1,6 @@
;;; org-ascii.el --- ASCII export for Org-mode
;; Copyright (C) 2004-2011 Free Software Foundation, Inc.
;; Copyright (C) 2004-2012 Free Software Foundation, Inc.
;; Author: Carsten Dominik <carsten at orgmode dot org>
;; Keywords: outlines, hypermedia, calendar, wp

View File

@ -1,6 +1,6 @@
;;; org-attach.el --- Manage file attachments to org-mode tasks
;; Copyright (C) 2008-2011 Free Software Foundation, Inc.
;; Copyright (C) 2008-2012 Free Software Foundation, Inc.
;; Author: John Wiegley <johnw@newartisans.com>
;; Keywords: org data task

View File

@ -1,6 +1,6 @@
;;; org-bbdb.el --- Support for links to BBDB entries from within Org-mode
;; Copyright (C) 2004-2011 Free Software Foundation, Inc.
;; Copyright (C) 2004-2012 Free Software Foundation, Inc.
;; Author: Carsten Dominik <carsten at orgmode dot org>,
;; Thomas Baumann <thomas dot baumann at ch dot tum dot de>

View File

@ -1,6 +1,6 @@
;;; org-beamer.el --- Beamer-specific LaTeX export for org-mode
;;
;; Copyright (C) 2007-2011 Free Software Foundation, Inc.
;; Copyright (C) 2007-2012 Free Software Foundation, Inc.
;;
;; Author: Carsten Dominik <carsten.dominik AT gmail DOT com>
;; Maintainer: Carsten Dominik <carsten.dominik AT gmail DOT com>

View File

@ -1,6 +1,6 @@
;;; org-bibtex.el --- Org links to BibTeX entries
;;
;; Copyright (C) 2007-2011 Free Software Foundation, Inc.
;; Copyright (C) 2007-2012 Free Software Foundation, Inc.
;;
;; Author: Bastien Guerry <bzg at altern dot org>
;; Carsten Dominik <carsten dot dominik at gmail dot com>

View File

@ -1,6 +1,6 @@
;;; org-capture.el --- Fast note taking in Org-mode
;; Copyright (C) 2010-2011 Free Software Foundation, Inc.
;; Copyright (C) 2010-2012 Free Software Foundation, Inc.
;; Author: Carsten Dominik <carsten at orgmode dot org>
;; Keywords: outlines, hypermedia, calendar, wp

View File

@ -1,6 +1,6 @@
;;; org-clock.el --- The time clocking code for Org-mode
;; Copyright (C) 2004-2011 Free Software Foundation, Inc.
;; Copyright (C) 2004-2012 Free Software Foundation, Inc.
;; Author: Carsten Dominik <carsten at orgmode dot org>
;; Keywords: outlines, hypermedia, calendar, wp

View File

@ -1,6 +1,6 @@
;;; org-colview.el --- Column View in Org-mode
;; Copyright (C) 2004-2011 Free Software Foundation, Inc.
;; Copyright (C) 2004-2012 Free Software Foundation, Inc.
;; Author: Carsten Dominik <carsten at orgmode dot org>
;; Keywords: outlines, hypermedia, calendar, wp

View File

@ -1,6 +1,6 @@
;;; org-compat.el --- Compatibility code for Org-mode
;; Copyright (C) 2004-2011 Free Software Foundation, Inc.
;; Copyright (C) 2004-2012 Free Software Foundation, Inc.
;; Author: Carsten Dominik <carsten at orgmode dot org>
;; Keywords: outlines, hypermedia, calendar, wp

View File

@ -1,6 +1,6 @@
;;; org-ctags.el - Integrate Emacs "tags" facility with org mode.
;;
;; Copyright (C) 2007-2011 Free Software Foundation, Inc.
;; Copyright (C) 2007-2012 Free Software Foundation, Inc.
;; Author: Paul Sexton <eeeickythump@gmail.com>

View File

@ -1,6 +1,6 @@
;;; org-datetree.el --- Create date entries in a tree
;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
;; Author: Carsten Dominik <carsten at orgmode dot org>
;; Keywords: outlines, hypermedia, calendar, wp

View File

@ -1,6 +1,6 @@
;;; org-docbook.el --- DocBook exporter for org-mode
;;
;; Copyright (C) 2007-2011 Free Software Foundation, Inc.
;; Copyright (C) 2007-2012 Free Software Foundation, Inc.
;;
;; Emacs Lisp Archive Entry
;; Filename: org-docbook.el

View File

@ -1,6 +1,6 @@
;;; org-docview.el --- support for links to doc-view-mode buffers
;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
;; Author: Jan Böcker <jan.boecker at jboecker dot de>
;; Keywords: outlines, hypermedia, calendar, wp

View File

@ -1,6 +1,6 @@
;;; org-entities.el --- Support for special entities in Org-mode
;; Copyright (C) 2010-2011 Free Software Foundation, Inc.
;; Copyright (C) 2010-2012 Free Software Foundation, Inc.
;; Author: Carsten Dominik <carsten at orgmode dot org>,
;; Ulf Stegemann <ulf at zeitform dot de>

View File

@ -1,5 +1,5 @@
;;; org-eshell.el - Support for links to working directories in eshell
;; Copyright (C) 2011 Free Software Foundation, Inc.
;; Copyright (C) 2012 Free Software Foundation, Inc.
;;
;; Author: Konrad Hinsen <konrad.hinsen AT fastmail.net>
;; Version: 0.1

View File

@ -1,6 +1,6 @@
;;; org-exp-blocks.el --- pre-process blocks when exporting org files
;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
;; Author: Eric Schulte

View File

@ -1,6 +1,6 @@
;;; org-exp.el --- ASCII, HTML, XOXO and iCalendar export for Org-mode
;; Copyright (C) 2004-2011 Free Software Foundation, Inc.
;; Copyright (C) 2004-2012 Free Software Foundation, Inc.
;; Author: Carsten Dominik <carsten at orgmode dot org>
;; Keywords: outlines, hypermedia, calendar, wp

View File

@ -1,6 +1,6 @@
;;; org-faces.el --- Face definitions for Org-mode.
;; Copyright (C) 2004-2011 Free Software Foundation, Inc.
;; Copyright (C) 2004-2012 Free Software Foundation, Inc.
;; Author: Carsten Dominik <carsten at orgmode dot org>
;; Keywords: outlines, hypermedia, calendar, wp

View File

@ -1,6 +1,6 @@
;;; org-feed.el --- Add RSS feed items to Org files
;;
;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
;;
;; Author: Carsten Dominik <carsten at orgmode dot org>
;; Keywords: outlines, hypermedia, calendar, wp

View File

@ -1,6 +1,6 @@
;;; org-footnote.el --- Footnote support in Org and elsewhere
;;
;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
;;
;; Author: Carsten Dominik <carsten at orgmode dot org>
;; Keywords: outlines, hypermedia, calendar, wp

View File

@ -1,6 +1,6 @@
;;; org-freemind.el --- Export Org files to freemind
;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
;; Author: Lennart Borgman (lennart O borgman A gmail O com)
;; Keywords: outlines, hypermedia, calendar, wp

View File

@ -1,6 +1,6 @@
;;; org-gnus.el --- Support for links to Gnus groups and messages from within Org-mode
;; Copyright (C) 2004-2011 Free Software Foundation, Inc.
;; Copyright (C) 2004-2012 Free Software Foundation, Inc.
;; Author: Carsten Dominik <carsten at orgmode dot org>
;; Tassilo Horn <tassilo at member dot fsf dot org>

View File

@ -1,6 +1,6 @@
;;; org-habit.el --- The habit tracking code for Org-mode
;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
;; Author: John Wiegley <johnw at gnu dot org>
;; Keywords: outlines, hypermedia, calendar, wp

View File

@ -1,6 +1,6 @@
;;; org-html.el --- HTML export for Org-mode
;; Copyright (C) 2004-2011 Free Software Foundation, Inc.
;; Copyright (C) 2004-2012 Free Software Foundation, Inc.
;; Author: Carsten Dominik <carsten at orgmode dot org>
;; Keywords: outlines, hypermedia, calendar, wp

View File

@ -1,6 +1,6 @@
;;; org-icalendar.el --- iCalendar export for Org-mode
;; Copyright (C) 2004-2011 Free Software Foundation, Inc.
;; Copyright (C) 2004-2012 Free Software Foundation, Inc.
;; Author: Carsten Dominik <carsten at orgmode dot org>
;; Keywords: outlines, hypermedia, calendar, wp

View File

@ -1,6 +1,6 @@
;;; org-id.el --- Global identifiers for Org-mode entries
;;
;; Copyright (C) 2008-2011 Free Software Foundation, Inc.
;; Copyright (C) 2008-2012 Free Software Foundation, Inc.
;;
;; Author: Carsten Dominik <carsten at orgmode dot org>
;; Keywords: outlines, hypermedia, calendar, wp

View File

@ -1,5 +1,5 @@
;;; org-indent.el --- Dynamic indentation for Org-mode
;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
;;
;; Author: Carsten Dominik <carsten at orgmode dot org>
;; Keywords: outlines, hypermedia, calendar, wp

View File

@ -1,6 +1,6 @@
;;; org-info.el --- Support for links to Info nodes from within Org-Mode
;; Copyright (C) 2004-2011 Free Software Foundation, Inc.
;; Copyright (C) 2004-2012 Free Software Foundation, Inc.
;; Author: Carsten Dominik <carsten at orgmode dot org>
;; Keywords: outlines, hypermedia, calendar, wp

View File

@ -1,6 +1,6 @@
;;; org-inlinetask.el --- Tasks independent of outline hierarchy
;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
;;
;; Author: Carsten Dominik <carsten at orgmode dot org>
;; Keywords: outlines, hypermedia, calendar, wp

View File

@ -1,6 +1,6 @@
;;; org-irc.el --- Store links to IRC sessions
;;
;; Copyright (C) 2008-2011 Free Software Foundation, Inc.
;; Copyright (C) 2008-2012 Free Software Foundation, Inc.
;;
;; Author: Philip Jackson <emacs@shellarchive.co.uk>
;; Keywords: erc, irc, link, org

View File

@ -1,6 +1,6 @@
;;; org-jsinfo.el --- Support for org-info.js Javascript in Org HTML export
;; Copyright (C) 2004-2011 Free Software Foundation, Inc.
;; Copyright (C) 2004-2012 Free Software Foundation, Inc.
;; Author: Carsten Dominik <carsten at orgmode dot org>
;; Keywords: outlines, hypermedia, calendar, wp

View File

@ -1,6 +1,6 @@
;;; org-latex.el --- LaTeX exporter for org-mode
;;
;; Copyright (C) 2007-2011 Free Software Foundation, Inc.
;; Copyright (C) 2007-2012 Free Software Foundation, Inc.
;;
;; Emacs Lisp Archive Entry
;; Filename: org-latex.el

View File

@ -1,6 +1,6 @@
;;; org-list.el --- Plain lists for Org-mode
;;
;; Copyright (C) 2004-2011 Free Software Foundation, Inc.
;; Copyright (C) 2004-2012 Free Software Foundation, Inc.
;;
;; Author: Carsten Dominik <carsten at orgmode dot org>
;; Bastien Guerry <bzg AT gnu DOT org>

View File

@ -1,6 +1,6 @@
;;; org-lparse.el --- Line-oriented parser-exporter for Org-mode
;; Copyright (C) 2010-2011 Free Software Foundation, Inc.
;; Copyright (C) 2010-2012 Free Software Foundation, Inc.
;; Author: Jambunathan K <kjambunathan at gmail dot com>
;; Keywords: outlines, hypermedia, calendar, wp

View File

@ -1,6 +1,6 @@
;;; org-mac-message.el --- Links to Apple Mail.app messages from within Org-mode
;; Copyright (C) 2008-2011 Free Software Foundation, Inc.
;; Copyright (C) 2008-2012 Free Software Foundation, Inc.
;; Author: John Wiegley <johnw@gnu.org>
;; Christopher Suckling <suckling at gmail dot com>

View File

@ -1,6 +1,6 @@
;;; org-macs.el --- Top-level definitions for Org-mode
;; Copyright (C) 2004-2011 Free Software Foundation, Inc.
;; Copyright (C) 2004-2012 Free Software Foundation, Inc.
;; Author: Carsten Dominik <carsten at orgmode dot org>
;; Keywords: outlines, hypermedia, calendar, wp

View File

@ -1,6 +1,6 @@
;;; org-mew.el --- Support for links to Mew messages from within Org-mode
;; Copyright (C) 2008-2011 Free Software Foundation, Inc.
;; Copyright (C) 2008-2012 Free Software Foundation, Inc.
;; Author: Tokuya Kameshima <kames at fa2 dot so-net dot ne dot jp>
;; Keywords: outlines, hypermedia, calendar, wp

View File

@ -1,6 +1,6 @@
;;; org-mhe.el --- Support for links to MH-E messages from within Org-mode
;; Copyright (C) 2004-2011 Free Software Foundation, Inc.
;; Copyright (C) 2004-2012 Free Software Foundation, Inc.
;; Author: Thomas Baumann <thomas dot baumann at ch dot tum dot de>
;; Keywords: outlines, hypermedia, calendar, wp

View File

@ -1,5 +1,5 @@
;;; org-mobile.el --- Code for asymmetric sync with a mobile device
;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
;;
;; Author: Carsten Dominik <carsten at orgmode dot org>
;; Keywords: outlines, hypermedia, calendar, wp

View File

@ -1,6 +1,6 @@
;;; org-mouse.el --- Better mouse support for org-mode
;; Copyright (C) 2006-2011 Free Software Foundation
;; Copyright (C) 2006-2012 Free Software Foundation
;;
;; Author: Piotr Zielinski <piotr dot zielinski at gmail dot com>
;; Maintainer: Carsten Dominik <carsten at orgmode dot org>

View File

@ -1,6 +1,6 @@
;;; org-odt.el --- OpenDocumentText export for Org-mode
;; Copyright (C) 2010-2011 Free Software Foundation, Inc.
;; Copyright (C) 2010-2012 Free Software Foundation, Inc.
;; Author: Jambunathan K <kjambunathan at gmail dot com>
;; Keywords: outlines, hypermedia, calendar, wp

View File

@ -1,6 +1,6 @@
;;; org-pcomplete.el --- In-buffer completion code
;; Copyright (C) 2004-2011 Free Software Foundation, Inc.
;; Copyright (C) 2004-2012 Free Software Foundation, Inc.
;;
;; Author: Carsten Dominik <carsten at orgmode dot org>
;; John Wiegley <johnw at gnu dot org>

View File

@ -1,6 +1,6 @@
;;; org-plot.el --- Support for plotting from Org-mode
;; Copyright (C) 2008-2011 Free Software Foundation, Inc.
;; Copyright (C) 2008-2012 Free Software Foundation, Inc.
;;
;; Author: Eric Schulte <schulte dot eric at gmail dot com>
;; Keywords: tables, plotting

View File

@ -1,6 +1,6 @@
;;; org-protocol.el --- Intercept calls from emacsclient to trigger custom actions.
;;
;; Copyright (C) 2008-2011
;; Copyright (C) 2008-2012
;; Free Software Foundation, Inc.
;;
;; Author: Bastien Guerry <bzg AT gnu DOT org>

View File

@ -1,5 +1,5 @@
;;; org-publish.el --- publish related org-mode files as a website
;; Copyright (C) 2006-2011 Free Software Foundation, Inc.
;; Copyright (C) 2006-2012 Free Software Foundation, Inc.
;; Author: David O'Toole <dto@gnu.org>
;; Maintainer: Carsten Dominik <carsten DOT dominik AT gmail DOT com>

View File

@ -1,6 +1,6 @@
;;; org-remember.el --- Fast note taking in Org-mode
;; Copyright (C) 2004-2011 Free Software Foundation, Inc.
;; Copyright (C) 2004-2012 Free Software Foundation, Inc.
;; Author: Carsten Dominik <carsten at orgmode dot org>
;; Keywords: outlines, hypermedia, calendar, wp

View File

@ -1,6 +1,6 @@
;;; org-rmail.el --- Support for links to Rmail messages from within Org-mode
;; Copyright (C) 2004-2011 Free Software Foundation, Inc.
;; Copyright (C) 2004-2012 Free Software Foundation, Inc.
;; Author: Carsten Dominik <carsten at orgmode dot org>
;; Keywords: outlines, hypermedia, calendar, wp

View File

@ -1,4 +1,4 @@
;; Copyright (C) 2009-2011 Free Software Foundation, Inc.
;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
;; Author: Chris Gray <chrismgray@gmail.com>

View File

@ -1,6 +1,6 @@
;;; org-src.el --- Source code examples in Org
;;
;; Copyright (C) 2004-2011 Free Software Foundation, Inc.
;; Copyright (C) 2004-2012 Free Software Foundation, Inc.
;;
;; Author: Carsten Dominik <carsten at orgmode dot org>
;; Bastien Guerry <bzg AT gnu DOT org>

View File

@ -1,6 +1,6 @@
;;; org-table.el --- The table editor for Org-mode
;; Copyright (C) 2004-2011 Free Software Foundation, Inc.
;; Copyright (C) 2004-2012 Free Software Foundation, Inc.
;; Author: Carsten Dominik <carsten at orgmode dot org>
;; Keywords: outlines, hypermedia, calendar, wp

View File

@ -1,6 +1,6 @@
;;; org-taskjuggler.el --- TaskJuggler exporter for org-mode
;;
;; Copyright (C) 2007-2011 Free Software Foundation, Inc.
;; Copyright (C) 2007-2012 Free Software Foundation, Inc.
;;
;; Emacs Lisp Archive Entry
;; Filename: org-taskjuggler.el

View File

@ -1,6 +1,6 @@
;;; org-timer.el --- The relative timer code for Org-mode
;; Copyright (C) 2008-2011 Free Software Foundation, Inc.
;; Copyright (C) 2008-2012 Free Software Foundation, Inc.
;; Author: Carsten Dominik <carsten at orgmode dot org>
;; Keywords: outlines, hypermedia, calendar, wp

View File

@ -1,6 +1,6 @@
;;; org-vm.el --- Support for links to VM messages from within Org-mode
;; Copyright (C) 2004-2011 Free Software Foundation, Inc.
;; Copyright (C) 2004-2012 Free Software Foundation, Inc.
;; Author: Carsten Dominik <carsten at orgmode dot org>
;; Keywords: outlines, hypermedia, calendar, wp

View File

@ -1,6 +1,6 @@
;;; org-w3m.el --- Support from copy and paste from w3m to Org-mode
;; Copyright (C) 2008-2011 Free Software Foundation, Inc.
;; Copyright (C) 2008-2012 Free Software Foundation, Inc.
;; Author: Andy Stewart <lazycat dot manatee at gmail dot com>
;; Keywords: outlines, hypermedia, calendar, wp

View File

@ -1,6 +1,6 @@
;;; org-wl.el --- Support for links to Wanderlust messages from within Org-mode
;; Copyright (C) 2004-2011 Free Software Foundation, Inc.
;; Copyright (C) 2004-2012 Free Software Foundation, Inc.
;; Author: Tokuya Kameshima <kames at fa2 dot so-net dot ne dot jp>
;; David Maus <dmaus at ictsoc dot de>

View File

@ -1,6 +1,6 @@
;;; org-xoxo.el --- XOXO export for Org-mode
;; Copyright (C) 2004-2011 Free Software Foundation, Inc.
;; Copyright (C) 2004-2012 Free Software Foundation, Inc.
;; Author: Carsten Dominik <carsten at orgmode dot org>
;; Keywords: outlines, hypermedia, calendar, wp

View File

@ -1,12 +1,12 @@
;;; org.el --- Outline-based notes management and organizer
;; Carstens outline-mode for keeping track of everything.
;; Copyright (C) 2004-2011 Free Software Foundation, Inc.
;; Copyright (C) 2004-2012 Free Software Foundation, Inc.
;;
;; Author: Carsten Dominik <carsten at orgmode dot org>
;; Maintainer: Bastien Guerry <bzg at gnu dot org>
;; Keywords: outlines, hypermedia, calendar, wp
;; Homepage: http://orgmode.org
;; Version: 7.8.02
;; Version: 7.8.03
;;
;; This file is part of GNU Emacs.
;;
@ -203,7 +203,7 @@ identifier."
;;; Version
(defconst org-version "7.8.02"
(defconst org-version "7.8.03"
"The version number of the file org.el.")
(defun org-version (&optional here)