Skip to content

Commit 1fdca39

Browse files
authored
Merge pull request #291 from emacsjanitors/master
Update Emacs lisp library headers to follow the conventions
2 parents 9826a52 + d07c8dc commit 1fdca39

File tree

4 files changed

+88
-88
lines changed

4 files changed

+88
-88
lines changed

opi/emacs/mozart.el

Lines changed: 24 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,27 @@
1-
;;;
2-
;;; Authors:
3-
;;; Leif Kornstaedt <[email protected]>
4-
;;; Michael Mehl <[email protected]>
5-
;;; Ralf Scheidhauer <[email protected]>
6-
;;;
7-
;;; Contributor:
8-
;;; Benjamin Lorenz <[email protected]>
9-
;;; Denys Duchier <[email protected]>
10-
;;;
11-
;;; Copyright:
12-
;;; Leif Kornstaedt, Michael Mehl, and Ralf Scheidhauer, 1993-1998
13-
;;; Denys Duchier, 1998
14-
;;;
15-
;;; Last change:
16-
;;; $Date$ by $Author$
17-
;;; $Revision$
18-
;;;
19-
;;; This file is part of Mozart, an implementation of Oz 3:
20-
;;; http://www.mozart-oz.org
21-
;;;
22-
;;; See the file "LICENSE" or
23-
;;; http://www.mozart-oz.org/LICENSE.html
24-
;;; for information on usage and redistribution
25-
;;; of this file, and for a DISCLAIMER OF ALL
26-
;;; WARRANTIES.
27-
;;;
28-
29-
;; Functions for running a Mozart sub-process
1+
;;; mozart.el --- Functions for running a Mozart sub-process.
2+
3+
;; Copyright (c) 1993-1998 Leif Kornstaedt
4+
;; Copyright (c) 1993-1998 Michael Mehl
5+
;; Copyright (c) 1993-1998 Ralf Scheidhauer
6+
;; Copyright (c) 1998 Denys Duchier
7+
8+
;; This file is part of Mozart, an implementation of Oz 3:
9+
;; http://www.mozart-oz.org
10+
11+
;; Authors:
12+
;; Leif Kornstaedt <[email protected]>
13+
;; Michael Mehl <[email protected]>
14+
;; Ralf Scheidhauer <[email protected]>
15+
;; Contributors:
16+
;; Benjamin Lorenz <[email protected]>
17+
;; Denys Duchier <[email protected]>
18+
;; License: BSD-2-clause
19+
20+
;;; Commentary:
3021
;;
22+
;; Functions for running a Mozart sub-process.
23+
24+
;;; Code:
3125

3226
(require 'oz)
3327
(require 'comint)
@@ -1931,3 +1925,4 @@ Commands:
19311925
;;; byte-compile-dynamic-docstrings: nil ***
19321926
;;; byte-compile-compatibility: t ***
19331927
;;; End: ***
1928+
;;; mozart.el ends here

opi/emacs/oz-extra.el

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
;;; oz-extra.el --- Outline mode support
2+
3+
;; This file is part of Mozart, an implementation of Oz 3:
4+
;; http://www.mozart-oz.org
5+
6+
;; License: BSD-2-clause
7+
8+
;;; Commentary:
9+
;;
10+
;; Outline mode support.
11+
12+
;;; Code:
13+
114
(require 'outline)
215

316
(defvar oz-outline-mode nil)
@@ -44,3 +57,4 @@
4457
;;; byte-compile-dynamic-docstrings: nil ***
4558
;;; byte-compile-compatibility: t ***
4659
;;; End: ***
60+
;;; oz-extra.el ends here

opi/emacs/oz-server.el

Lines changed: 26 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,28 @@
1-
;;;
2-
;;; Authors:
3-
;;; Denys Duchier <[email protected]>
4-
;;;
5-
;;; Contributors:
6-
;;;
7-
;;; Copyright:
8-
;;; Denys Duchier, 2000
9-
;;;
10-
;;; Last change:
11-
;;; $Date$ by $Author$
12-
;;; $Revision$
13-
;;;
14-
;;; This file is part of Mozart, an implementation of Oz 3:
15-
;;; http://www.mozart-oz.org
16-
;;;
17-
;;; See the file "LICENSE" or
18-
;;; http://www.mozart-oz.org/LICENSE.html
19-
;;; for information on usage and redistribution
20-
;;; of this file, and for a DISCLAIMER OF ALL
21-
;;; WARRANTIES.
22-
;;;
1+
;;; oz-server.el --- Uniform framework to allow interacting with Oz process.
232

24-
;;; ==================================================================
25-
;;; This file implements a more principled and uniform framework to
26-
;;; allow emacs and the Oz process to interact. The idea is to create
27-
;;; a socket connection on which the two processes can exchange
28-
;;; messages. By design, the set of message types which can be
29-
;;; exchanged is indefinitely extensible.
30-
;;; ==================================================================
3+
;; Copyright (c) 2000 Denys Duchier
314

32-
(provide 'oz-server)
5+
;; This file is part of Mozart, an implementation of Oz 3:
6+
;; http://www.mozart-oz.org
7+
8+
;; Authors:
9+
;; Leif Kornstaedt <[email protected]>
10+
;; Michael Mehl <[email protected]>
11+
;; Ralf Scheidhauer <[email protected]>
12+
;; Contributors:
13+
;; Benjamin Lorenz <[email protected]>
14+
;; Denys Duchier <[email protected]>
15+
;; License: BSD-2-clause
16+
17+
;;; Commentary:
18+
;;
19+
;; This file implements a more principled and uniform framework to
20+
;; allow emacs and the Oz process to interact. The idea is to create
21+
;; a socket connection on which the two processes can exchange
22+
;; messages. By design, the set of message types which can be
23+
;; exchanged is indefinitely extensible.
24+
25+
;;; Code:
3326

3427
(defconst oz-server-name "*Oz Server*"
3528
"name of the server process")
@@ -375,3 +368,6 @@ back a replyError."
375368
vals)))
376369
(setq oz-server-synchronous-polling nil
377370
oz-server-synchronous-reply nil)))
371+
372+
(provide 'oz-server)
373+
;;; oz-server.el ends here

opi/emacs/oz.el

Lines changed: 24 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,27 @@
1-
;;;
2-
;;; Authors:
3-
;;; Leif Kornstaedt <[email protected]>
4-
;;; Michael Mehl <[email protected]>
5-
;;; Ralf Scheidhauer <[email protected]>
6-
;;;
7-
;;; Contributor:
8-
;;; Benjamin Lorenz <[email protected]>
9-
;;; Denys Duchier <[email protected]>
10-
;;;
11-
;;; Copyright:
12-
;;; Leif Kornstaedt, Michael Mehl, and Ralf Scheidhauer, 1993-1998
13-
;;; Denys Duchier, 1998
14-
;;;
15-
;;; Last change:
16-
;;; $Date$ by $Author$
17-
;;; $Revision$
18-
;;;
19-
;;; This file is part of Mozart, an implementation of Oz 3:
20-
;;; http://www.mozart-oz.org
21-
;;;
22-
;;; See the file "LICENSE" or
23-
;;; http://www.mozart-oz.org/LICENSE.html
24-
;;; for information on usage and redistribution
25-
;;; of this file, and for a DISCLAIMER OF ALL
26-
;;; WARRANTIES.
27-
;;;
28-
29-
;; Major mode for editing Oz programs
1+
;;; oz.el --- Major mode for editing Oz programs.
2+
3+
;; Copyright (c) 1993-1998 Leif Kornstaedt
4+
;; Copyright (c) 1993-1998 Michael Mehl
5+
;; Copyright (c) 1993-1998 Ralf Scheidhauer
6+
;; Copyright (c) 1998 Denys Duchier
7+
8+
;; This file is part of Mozart, an implementation of Oz 3:
9+
;; http://www.mozart-oz.org
10+
11+
;; Authors:
12+
;; Leif Kornstaedt <[email protected]>
13+
;; Michael Mehl <[email protected]>
14+
;; Ralf Scheidhauer <[email protected]>
15+
;; Contributors:
16+
;; Benjamin Lorenz <[email protected]>
17+
;; Denys Duchier <[email protected]>
18+
;; License: BSD-2-clause
19+
20+
;;; Commentary:
3021
;;
22+
;; Major mode for editing Oz programs.
23+
24+
;;; Code:
3125

3226
;;{{{ Global Effects
3327

@@ -1693,3 +1687,4 @@ prefix ARG is negated."
16931687
;;; byte-compile-dynamic-docstrings: nil ***
16941688
;;; byte-compile-compatibility: t ***
16951689
;;; End: ***
1690+
;;; oz.el ends here

0 commit comments

Comments
 (0)