diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-06-22 18:57:55 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-06-22 18:57:55 +0000 |
commit | 896546cd9ba8e82956662329b77becb0366a1e73 (patch) | |
tree | fb9f48d5363d164ad5c72a182dbe1e5a78322c6c /lisp/progmodes | |
parent | 43c89a968ed6f1972a6ff075846622ade5bc7cf9 (diff) | |
download | emacs-896546cd9ba8e82956662329b77becb0366a1e73.tar.gz |
Add provide call.
Diffstat (limited to 'lisp/progmodes')
-rw-r--r-- | lisp/progmodes/asm-mode.el | 2 | ||||
-rw-r--r-- | lisp/progmodes/cplus-md.el | 2 | ||||
-rw-r--r-- | lisp/progmodes/modula2.el | 2 | ||||
-rw-r--r-- | lisp/progmodes/pascal.el | 2 | ||||
-rw-r--r-- | lisp/progmodes/prolog.el | 2 |
5 files changed, 10 insertions, 0 deletions
diff --git a/lisp/progmodes/asm-mode.el b/lisp/progmodes/asm-mode.el index 3a0370bdaaf..a9132afd157 100644 --- a/lisp/progmodes/asm-mode.el +++ b/lisp/progmodes/asm-mode.el @@ -228,4 +228,6 @@ repeatedly until you are satisfied with the kind of comment." ) (end-of-line)) +(provide 'asm-mode) + ;;; asm-mode.el ends here diff --git a/lisp/progmodes/cplus-md.el b/lisp/progmodes/cplus-md.el index a00dfc778a2..42e2346a48d 100644 --- a/lisp/progmodes/cplus-md.el +++ b/lisp/progmodes/cplus-md.el @@ -1058,4 +1058,6 @@ The fill lines remain a comment." ;; (beginning-of-line 1))) ;; (goto-char restore))) +(provide 'cplus-md) + ;;; cplus-md.el ends here diff --git a/lisp/progmodes/modula2.el b/lisp/progmodes/modula2.el index c28758538ed..a21a5f5d7d3 100644 --- a/lisp/progmodes/modula2.el +++ b/lisp/progmodes/modula2.el @@ -544,4 +544,6 @@ FROM SysStreams IMPORT sysIn, sysOut, sysErr; (find-file-other-window (concat (substring (buffer-name) 0 -3) ".mi"))))) +(provide 'modula2) + ;;; modula2.el ends here diff --git a/lisp/progmodes/pascal.el b/lisp/progmodes/pascal.el index 25e9c2daa6b..8b004a223d1 100644 --- a/lisp/progmodes/pascal.el +++ b/lisp/progmodes/pascal.el @@ -1590,4 +1590,6 @@ Pascal Outline mode provides some additional commands. (pascal-goto-defun) (pascal-hide-other-defuns)) +(provide 'pascal) + ;;; pascal.el ends here diff --git a/lisp/progmodes/prolog.el b/lisp/progmodes/prolog.el index 934bc394d42..7817b2555be 100644 --- a/lisp/progmodes/prolog.el +++ b/lisp/progmodes/prolog.el @@ -286,4 +286,6 @@ If COMPILE (prefix arg) is not nil, use compile mode rather than consult mode." (prolog-consult-region compile beg end) (switch-to-buffer "*prolog*")) +(provide 'prolog) + ;;; prolog.el ends here |