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/emacs-lisp | |
parent | 43c89a968ed6f1972a6ff075846622ade5bc7cf9 (diff) | |
download | emacs-896546cd9ba8e82956662329b77becb0366a1e73.tar.gz emacs-896546cd9ba8e82956662329b77becb0366a1e73.tar.bz2 emacs-896546cd9ba8e82956662329b77becb0366a1e73.zip |
Add provide call.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/copyright.el | 2 | ||||
-rw-r--r-- | lisp/emacs-lisp/debug.el | 2 | ||||
-rw-r--r-- | lisp/emacs-lisp/disass.el | 2 | ||||
-rw-r--r-- | lisp/emacs-lisp/levents.el | 2 | ||||
-rw-r--r-- | lisp/emacs-lisp/lselect.el | 2 | ||||
-rw-r--r-- | lisp/emacs-lisp/profile.el | 2 |
6 files changed, 12 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/copyright.el b/lisp/emacs-lisp/copyright.el index 079a11855d7..1f0f6e249eb 100644 --- a/lisp/emacs-lisp/copyright.el +++ b/lisp/emacs-lisp/copyright.el @@ -143,4 +143,6 @@ copyright, if any, are updated as well." (message "Copyright extends beyond `copyright-limit' and won't be updated automatically.")) comment-end) +(provide 'copyright) + ;; copyright.el ends here diff --git a/lisp/emacs-lisp/debug.el b/lisp/emacs-lisp/debug.el index d3383992f54..7a8980c0803 100644 --- a/lisp/emacs-lisp/debug.el +++ b/lisp/emacs-lisp/debug.el @@ -504,4 +504,6 @@ If argument is nil or an empty string, cancel for all functions." (set-buffer standard-output) (help-mode)))) +(provide 'debug) + ;;; debug.el ends here diff --git a/lisp/emacs-lisp/disass.el b/lisp/emacs-lisp/disass.el index 4199728888e..d07581e86d4 100644 --- a/lisp/emacs-lisp/disass.el +++ b/lisp/emacs-lisp/disass.el @@ -263,4 +263,6 @@ OBJ should be a call to BYTE-CODE generated by the byte compiler." (insert "\n"))))) nil) +(provide 'disass) + ;;; disass.el ends here diff --git a/lisp/emacs-lisp/levents.el b/lisp/emacs-lisp/levents.el index f62e37607dd..0cb860c6d44 100644 --- a/lisp/emacs-lisp/levents.el +++ b/lisp/emacs-lisp/levents.el @@ -285,4 +285,6 @@ an existing event object." GNU Emacs 19 does not currently generate process-output events." (eq (car-safe obj) 'process)) +(provide 'levents) + ;;; levents.el ends here diff --git a/lisp/emacs-lisp/lselect.el b/lisp/emacs-lisp/lselect.el index c6c64a909f8..9531ba18f51 100644 --- a/lisp/emacs-lisp/lselect.el +++ b/lisp/emacs-lisp/lselect.el @@ -227,4 +227,6 @@ the kill ring or the Clipboard." (push-mark) (insert clip))) +(provide 'lselect) + ;;; lselect.el ends here. diff --git a/lisp/emacs-lisp/profile.el b/lisp/emacs-lisp/profile.el index d8f8b5f86fa..a7e137332e7 100644 --- a/lisp/emacs-lisp/profile.el +++ b/lisp/emacs-lisp/profile.el @@ -322,4 +322,6 @@ DEF is (symbol-function FUN)." (interactive) (process-send-string profile-timer-process "q\n")) +(provide 'profile) + ;;; profile.el ends here |