diff options
| author | Richard M. Stallman | 1997-06-22 18:57:55 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-06-22 18:57:55 +0000 |
| commit | 896546cd9ba8e82956662329b77becb0366a1e73 (patch) | |
| tree | fb9f48d5363d164ad5c72a182dbe1e5a78322c6c | |
| parent | 43c89a968ed6f1972a6ff075846622ade5bc7cf9 (diff) | |
| download | emacs-896546cd9ba8e82956662329b77becb0366a1e73.tar.gz emacs-896546cd9ba8e82956662329b77becb0366a1e73.zip | |
Add provide call.
53 files changed, 117 insertions, 6 deletions
diff --git a/lisp/apropos.el b/lisp/apropos.el index 6729e4a4c6a..e2faf2bd0e2 100644 --- a/lisp/apropos.el +++ b/lisp/apropos.el | |||
| @@ -625,4 +625,6 @@ found." | |||
| 625 | (princ ")") | 625 | (princ ")") |
| 626 | (print-help-return-message))) | 626 | (print-help-return-message))) |
| 627 | 627 | ||
| 628 | (provide 'apropos) | ||
| 629 | |||
| 628 | ;;; apropos.el ends here | 630 | ;;; apropos.el ends here |
diff --git a/lisp/autoinsert.el b/lisp/autoinsert.el index fecc2e008c6..9f4803a1a2a 100644 --- a/lisp/autoinsert.el +++ b/lisp/autoinsert.el | |||
| @@ -253,4 +253,6 @@ or if CONDITION had no actions, after all other CONDITIONs." | |||
| 253 | (setq auto-insert-alist (cons (cons key action) | 253 | (setq auto-insert-alist (cons (cons key action) |
| 254 | auto-insert-alist)))))) | 254 | auto-insert-alist)))))) |
| 255 | 255 | ||
| 256 | (provide 'autoinsert) | ||
| 257 | |||
| 256 | ;;; autoinsert.el ends here | 258 | ;;; autoinsert.el ends here |
diff --git a/lisp/cdl.el b/lisp/cdl.el index 2c88ec2d09e..71b8ef395f6 100644 --- a/lisp/cdl.el +++ b/lisp/cdl.el | |||
| @@ -41,4 +41,6 @@ | |||
| 41 | nil nil nil "-o" (expand-file-name filename)) | 41 | nil nil nil "-o" (expand-file-name filename)) |
| 42 | (message "ncgen in progress...done")) | 42 | (message "ncgen in progress...done")) |
| 43 | 43 | ||
| 44 | (provide 'cdl) | ||
| 45 | |||
| 44 | ;;; cdl.el ends here. | 46 | ;;; cdl.el ends here. |
diff --git a/lisp/ebuff-menu.el b/lisp/ebuff-menu.el index 907cc2d92e0..730f7f4fc40 100644 --- a/lisp/ebuff-menu.el +++ b/lisp/ebuff-menu.el | |||
| @@ -262,4 +262,6 @@ Returns to Electric Buffer Menu when done." | |||
| 262 | (message "Buffer %s does not exist!" bufnam) | 262 | (message "Buffer %s does not exist!" bufnam) |
| 263 | (sit-for 4)))) | 263 | (sit-for 4)))) |
| 264 | 264 | ||
| 265 | (provide 'ebuff-menu) | ||
| 266 | |||
| 265 | ;;; ebuff-menu.el ends here | 267 | ;;; ebuff-menu.el ends here |
diff --git a/lisp/echistory.el b/lisp/echistory.el index 66e0b08c52b..f74a002b5e5 100644 --- a/lisp/echistory.el +++ b/lisp/echistory.el | |||
| @@ -147,4 +147,6 @@ The Command History listing is recomputed each time this mode is invoked." | |||
| 147 | (progn (message "") | 147 | (progn (message "") |
| 148 | (throw 'electric-history-quit nil)))) | 148 | (throw 'electric-history-quit nil)))) |
| 149 | 149 | ||
| 150 | (provide 'echistory) | ||
| 151 | |||
| 150 | ;;; echistory.el ends here | 152 | ;;; echistory.el ends here |
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." | |||
| 143 | (message "Copyright extends beyond `copyright-limit' and won't be updated automatically.")) | 143 | (message "Copyright extends beyond `copyright-limit' and won't be updated automatically.")) |
| 144 | comment-end) | 144 | comment-end) |
| 145 | 145 | ||
| 146 | (provide 'copyright) | ||
| 147 | |||
| 146 | ;; copyright.el ends here | 148 | ;; 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." | |||
| 504 | (set-buffer standard-output) | 504 | (set-buffer standard-output) |
| 505 | (help-mode)))) | 505 | (help-mode)))) |
| 506 | 506 | ||
| 507 | (provide 'debug) | ||
| 508 | |||
| 507 | ;;; debug.el ends here | 509 | ;;; 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." | |||
| 263 | (insert "\n"))))) | 263 | (insert "\n"))))) |
| 264 | nil) | 264 | nil) |
| 265 | 265 | ||
| 266 | (provide 'disass) | ||
| 267 | |||
| 266 | ;;; disass.el ends here | 268 | ;;; 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." | |||
| 285 | GNU Emacs 19 does not currently generate process-output events." | 285 | GNU Emacs 19 does not currently generate process-output events." |
| 286 | (eq (car-safe obj) 'process)) | 286 | (eq (car-safe obj) 'process)) |
| 287 | 287 | ||
| 288 | (provide 'levents) | ||
| 289 | |||
| 288 | ;;; levents.el ends here | 290 | ;;; 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." | |||
| 227 | (push-mark) | 227 | (push-mark) |
| 228 | (insert clip))) | 228 | (insert clip))) |
| 229 | 229 | ||
| 230 | (provide 'lselect) | ||
| 231 | |||
| 230 | ;;; lselect.el ends here. | 232 | ;;; 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)." | |||
| 322 | (interactive) | 322 | (interactive) |
| 323 | (process-send-string profile-timer-process "q\n")) | 323 | (process-send-string profile-timer-process "q\n")) |
| 324 | 324 | ||
| 325 | (provide 'profile) | ||
| 326 | |||
| 325 | ;;; profile.el ends here | 327 | ;;; profile.el ends here |
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 |
diff --git a/lisp/find-gc.el b/lisp/find-gc.el index 4bce53c9184..aab101f0636 100644 --- a/lisp/find-gc.el +++ b/lisp/find-gc.el | |||
| @@ -149,4 +149,6 @@ | |||
| 149 | (setq ptr (cdr ptr)))) | 149 | (setq ptr (cdr ptr)))) |
| 150 | ) | 150 | ) |
| 151 | 151 | ||
| 152 | (provide 'find-gc) | ||
| 153 | |||
| 152 | ;;; find-gc.el ends here | 154 | ;;; find-gc.el ends here |
diff --git a/lisp/ielm.el b/lisp/ielm.el index 3af4d9df3a3..1488f2925f6 100644 --- a/lisp/ielm.el +++ b/lisp/ielm.el | |||
| @@ -103,7 +103,7 @@ This variable is buffer-local.") | |||
| 103 | (defvar ielm-header | 103 | (defvar ielm-header |
| 104 | (concat | 104 | (concat |
| 105 | "*** Welcome to IELM version " | 105 | "*** Welcome to IELM version " |
| 106 | (substring "$Revision: 1.12 $" 11 -2) | 106 | (substring "$Revision: 1.13 $" 11 -2) |
| 107 | " *** Type (describe-mode) for help.\n" | 107 | " *** Type (describe-mode) for help.\n" |
| 108 | "IELM has ABSOLUTELY NO WARRANTY; type (describe-no-warranty) for details.\n") | 108 | "IELM has ABSOLUTELY NO WARRANTY; type (describe-no-warranty) for details.\n") |
| 109 | "Message to display when IELM is started.") | 109 | "Message to display when IELM is started.") |
| @@ -490,4 +490,6 @@ Switches to the buffer `*ielm*', or creates it if it does not exist." | |||
| 490 | (inferior-emacs-lisp-mode))) | 490 | (inferior-emacs-lisp-mode))) |
| 491 | (pop-to-buffer "*ielm*")) | 491 | (pop-to-buffer "*ielm*")) |
| 492 | 492 | ||
| 493 | (provide 'ielm) | ||
| 494 | |||
| 493 | ;;; ielm.el ends here | 495 | ;;; ielm.el ends here |
diff --git a/lisp/informat.el b/lisp/informat.el index 67c915f9be1..ead8bb5d37c 100644 --- a/lisp/informat.el +++ b/lisp/informat.el | |||
| @@ -427,4 +427,6 @@ For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\"" | |||
| 427 | (error (message ">> Error: %s" (prin1-to-string err)))))) | 427 | (error (message ">> Error: %s" (prin1-to-string err)))))) |
| 428 | (kill-emacs error)))) | 428 | (kill-emacs error)))) |
| 429 | 429 | ||
| 430 | (provide 'informat) | ||
| 431 | |||
| 430 | ;;; informat.el ends here | 432 | ;;; informat.el ends here |
diff --git a/lisp/kermit.el b/lisp/kermit.el index 6ca7b7a0c8c..cd7ddebd779 100644 --- a/lisp/kermit.el +++ b/lisp/kermit.el | |||
| @@ -147,4 +147,6 @@ command `kermit | tr -d '\\015''." | |||
| 147 | (interactive) | 147 | (interactive) |
| 148 | (set-process-filter (get-buffer-process (current-buffer)) nil)) | 148 | (set-process-filter (get-buffer-process (current-buffer)) nil)) |
| 149 | 149 | ||
| 150 | (provide 'kermit) | ||
| 151 | |||
| 150 | ;;; kermit.el ends here | 152 | ;;; kermit.el ends here |
diff --git a/lisp/ledit.el b/lisp/ledit.el index f106abfe08b..230dd9444ee 100644 --- a/lisp/ledit.el +++ b/lisp/ledit.el | |||
| @@ -152,4 +152,6 @@ do (setq lisp-mode-hook 'ledit-from-lisp-mode)" | |||
| 152 | (setq major-mode 'ledit-mode) | 152 | (setq major-mode 'ledit-mode) |
| 153 | (run-hooks 'ledit-mode-hook)) | 153 | (run-hooks 'ledit-mode-hook)) |
| 154 | 154 | ||
| 155 | (provide 'ledit) | ||
| 156 | |||
| 155 | ;;; ledit.el ends here | 157 | ;;; ledit.el ends here |
diff --git a/lisp/macros.el b/lisp/macros.el index 6263a6957c2..e333bc106be 100644 --- a/lisp/macros.el +++ b/lisp/macros.el | |||
| @@ -303,4 +303,6 @@ and then select the region of un-tablified names and use | |||
| 303 | 303 | ||
| 304 | ;;;###autoload (define-key ctl-x-map "q" 'kbd-macro-query) | 304 | ;;;###autoload (define-key ctl-x-map "q" 'kbd-macro-query) |
| 305 | 305 | ||
| 306 | (provide 'macros) | ||
| 307 | |||
| 306 | ;;; macros.el ends here | 308 | ;;; macros.el ends here |
diff --git a/lisp/mail/mailpost.el b/lisp/mail/mailpost.el index 5ff33478698..e6c70cb13a3 100644 --- a/lisp/mail/mailpost.el +++ b/lisp/mail/mailpost.el | |||
| @@ -100,4 +100,6 @@ site-init." | |||
| 100 | (if (bufferp errbuf) | 100 | (if (bufferp errbuf) |
| 101 | (switch-to-buffer errbuf))))) | 101 | (switch-to-buffer errbuf))))) |
| 102 | 102 | ||
| 103 | (provide 'mailpost) | ||
| 104 | |||
| 103 | ;;; mailpost.el ends here | 105 | ;;; mailpost.el ends here |
diff --git a/lisp/mail/rnewspost.el b/lisp/mail/rnewspost.el index 3a261b34ece..2c8da70dbcb 100644 --- a/lisp/mail/rnewspost.el +++ b/lisp/mail/rnewspost.el | |||
| @@ -438,4 +438,6 @@ original message into it." | |||
| 438 | (interactive) | 438 | (interactive) |
| 439 | (mail-other-window nil nil nil nil nil (current-buffer))) | 439 | (mail-other-window nil nil nil nil nil (current-buffer))) |
| 440 | 440 | ||
| 441 | (provide 'rnewspost) | ||
| 442 | |||
| 441 | ;;; rnewspost.el ends here | 443 | ;;; rnewspost.el ends here |
diff --git a/lisp/mail/undigest.el b/lisp/mail/undigest.el index 3a3319ec1b5..87aa6f0d8d1 100644 --- a/lisp/mail/undigest.el +++ b/lisp/mail/undigest.el | |||
| @@ -181,4 +181,6 @@ following the containing message." | |||
| 181 | (rmail-update-summary)))))) | 181 | (rmail-update-summary)))))) |
| 182 | (set-buffer obuf)))) | 182 | (set-buffer obuf)))) |
| 183 | 183 | ||
| 184 | (provide 'undigest) | ||
| 185 | |||
| 184 | ;;; undigest.el ends here | 186 | ;;; undigest.el ends here |
diff --git a/lisp/mail/unrmail.el b/lisp/mail/unrmail.el index 05fe04899af..390335d1e34 100644 --- a/lisp/mail/unrmail.el +++ b/lisp/mail/unrmail.el | |||
| @@ -63,4 +63,6 @@ For example, invoke `emacs -batch -f batch-unrmail RMAIL'." | |||
| 63 | (rmail-output to-file 1 t)) | 63 | (rmail-output to-file 1 t)) |
| 64 | (message "Writing messages to %s...done" to-file))) | 64 | (message "Writing messages to %s...done" to-file))) |
| 65 | 65 | ||
| 66 | (provide 'unrmail) | ||
| 67 | |||
| 66 | ;;; unrmail.el ends here | 68 | ;;; unrmail.el ends here |
diff --git a/lisp/mail/vms-pmail.el b/lisp/mail/vms-pmail.el index fb3dbf670f2..a183b4e7648 100644 --- a/lisp/mail/vms-pmail.el +++ b/lisp/mail/vms-pmail.el | |||
| @@ -114,4 +114,6 @@ If neither file exists, fails quietly." | |||
| 114 | (if (file-attributes "~/.signature") | 114 | (if (file-attributes "~/.signature") |
| 115 | (insert-file-contents "~/.signature"))))) | 115 | (insert-file-contents "~/.signature"))))) |
| 116 | 116 | ||
| 117 | (provide 'vms-pmail) | ||
| 118 | |||
| 117 | ;;; vms-pmail.el ends here | 119 | ;;; vms-pmail.el ends here |
diff --git a/lisp/makesum.el b/lisp/makesum.el index 9664513e004..262f14e63b4 100644 --- a/lisp/makesum.el +++ b/lisp/makesum.el | |||
| @@ -111,4 +111,6 @@ Previous contents of that buffer are killed first." | |||
| 111 | (setq lines (cdr lines)))) | 111 | (setq lines (cdr lines)))) |
| 112 | (goto-char (- (point-max) from-end)))) | 112 | (goto-char (- (point-max) from-end)))) |
| 113 | 113 | ||
| 114 | (provide 'makesum) | ||
| 115 | |||
| 114 | ;;; makesum.el ends here | 116 | ;;; makesum.el ends here |
diff --git a/lisp/misc.el b/lisp/misc.el index fa480144074..9590d490ec9 100644 --- a/lisp/misc.el +++ b/lisp/misc.el | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | ;;; misc.el --- basic editing commands for Emacs | 1 | ;;; misc.el --- some nonstandard basic editing commands for Emacs |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1989 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1989 Free Software Foundation, Inc. |
| 4 | 4 | ||
| @@ -55,4 +55,6 @@ The characters copied are inserted in the buffer before point." | |||
| 55 | (+ n (point))))))) | 55 | (+ n (point))))))) |
| 56 | (insert string))) | 56 | (insert string))) |
| 57 | 57 | ||
| 58 | (provide 'misc) | ||
| 59 | |||
| 58 | ;;; misc.el ends here | 60 | ;;; misc.el ends here |
diff --git a/lisp/novice.el b/lisp/novice.el index 424ef693fd1..d57aa224a8d 100644 --- a/lisp/novice.el +++ b/lisp/novice.el | |||
| @@ -142,4 +142,6 @@ to future sessions." | |||
| 142 | (insert "\n(put '" (symbol-name command) " 'disabled t)\n") | 142 | (insert "\n(put '" (symbol-name command) " 'disabled t)\n") |
| 143 | (save-buffer))) | 143 | (save-buffer))) |
| 144 | 144 | ||
| 145 | (provide 'novice) | ||
| 146 | |||
| 145 | ;;; novice.el ends here | 147 | ;;; novice.el ends here |
diff --git a/lisp/options.el b/lisp/options.el index 614292ce6e0..413e4105171 100644 --- a/lisp/options.el +++ b/lisp/options.el | |||
| @@ -29,6 +29,8 @@ | |||
| 29 | ;; mode specifically for editing option values. Do `M-x describe-mode' in | 29 | ;; mode specifically for editing option values. Do `M-x describe-mode' in |
| 30 | ;; that context for more details. | 30 | ;; that context for more details. |
| 31 | 31 | ||
| 32 | ;; The customization buffer feature is intended to make this obsolete. | ||
| 33 | |||
| 32 | ;;; Code: | 34 | ;;; Code: |
| 33 | 35 | ||
| 34 | ;;;###autoload | 36 | ;;;###autoload |
| @@ -139,4 +141,6 @@ For convenience, the characters \\[backward-paragraph] and \\[forward-paragraph] | |||
| 139 | (kill-sexp 1) | 141 | (kill-sexp 1) |
| 140 | (prin1 (symbol-value var) (current-buffer))))) | 142 | (prin1 (symbol-value var) (current-buffer))))) |
| 141 | 143 | ||
| 144 | (provide 'options) | ||
| 145 | |||
| 142 | ;;; options.el ends here | 146 | ;;; options.el ends here |
diff --git a/lisp/play/blackbox.el b/lisp/play/blackbox.el index 8de46c2f025..0786c90d6b6 100644 --- a/lisp/play/blackbox.el +++ b/lisp/play/blackbox.el | |||
| @@ -418,4 +418,6 @@ a reflection." | |||
| 418 | ((equal item (car list)) (cdr list)) | 418 | ((equal item (car list)) (cdr list)) |
| 419 | (t (cons (car list) (bb-delete item (cdr list)))))) | 419 | (t (cons (car list) (bb-delete item (cdr list)))))) |
| 420 | 420 | ||
| 421 | (provide 'blackbox) | ||
| 422 | |||
| 421 | ;;; blackbox.el ends here | 423 | ;;; blackbox.el ends here |
diff --git a/lisp/play/dissociate.el b/lisp/play/dissociate.el index 93a9f9e79ab..fab3ed92559 100644 --- a/lisp/play/dissociate.el +++ b/lisp/play/dissociate.el | |||
| @@ -98,4 +98,6 @@ Default is 2." | |||
| 98 | (funcall search-function overlap opoint t)))))) | 98 | (funcall search-function overlap opoint t)))))) |
| 99 | (sit-for 0)))) | 99 | (sit-for 0)))) |
| 100 | 100 | ||
| 101 | (provide 'dissociate) | ||
| 102 | |||
| 101 | ;;; dissociate.el ends here | 103 | ;;; dissociate.el ends here |
diff --git a/lisp/play/doctor.el b/lisp/play/doctor.el index 98a12bf451a..2c65fb8caa9 100644 --- a/lisp/play/doctor.el +++ b/lisp/play/doctor.el | |||
| @@ -1614,4 +1614,6 @@ Hack on previous word, setting global variable OWNER to correct result." | |||
| 1614 | (insert "Mein fuehrer!!\n") | 1614 | (insert "Mein fuehrer!!\n") |
| 1615 | (doctor-read-print)) | 1615 | (doctor-read-print)) |
| 1616 | 1616 | ||
| 1617 | (provide 'doctor) | ||
| 1618 | |||
| 1617 | ;;; doctor.el ends here | 1619 | ;;; doctor.el ends here |
diff --git a/lisp/play/dunnet.el b/lisp/play/dunnet.el index 26a57133f26..283c884780a 100644 --- a/lisp/play/dunnet.el +++ b/lisp/play/dunnet.el | |||
| @@ -3361,4 +3361,7 @@ File not found"))) | |||
| 3361 | (setq dun-batch-mode t) | 3361 | (setq dun-batch-mode t) |
| 3362 | (dun-batch-loop)) | 3362 | (dun-batch-loop)) |
| 3363 | 3363 | ||
| 3364 | (provide 'dunnet) | ||
| 3365 | |||
| 3366 | ;; dunnet.el ends here | ||
| 3364 | 3367 | ||
diff --git a/lisp/play/mpuz.el b/lisp/play/mpuz.el index a0356722124..476f0592630 100644 --- a/lisp/play/mpuz.el +++ b/lisp/play/mpuz.el | |||
| @@ -441,4 +441,6 @@ You may abort a game by typing \\<mpuz-mode-map>\\[mpuz-offer-abort]." | |||
| 441 | (setq list (cons digit list)))) | 441 | (setq list (cons digit list)))) |
| 442 | (mapcar 'mpuz-correct-guess list))) | 442 | (mapcar 'mpuz-correct-guess list))) |
| 443 | 443 | ||
| 444 | (provide 'mpuz) | ||
| 445 | |||
| 444 | ;;; mpuz.el ends here | 446 | ;;; mpuz.el ends here |
diff --git a/lisp/play/spook.el b/lisp/play/spook.el index cf6685af51b..8d8f8229d5b 100644 --- a/lisp/play/spook.el +++ b/lisp/play/spook.el | |||
| @@ -66,4 +66,6 @@ | |||
| 66 | ;; cleaned up, generalized, gratuitously broken by esr, and now resides in | 66 | ;; cleaned up, generalized, gratuitously broken by esr, and now resides in |
| 67 | ;; cookie1.el. | 67 | ;; cookie1.el. |
| 68 | 68 | ||
| 69 | (provide 'spook) | ||
| 70 | |||
| 69 | ;;; spook.el ends here | 71 | ;;; spook.el ends here |
diff --git a/lisp/play/studly.el b/lisp/play/studly.el index b5aafcab09a..a94eee5ecd3 100644 --- a/lisp/play/studly.el +++ b/lisp/play/studly.el | |||
| @@ -60,4 +60,6 @@ | |||
| 60 | (interactive "*") | 60 | (interactive "*") |
| 61 | (studlify-region (point-min) (point-max))) | 61 | (studlify-region (point-min) (point-max))) |
| 62 | 62 | ||
| 63 | (provide 'studly) | ||
| 64 | |||
| 63 | ;;; studly.el ends here | 65 | ;;; studly.el ends here |
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." | |||
| 228 | ) | 228 | ) |
| 229 | (end-of-line)) | 229 | (end-of-line)) |
| 230 | 230 | ||
| 231 | (provide 'asm-mode) | ||
| 232 | |||
| 231 | ;;; asm-mode.el ends here | 233 | ;;; 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." | |||
| 1058 | ;; (beginning-of-line 1))) | 1058 | ;; (beginning-of-line 1))) |
| 1059 | ;; (goto-char restore))) | 1059 | ;; (goto-char restore))) |
| 1060 | 1060 | ||
| 1061 | (provide 'cplus-md) | ||
| 1062 | |||
| 1061 | ;;; cplus-md.el ends here | 1063 | ;;; 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; | |||
| 544 | (find-file-other-window | 544 | (find-file-other-window |
| 545 | (concat (substring (buffer-name) 0 -3) ".mi"))))) | 545 | (concat (substring (buffer-name) 0 -3) ".mi"))))) |
| 546 | 546 | ||
| 547 | (provide 'modula2) | ||
| 548 | |||
| 547 | ;;; modula2.el ends here | 549 | ;;; 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. | |||
| 1590 | (pascal-goto-defun) | 1590 | (pascal-goto-defun) |
| 1591 | (pascal-hide-other-defuns)) | 1591 | (pascal-hide-other-defuns)) |
| 1592 | 1592 | ||
| 1593 | (provide 'pascal) | ||
| 1594 | |||
| 1593 | ;;; pascal.el ends here | 1595 | ;;; 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." | |||
| 286 | (prolog-consult-region compile beg end) | 286 | (prolog-consult-region compile beg end) |
| 287 | (switch-to-buffer "*prolog*")) | 287 | (switch-to-buffer "*prolog*")) |
| 288 | 288 | ||
| 289 | (provide 'prolog) | ||
| 290 | |||
| 289 | ;;; prolog.el ends here | 291 | ;;; prolog.el ends here |
diff --git a/lisp/reposition.el b/lisp/reposition.el index cfb6079b93e..fa3f8b782f4 100644 --- a/lisp/reposition.el +++ b/lisp/reposition.el | |||
| @@ -190,9 +190,11 @@ first comment line visible (if point is in a comment)." | |||
| 190 | lines | 190 | lines |
| 191 | (- lines)))) | 191 | (- lines)))) |
| 192 | 192 | ||
| 193 | ; (defmacro repos-debug-macro (case-no) | 193 | ;; (defmacro repos-debug-macro (case-no) |
| 194 | ; (` (message | 194 | ;; (` (message |
| 195 | ; (concat "Case " (, case-no) ": %s %s %s %s %s") | 195 | ;; (concat "Case " (, case-no) ": %s %s %s %s %s") |
| 196 | ; ht line comment-height defun-height defun-depth))) | 196 | ;; ht line comment-height defun-height defun-depth))) |
| 197 | |||
| 198 | (provide 'reposition) | ||
| 197 | 199 | ||
| 198 | ;;; reposition.el ends here | 200 | ;;; reposition.el ends here |
diff --git a/lisp/soundex.el b/lisp/soundex.el index 5f703228df2..2a33d538695 100644 --- a/lisp/soundex.el +++ b/lisp/soundex.el | |||
| @@ -71,4 +71,6 @@ and Searching\", Addison-Wesley (1973), pp. 391-392." | |||
| 71 | ;("E460" "G200" "H416" "K530" "L300" "L222" | 71 | ;("E460" "G200" "H416" "K530" "L300" "L222" |
| 72 | ; "E460" "G200" "H416" "K530" "L300" "L222") | 72 | ; "E460" "G200" "H416" "K530" "L300" "L222") |
| 73 | 73 | ||
| 74 | (provide 'soundex) | ||
| 75 | |||
| 74 | ;; soundex.el ends here | 76 | ;; soundex.el ends here |
diff --git a/lisp/talk.el b/lisp/talk.el index 0baedeb301e..a159b93311e 100644 --- a/lisp/talk.el +++ b/lisp/talk.el | |||
| @@ -98,4 +98,6 @@ Select the first of these windows, displaying the first of the buffers." | |||
| 98 | (select-window (frame-first-window frame))) | 98 | (select-window (frame-first-window frame))) |
| 99 | (select-frame old-frame)))) | 99 | (select-frame old-frame)))) |
| 100 | 100 | ||
| 101 | (provide 'talk) | ||
| 102 | |||
| 101 | ;;; talk.el ends here | 103 | ;;; talk.el ends here |
diff --git a/lisp/textmodes/nroff-mode.el b/lisp/textmodes/nroff-mode.el index 71ef6c2643e..355147a45b6 100644 --- a/lisp/textmodes/nroff-mode.el +++ b/lisp/textmodes/nroff-mode.el | |||
| @@ -267,4 +267,6 @@ turns it on iff arg is positive, otherwise off." | |||
| 267 | (cond ((null arg) (null nroff-electric-mode)) | 267 | (cond ((null arg) (null nroff-electric-mode)) |
| 268 | (t (> (prefix-numeric-value arg) 0))))) | 268 | (t (> (prefix-numeric-value arg) 0))))) |
| 269 | 269 | ||
| 270 | (provide 'nroff-mode) | ||
| 271 | |||
| 270 | ;;; nroff-mode.el ends here | 272 | ;;; nroff-mode.el ends here |
diff --git a/lisp/textmodes/scribe.el b/lisp/textmodes/scribe.el index 2ec4899585a..b210e13229d 100644 --- a/lisp/textmodes/scribe.el +++ b/lisp/textmodes/scribe.el | |||
| @@ -322,4 +322,6 @@ preceding text is of the form @Command." | |||
| 322 | (save-excursion | 322 | (save-excursion |
| 323 | (insert (aref scribe-close-parentheses paren-char))))))) | 323 | (insert (aref scribe-close-parentheses paren-char))))))) |
| 324 | 324 | ||
| 325 | (provide 'scribe) | ||
| 326 | |||
| 325 | ;;; scribe.el ends here | 327 | ;;; scribe.el ends here |
diff --git a/lisp/textmodes/spell.el b/lisp/textmodes/spell.el index 65dde5383c7..c413459a3d7 100644 --- a/lisp/textmodes/spell.el +++ b/lisp/textmodes/spell.el | |||
| @@ -151,4 +151,6 @@ for example, \"word\"." | |||
| 151 | (replace-match " ")) | 151 | (replace-match " ")) |
| 152 | (message "%sincorrect" (buffer-substring 1 (point-max))))))) | 152 | (message "%sincorrect" (buffer-substring 1 (point-max))))))) |
| 153 | 153 | ||
| 154 | (provide 'spell) | ||
| 155 | |||
| 154 | ;;; spell.el ends here | 156 | ;;; spell.el ends here |
diff --git a/lisp/textmodes/underline.el b/lisp/textmodes/underline.el index 91dc0b2c2f8..20ffa315001 100644 --- a/lisp/textmodes/underline.el +++ b/lisp/textmodes/underline.el | |||
| @@ -60,4 +60,6 @@ which specify the range to operate on." | |||
| 60 | (while (re-search-forward "_\b\\|\b_" end1 t) | 60 | (while (re-search-forward "_\b\\|\b_" end1 t) |
| 61 | (delete-char -2))))) | 61 | (delete-char -2))))) |
| 62 | 62 | ||
| 63 | (provide 'underline) | ||
| 64 | |||
| 63 | ;;; underline.el ends here | 65 | ;;; underline.el ends here |
diff --git a/lisp/time.el b/lisp/time.el index 2d52ffb33c5..f66160b4718 100644 --- a/lisp/time.el +++ b/lisp/time.el | |||
| @@ -241,4 +241,6 @@ would give mode line times like `94/12/30 21:07:48 (UTC)'." | |||
| 241 | (and (file-exists-p file) | 241 | (and (file-exists-p file) |
| 242 | (< 0 (nth 7 (file-attributes (file-chase-links file)))))) | 242 | (< 0 (nth 7 (file-attributes (file-chase-links file)))))) |
| 243 | 243 | ||
| 244 | (provide 'time) | ||
| 245 | |||
| 244 | ;;; time.el ends here | 246 | ;;; time.el ends here |
diff --git a/lisp/vt-control.el b/lisp/vt-control.el index 23ccb957988..24028528811 100644 --- a/lisp/vt-control.el +++ b/lisp/vt-control.el | |||
| @@ -104,4 +104,6 @@ | |||
| 104 | (if vt-applications-keypad-p (vt-keypad-off (interactive-p)) | 104 | (if vt-applications-keypad-p (vt-keypad-off (interactive-p)) |
| 105 | (vt-keypad-on (interactive-p)))) | 105 | (vt-keypad-on (interactive-p)))) |
| 106 | 106 | ||
| 107 | (provide 'vt-control) | ||
| 108 | |||
| 107 | ;;; vt-control.el ends here | 109 | ;;; vt-control.el ends here |
diff --git a/lisp/x-apollo.el b/lisp/x-apollo.el index e86b7f2eee0..c2cb69d46dd 100644 --- a/lisp/x-apollo.el +++ b/lisp/x-apollo.el | |||
| @@ -88,3 +88,7 @@ | |||
| 88 | (global-set-key [edit] 'find-file) ;EDIT | 88 | (global-set-key [edit] 'find-file) ;EDIT |
| 89 | (global-set-key [S-shell] 'shell) ;SHELL | 89 | (global-set-key [S-shell] 'shell) ;SHELL |
| 90 | (global-set-key [S-help] 'manual-entry) ;HELP | 90 | (global-set-key [S-help] 'manual-entry) ;HELP |
| 91 | |||
| 92 | (provide 'x-apollo) | ||
| 93 | |||
| 94 | ;;; x-apollo.el ends here | ||
diff --git a/lisp/x-menu.el b/lisp/x-menu.el index 4863ceec9ac..cad653f0303 100644 --- a/lisp/x-menu.el +++ b/lisp/x-menu.el | |||
| @@ -142,4 +142,6 @@ available to the user. This also creates the menu itself." | |||
| 142 | (and litem (funcall litem event))) | 142 | (and litem (funcall litem event))) |
| 143 | (pop-to-buffer x-menu-assoc-buffer)) | 143 | (pop-to-buffer x-menu-assoc-buffer)) |
| 144 | 144 | ||
| 145 | (provide 'x-menu) | ||
| 146 | |||
| 145 | ;;; x-menu.el ends here | 147 | ;;; x-menu.el ends here |