aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2010-11-12 19:34:36 -0800
committerGlenn Morris2010-11-12 19:34:36 -0800
commitf2d6ead63612fe3e2f948a7b08e32c822a1bac22 (patch)
treeedce6f21469f31097c4ab161232a7e009ed60839
parent56f5a94eea43e8fab4c8a2b94d34b3329a53101f (diff)
downloademacs-f2d6ead63612fe3e2f948a7b08e32c822a1bac22.tar.gz
emacs-f2d6ead63612fe3e2f948a7b08e32c822a1bac22.zip
Standardize some file headers.
-rw-r--r--lisp/org/ob-R.el3
-rw-r--r--lisp/org/ob-calc.el2
-rw-r--r--lisp/org/ob-emacs-lisp.el2
-rw-r--r--lisp/org/ob-js.el22
-rw-r--r--lisp/org/ob-lisp.el23
-rw-r--r--lisp/org/ob-lob.el9
-rw-r--r--lisp/org/ob-perl.el5
-rw-r--r--lisp/org/ob-python.el5
-rw-r--r--lisp/org/ob-ref.el3
-rw-r--r--lisp/org/ob-ruby.el6
-rw-r--r--lisp/org/ob-scheme.el22
-rw-r--r--lisp/org/ob-screen.el2
-rw-r--r--lisp/org/ob-sqlite.el2
-rw-r--r--lisp/org/ob.el3
-rw-r--r--lisp/org/org-mouse.el3
15 files changed, 57 insertions, 55 deletions
diff --git a/lisp/org/ob-R.el b/lisp/org/ob-R.el
index 2be79926a44..81d628e4206 100644
--- a/lisp/org/ob-R.el
+++ b/lisp/org/ob-R.el
@@ -2,7 +2,8 @@
2 2
3;; Copyright (C) 2009, 2010 Free Software Foundation, Inc. 3;; Copyright (C) 2009, 2010 Free Software Foundation, Inc.
4 4
5;; Author: Eric Schulte, Dan Davison 5;; Author: Eric Schulte
6;; Dan Davison
6;; Keywords: literate programming, reproducible research, R, statistics 7;; Keywords: literate programming, reproducible research, R, statistics
7;; Homepage: http://orgmode.org 8;; Homepage: http://orgmode.org
8;; Version: 7.3 9;; Version: 7.3
diff --git a/lisp/org/ob-calc.el b/lisp/org/ob-calc.el
index ce752008b4c..426aafd154f 100644
--- a/lisp/org/ob-calc.el
+++ b/lisp/org/ob-calc.el
@@ -1,6 +1,6 @@
1;;; ob-calc.el --- org-babel functions for calc code evaluation 1;;; ob-calc.el --- org-babel functions for calc code evaluation
2 2
3;; Copyright (C) 2010 Free Software Foundation, Inc 3;; Copyright (C) 2010 Free Software Foundation, Inc.
4 4
5;; Author: Eric Schulte 5;; Author: Eric Schulte
6;; Keywords: literate programming, reproducible research 6;; Keywords: literate programming, reproducible research
diff --git a/lisp/org/ob-emacs-lisp.el b/lisp/org/ob-emacs-lisp.el
index d74a7a579da..f1d41b3db0d 100644
--- a/lisp/org/ob-emacs-lisp.el
+++ b/lisp/org/ob-emacs-lisp.el
@@ -1,6 +1,6 @@
1;;; ob-emacs-lisp.el --- org-babel functions for emacs-lisp code evaluation 1;;; ob-emacs-lisp.el --- org-babel functions for emacs-lisp code evaluation
2 2
3;; Copyright (C) 2009, 2010 Free Software Foundation, Inc 3;; Copyright (C) 2009, 2010 Free Software Foundation, Inc.
4 4
5;; Author: Eric Schulte 5;; Author: Eric Schulte
6;; Keywords: literate programming, reproducible research 6;; Keywords: literate programming, reproducible research
diff --git a/lisp/org/ob-js.el b/lisp/org/ob-js.el
index 2f7d67ec603..dc652a95c96 100644
--- a/lisp/org/ob-js.el
+++ b/lisp/org/ob-js.el
@@ -1,28 +1,26 @@
1;;; ob-js.el --- org-babel functions for Javascript 1;;; ob-js.el --- org-babel functions for Javascript
2 2
3;; Copyright (C) 2010 Free Software Foundation 3;; Copyright (C) 2010 Free Software Foundation, Inc.
4 4
5;; Author: Eric Schulte 5;; Author: Eric Schulte
6;; Keywords: literate programming, reproducible research, js 6;; Keywords: literate programming, reproducible research, js
7;; Homepage: http://orgmode.org 7;; Homepage: http://orgmode.org
8;; Version: 7.3 8;; Version: 7.3
9 9
10;;; License: 10;; This file is part of GNU Emacs.
11 11
12;; This program is free software; you can redistribute it and/or modify 12;; GNU Emacs is free software: you can redistribute it and/or modify
13;; it under the terms of the GNU General Public License as published by 13;; it under the terms of the GNU General Public License as published by
14;; the Free Software Foundation; either version 3, or (at your option) 14;; the Free Software Foundation, either version 3 of the License, or
15;; any later version. 15;; (at your option) any later version.
16;; 16
17;; This program is distributed in the hope that it will be useful, 17;; GNU Emacs is distributed in the hope that it will be useful,
18;; but WITHOUT ANY WARRANTY; without even the implied warranty of 18;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;; GNU General Public License for more details. 20;; GNU General Public License for more details.
21;; 21
22;; You should have received a copy of the GNU General Public License 22;; You should have received a copy of the GNU General Public License
23;; along with GNU Emacs; see the file COPYING. If not, write to the 23;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25;; Boston, MA 02110-1301, USA.
26 24
27;;; Commentary: 25;;; Commentary:
28 26
@@ -35,7 +33,7 @@
35 33
36;; - a non-browser javascript engine such as node.js http://nodejs.org/ 34;; - a non-browser javascript engine such as node.js http://nodejs.org/
37;; or mozrepl http://wiki.github.com/bard/mozrepl/ 35;; or mozrepl http://wiki.github.com/bard/mozrepl/
38;; 36;;
39;; - for session based evaluation mozrepl and moz.el are required see 37;; - for session based evaluation mozrepl and moz.el are required see
40;; http://wiki.github.com/bard/mozrepl/emacs-integration for 38;; http://wiki.github.com/bard/mozrepl/emacs-integration for
41;; configuration instructions 39;; configuration instructions
diff --git a/lisp/org/ob-lisp.el b/lisp/org/ob-lisp.el
index ebe2f2f758f..3f9ac673279 100644
--- a/lisp/org/ob-lisp.el
+++ b/lisp/org/ob-lisp.el
@@ -1,28 +1,27 @@
1;;; ob-lisp.el --- org-babel functions for Common Lisp 1;;; ob-lisp.el --- org-babel functions for Common Lisp
2 2
3;; Copyright (C) 2010 Free Software Foundation 3;; Copyright (C) 2010 Free Software Foundation, Inc.
4 4
5;; Author: David T. O'Toole <dto@gnu.org>, Eric Schulte 5;; Author: David T. O'Toole <dto@gnu.org>
6;; Eric Schulte
6;; Keywords: literate programming, reproducible research, lisp 7;; Keywords: literate programming, reproducible research, lisp
7;; Homepage: http://orgmode.org 8;; Homepage: http://orgmode.org
8;; Version: 7.3 9;; Version: 7.3
9 10
10;;; License: 11;; This file is part of GNU Emacs.
11 12
12;; This program is free software; you can redistribute it and/or modify 13;; GNU Emacs is free software: you can redistribute it and/or modify
13;; it under the terms of the GNU General Public License as published by 14;; it under the terms of the GNU General Public License as published by
14;; the Free Software Foundation; either version 3, or (at your option) 15;; the Free Software Foundation, either version 3 of the License, or
15;; any later version. 16;; (at your option) any later version.
16;; 17
17;; This program is distributed in the hope that it will be useful, 18;; GNU Emacs is distributed in the hope that it will be useful,
18;; but WITHOUT ANY WARRANTY; without even the implied warranty of 19;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 20;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;; GNU General Public License for more details. 21;; GNU General Public License for more details.
21;; 22
22;; You should have received a copy of the GNU General Public License 23;; You should have received a copy of the GNU General Public License
23;; along with GNU Emacs; see the file COPYING. If not, write to the 24;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25;; Boston, MA 02110-1301, USA.
26 25
27;;; Commentary: 26;;; Commentary:
28 27
diff --git a/lisp/org/ob-lob.el b/lisp/org/ob-lob.el
index d7818c21154..243666c0a1b 100644
--- a/lisp/org/ob-lob.el
+++ b/lisp/org/ob-lob.el
@@ -2,7 +2,8 @@
2 2
3;; Copyright (C) 2009, 2010 Free Software Foundation, Inc. 3;; Copyright (C) 2009, 2010 Free Software Foundation, Inc.
4 4
5;; Author: Eric Schulte, Dan Davison 5;; Author: Eric Schulte
6;; Dan Davison
6;; Keywords: literate programming, reproducible research 7;; Keywords: literate programming, reproducible research
7;; Homepage: http://orgmode.org 8;; Homepage: http://orgmode.org
8;; Version: 7.3 9;; Version: 7.3
@@ -25,7 +26,7 @@
25;;; Commentary: 26;;; Commentary:
26 27
27;; See the online documentation for more information 28;; See the online documentation for more information
28;; 29;;
29;; http://orgmode.org/worg/org-contrib/babel/ 30;; http://orgmode.org/worg/org-contrib/babel/
30 31
31;;; Code: 32;;; Code:
@@ -92,13 +93,13 @@ if so then run the appropriate source block from the Library."
92 (beginning-of-line 1) 93 (beginning-of-line 1)
93 (if (looking-at org-babel-lob-one-liner-regexp) 94 (if (looking-at org-babel-lob-one-liner-regexp)
94 (append 95 (append
95 (mapcar #'org-babel-clean-text-properties 96 (mapcar #'org-babel-clean-text-properties
96 (list 97 (list
97 (format "%s(%s)%s" 98 (format "%s(%s)%s"
98 (match-string 2) (match-string 3) (match-string 4)) 99 (match-string 2) (match-string 3) (match-string 4))
99 (match-string 5))) 100 (match-string 5)))
100 (list (length (match-string 1)))))))) 101 (list (length (match-string 1))))))))
101 102
102(defun org-babel-lob-execute (info) 103(defun org-babel-lob-execute (info)
103 "Execute the lob call specified by INFO." 104 "Execute the lob call specified by INFO."
104 (let ((params (org-babel-process-params 105 (let ((params (org-babel-process-params
diff --git a/lisp/org/ob-perl.el b/lisp/org/ob-perl.el
index 0be667c8ce8..23c0353fcb0 100644
--- a/lisp/org/ob-perl.el
+++ b/lisp/org/ob-perl.el
@@ -1,8 +1,9 @@
1;;; ob-perl.el --- org-babel functions for perl evaluation 1;;; ob-perl.el --- org-babel functions for perl evaluation
2 2
3;; Copyright (C) 2009, 2010 Free Software Foundation 3;; Copyright (C) 2009, 2010 Free Software Foundation, Inc.
4 4
5;; Author: Dan Davison, Eric Schulte 5;; Author: Dan Davison
6;; Eric Schulte
6;; Keywords: literate programming, reproducible research 7;; Keywords: literate programming, reproducible research
7;; Homepage: http://orgmode.org 8;; Homepage: http://orgmode.org
8;; Version: 7.3 9;; Version: 7.3
diff --git a/lisp/org/ob-python.el b/lisp/org/ob-python.el
index 5aaa1059a47..22cb5337d7a 100644
--- a/lisp/org/ob-python.el
+++ b/lisp/org/ob-python.el
@@ -1,8 +1,9 @@
1;;; ob-python.el --- org-babel functions for python evaluation 1;;; ob-python.el --- org-babel functions for python evaluation
2 2
3;; Copyright (C) 2009, 2010 Free Software Foundation 3;; Copyright (C) 2009, 2010 Free Software Foundation, Inc.
4 4
5;; Author: Eric Schulte, Dan Davison 5;; Author: Eric Schulte
6;; Dan Davison
6;; Keywords: literate programming, reproducible research 7;; Keywords: literate programming, reproducible research
7;; Homepage: http://orgmode.org 8;; Homepage: http://orgmode.org
8;; Version: 7.3 9;; Version: 7.3
diff --git a/lisp/org/ob-ref.el b/lisp/org/ob-ref.el
index 16881e824de..e104d6bd693 100644
--- a/lisp/org/ob-ref.el
+++ b/lisp/org/ob-ref.el
@@ -2,7 +2,8 @@
2 2
3;; Copyright (C) 2009, 2010 Free Software Foundation, Inc. 3;; Copyright (C) 2009, 2010 Free Software Foundation, Inc.
4 4
5;; Author: Eric Schulte, Dan Davison 5;; Author: Eric Schulte
6;; Dan Davison
6;; Keywords: literate programming, reproducible research 7;; Keywords: literate programming, reproducible research
7;; Homepage: http://orgmode.org 8;; Homepage: http://orgmode.org
8;; Version: 7.3 9;; Version: 7.3
diff --git a/lisp/org/ob-ruby.el b/lisp/org/ob-ruby.el
index 9a9f21cde60..70b46411086 100644
--- a/lisp/org/ob-ruby.el
+++ b/lisp/org/ob-ruby.el
@@ -1,6 +1,6 @@
1;;; ob-ruby.el --- org-babel functions for ruby evaluation 1;;; ob-ruby.el --- org-babel functions for ruby evaluation
2 2
3;; Copyright (C) 2009, 2010 Free Software Foundation 3;; Copyright (C) 2009, 2010 Free Software Foundation, Inc.
4 4
5;; Author: Eric Schulte 5;; Author: Eric Schulte
6;; Keywords: literate programming, reproducible research 6;; Keywords: literate programming, reproducible research
@@ -29,10 +29,10 @@
29;;; Requirements: 29;;; Requirements:
30 30
31;; - ruby and irb executables :: http://www.ruby-lang.org/ 31;; - ruby and irb executables :: http://www.ruby-lang.org/
32;; 32;;
33;; - ruby-mode :: Can be installed through ELPA, or from 33;; - ruby-mode :: Can be installed through ELPA, or from
34;; http://github.com/eschulte/rinari/raw/master/util/ruby-mode.el 34;; http://github.com/eschulte/rinari/raw/master/util/ruby-mode.el
35;; 35;;
36;; - inf-ruby mode :: Can be installed through ELPA, or from 36;; - inf-ruby mode :: Can be installed through ELPA, or from
37;; http://github.com/eschulte/rinari/raw/master/util/inf-ruby.el 37;; http://github.com/eschulte/rinari/raw/master/util/inf-ruby.el
38 38
diff --git a/lisp/org/ob-scheme.el b/lisp/org/ob-scheme.el
index 943deadc02c..c0e0a3fb6f9 100644
--- a/lisp/org/ob-scheme.el
+++ b/lisp/org/ob-scheme.el
@@ -1,28 +1,26 @@
1;;; ob-scheme.el --- org-babel functions for Scheme 1;;; ob-scheme.el --- org-babel functions for Scheme
2 2
3;; Copyright (C) 2010 Free Software Foundation 3;; Copyright (C) 2010 Free Software Foundation, Inc.
4 4
5;; Author: Eric Schulte 5;; Author: Eric Schulte
6;; Keywords: literate programming, reproducible research, scheme 6;; Keywords: literate programming, reproducible research, scheme
7;; Homepage: http://orgmode.org 7;; Homepage: http://orgmode.org
8;; Version: 7.3 8;; Version: 7.3
9 9
10;;; License: 10;; This file is part of GNU Emacs.
11 11
12;; This program is free software; you can redistribute it and/or modify 12;; GNU Emacs is free software: you can redistribute it and/or modify
13;; it under the terms of the GNU General Public License as published by 13;; it under the terms of the GNU General Public License as published by
14;; the Free Software Foundation; either version 3, or (at your option) 14;; the Free Software Foundation, either version 3 of the License, or
15;; any later version. 15;; (at your option) any later version.
16;; 16
17;; This program is distributed in the hope that it will be useful, 17;; GNU Emacs is distributed in the hope that it will be useful,
18;; but WITHOUT ANY WARRANTY; without even the implied warranty of 18;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;; GNU General Public License for more details. 20;; GNU General Public License for more details.
21;; 21
22;; You should have received a copy of the GNU General Public License 22;; You should have received a copy of the GNU General Public License
23;; along with GNU Emacs; see the file COPYING. If not, write to the 23;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25;; Boston, MA 02110-1301, USA.
26 24
27;;; Commentary: 25;;; Commentary:
28 26
@@ -35,7 +33,7 @@
35 33
36;; - a working scheme implementation 34;; - a working scheme implementation
37;; (e.g. guile http://www.gnu.org/software/guile/guile.html) 35;; (e.g. guile http://www.gnu.org/software/guile/guile.html)
38;; 36;;
39;; - for session based evaluation cmuscheme.el is required which is 37;; - for session based evaluation cmuscheme.el is required which is
40;; included in Emacs 38;; included in Emacs
41 39
diff --git a/lisp/org/ob-screen.el b/lisp/org/ob-screen.el
index f877f0d147b..206e51b19fe 100644
--- a/lisp/org/ob-screen.el
+++ b/lisp/org/ob-screen.el
@@ -1,6 +1,6 @@
1;;; ob-screen.el --- org-babel support for interactive terminal 1;;; ob-screen.el --- org-babel support for interactive terminal
2 2
3;; Copyright (C) 2009, 2010 Free Software Foundation 3;; Copyright (C) 2009, 2010 Free Software Foundation, Inc.
4 4
5;; Author: Benjamin Andresen 5;; Author: Benjamin Andresen
6;; Keywords: literate programming, interactive shell 6;; Keywords: literate programming, interactive shell
diff --git a/lisp/org/ob-sqlite.el b/lisp/org/ob-sqlite.el
index c744e4334ec..d1fa9ac4c5f 100644
--- a/lisp/org/ob-sqlite.el
+++ b/lisp/org/ob-sqlite.el
@@ -1,6 +1,6 @@
1;;; ob-sqlite.el --- org-babel functions for sqlite database interaction 1;;; ob-sqlite.el --- org-babel functions for sqlite database interaction
2 2
3;; Copyright (C) 2010 Free Software Foundation 3;; Copyright (C) 2010 Free Software Foundation, Inc.
4 4
5;; Author: Eric Schulte 5;; Author: Eric Schulte
6;; Keywords: literate programming, reproducible research 6;; Keywords: literate programming, reproducible research
diff --git a/lisp/org/ob.el b/lisp/org/ob.el
index 44557c6624a..fe068de549f 100644
--- a/lisp/org/ob.el
+++ b/lisp/org/ob.el
@@ -2,7 +2,8 @@
2 2
3;; Copyright (C) 2009, 2010 Free Software Foundation, Inc. 3;; Copyright (C) 2009, 2010 Free Software Foundation, Inc.
4 4
5;; Author: Eric Schulte, Dan Davison 5;; Author: Eric Schulte
6;; Dan Davison
6;; Keywords: literate programming, reproducible research 7;; Keywords: literate programming, reproducible research
7;; Homepage: http://orgmode.org 8;; Homepage: http://orgmode.org
8;; Version: 7.3 9;; Version: 7.3
diff --git a/lisp/org/org-mouse.el b/lisp/org/org-mouse.el
index e16c9778d77..4a341d4272d 100644
--- a/lisp/org/org-mouse.el
+++ b/lisp/org/org-mouse.el
@@ -1,6 +1,7 @@
1;;; org-mouse.el --- Better mouse support for org-mode 1;;; org-mouse.el --- Better mouse support for org-mode
2 2
3;; Copyright (C) 2006, 2007, 2008, 2009, 2010 Free Software Foundation 3;; Copyright (C) 2006, 2007, 2008, 2009, 2010
4;; Free Software Foundation, Inc.
4;; 5;;
5;; Author: Piotr Zielinski <piotr dot zielinski at gmail dot com> 6;; Author: Piotr Zielinski <piotr dot zielinski at gmail dot com>
6;; Maintainer: Carsten Dominik <carsten at orgmode dot org> 7;; Maintainer: Carsten Dominik <carsten at orgmode dot org>