aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/emulation
diff options
context:
space:
mode:
authorRichard M. Stallman1997-06-22 18:57:55 +0000
committerRichard M. Stallman1997-06-22 18:57:55 +0000
commit896546cd9ba8e82956662329b77becb0366a1e73 (patch)
treefb9f48d5363d164ad5c72a182dbe1e5a78322c6c /lisp/emulation
parent43c89a968ed6f1972a6ff075846622ade5bc7cf9 (diff)
downloademacs-896546cd9ba8e82956662329b77becb0366a1e73.tar.gz
emacs-896546cd9ba8e82956662329b77becb0366a1e73.zip
Add provide call.
Diffstat (limited to 'lisp/emulation')
-rw-r--r--lisp/emulation/pc-mode.el2
-rw-r--r--lisp/emulation/vi.el2
-rw-r--r--lisp/emulation/vip.el2
-rw-r--r--lisp/emulation/ws-mode.el2
4 files changed, 8 insertions, 0 deletions
diff --git a/lisp/emulation/pc-mode.el b/lisp/emulation/pc-mode.el
index c7db52ba567..e10d97be3d7 100644
--- a/lisp/emulation/pc-mode.el
+++ b/lisp/emulation/pc-mode.el
@@ -49,4 +49,6 @@ C-Escape does list-buffers."
49 (global-set-key [C-home] 'beginning-of-buffer) 49 (global-set-key [C-home] 'beginning-of-buffer)
50 (global-set-key [C-end] 'end-of-buffer)) 50 (global-set-key [C-end] 'end-of-buffer))
51 51
52(provide 'pc-mode)
53
52;; pc-mode.el ends here 54;; pc-mode.el ends here
diff --git a/lisp/emulation/vi.el b/lisp/emulation/vi.el
index 7c14ca9ce22..dbc4ade3ef0 100644
--- a/lisp/emulation/vi.el
+++ b/lisp/emulation/vi.el
@@ -1483,4 +1483,6 @@ With ARG, inserts that many newlines."
1483 (if flag (forward-char 1))))) arg) 1483 (if flag (forward-char 1))))) arg)
1484 t)) 1484 t))
1485 1485
1486(provide 'vi)
1487
1486;;; vi.el ends here 1488;;; vi.el ends here
diff --git a/lisp/emulation/vip.el b/lisp/emulation/vip.el
index a8739f2350b..d32cd95f753 100644
--- a/lisp/emulation/vip.el
+++ b/lisp/emulation/vip.el
@@ -3042,4 +3042,6 @@ vip-s-string"
3042 3042
3043(if (file-exists-p vip-startup-file) (load vip-startup-file)) 3043(if (file-exists-p vip-startup-file) (load vip-startup-file))
3044 3044
3045(provide 'vip)
3046
3045;;; vip.el ends here 3047;;; vip.el ends here
diff --git a/lisp/emulation/ws-mode.el b/lisp/emulation/ws-mode.el
index 93bb0a05a62..29158dbf174 100644
--- a/lisp/emulation/ws-mode.el
+++ b/lisp/emulation/ws-mode.el
@@ -752,4 +752,6 @@ sWith: " )
752 (ws-block-end-marker "Block begin marker not set") 752 (ws-block-end-marker "Block begin marker not set")
753 (t "Block markers not set"))))) 753 (t "Block markers not set")))))
754 754
755(provide 'ws-mode)
756
755;;; ws-mode.el ends here 757;;; ws-mode.el ends here