aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/emulation
diff options
context:
space:
mode:
authorEric S. Raymond1993-03-22 05:42:35 +0000
committerEric S. Raymond1993-03-22 05:42:35 +0000
commitedbd2f74bced0e41cccddf3032d9cb4486a6d432 (patch)
tree748cd434db6b81b511017666b95dbd7678c010d3 /lisp/emulation
parente41b2db1da153e3ead4a01cb6e729cb99cad78ae (diff)
downloademacs-edbd2f74bced0e41cccddf3032d9cb4486a6d432.tar.gz
emacs-edbd2f74bced0e41cccddf3032d9cb4486a6d432.zip
Added or corrected Commentary sections
Diffstat (limited to 'lisp/emulation')
-rw-r--r--lisp/emulation/mlconvert.el8
-rw-r--r--lisp/emulation/mlsupport.el8
2 files changed, 15 insertions, 1 deletions
diff --git a/lisp/emulation/mlconvert.el b/lisp/emulation/mlconvert.el
index 20b51466e4f..c186622e43b 100644
--- a/lisp/emulation/mlconvert.el
+++ b/lisp/emulation/mlconvert.el
@@ -3,7 +3,7 @@
3;; Copyright (C) 1985 Free Software Foundation, Inc. 3;; Copyright (C) 1985 Free Software Foundation, Inc.
4 4
5;; Maintainer: FSF 5;; Maintainer: FSF
6;; Keywords: extensions 6;; Keywords: emulations
7 7
8;; This file is part of GNU Emacs. 8;; This file is part of GNU Emacs.
9 9
@@ -21,6 +21,12 @@
21;; along with GNU Emacs; see the file COPYING. If not, write to 21;; along with GNU Emacs; see the file COPYING. If not, write to
22;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 22;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
23 23
24;;; Commentary:
25
26;; This package conversts Mocklisp code written under a Gosling or UniPress
27;; Emacs for use with GNU Emacs. The translated code will require runtime
28;; support from the mlsupport.el equivalent.
29
24;;; Code: 30;;; Code:
25 31
26;;;###autoload 32;;;###autoload
diff --git a/lisp/emulation/mlsupport.el b/lisp/emulation/mlsupport.el
index c5091b70434..63576d52f8b 100644
--- a/lisp/emulation/mlsupport.el
+++ b/lisp/emulation/mlsupport.el
@@ -21,6 +21,14 @@
21;; along with GNU Emacs; see the file COPYING. If not, write to 21;; along with GNU Emacs; see the file COPYING. If not, write to
22;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 22;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
23 23
24;;; Commentary:
25
26;; This package provides equivalents of certain primitives from Gosling
27;; Emacs (including the commercial UniPress versions). These have an
28;; ml- prefix to distinguish them from native GNU Emacs functions with
29;; similar names. The oackage mlconvert.el translates Mocklisp code
30;; to use these names.
31
24;;; Code: 32;;; Code:
25 33
26(defmacro ml-defun (&rest defs) 34(defmacro ml-defun (&rest defs)