|
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. |
23 | 2 |
|
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 |
31 | 4 |
|
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: |
33 | 26 |
|
34 | 27 | (defconst oz-server-name "*Oz Server*"
|
35 | 28 | "name of the server process")
|
@@ -375,3 +368,6 @@ back a replyError."
|
375 | 368 | vals)))
|
376 | 369 | (setq oz-server-synchronous-polling nil
|
377 | 370 | oz-server-synchronous-reply nil)))
|
| 371 | + |
| 372 | +(provide 'oz-server) |
| 373 | +;;; oz-server.el ends here |
0 commit comments