diff options
Diffstat (limited to 'lisp/emulation/mlsupport.el')
-rw-r--r-- | lisp/emulation/mlsupport.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/emulation/mlsupport.el b/lisp/emulation/mlsupport.el index 14e7a3c9557..521b64ce281 100644 --- a/lisp/emulation/mlsupport.el +++ b/lisp/emulation/mlsupport.el @@ -18,8 +18,6 @@ ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. -(provide 'mlsupport) - (defmacro ml-defun (&rest defs) (list 'ml-defun-1 (list 'quote defs))) @@ -403,3 +401,6 @@ (if (< from 0) (setq from (+ from length))) (if (< to 0) (setq to (+ to length))) (substring string from (+ from to)))) + +(provide 'mlsupport) + |