diff options
| author | Philippe Vaucher | 2016-11-25 12:24:22 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2016-11-25 12:24:22 +0200 |
| commit | f70f9a58c438d8b0677b1649ea7084d688ed53c8 (patch) | |
| tree | dc4527df8da15d803a694e2cc548ca4bdd18e724 | |
| parent | b0e79741aa66bd76ee1d69d524d5a661bf7a9f9b (diff) | |
| download | emacs-f70f9a58c438d8b0677b1649ea7084d688ed53c8.tar.gz emacs-f70f9a58c438d8b0677b1649ea7084d688ed53c8.zip | |
Add missing 'provide's in preloaded packages
* lisp/composite.el:
* lisp/replace.el:
* lisp/textmodes/text-mode.el: Add provide statement. (Bug#24985)
| -rw-r--r-- | lisp/composite.el | 2 | ||||
| -rw-r--r-- | lisp/replace.el | 2 | ||||
| -rw-r--r-- | lisp/textmodes/text-mode.el | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/lisp/composite.el b/lisp/composite.el index 94b14dfc94a..53013c17c08 100644 --- a/lisp/composite.el +++ b/lisp/composite.el | |||
| @@ -843,6 +843,8 @@ For more information on Auto Composition mode, see | |||
| 843 | 843 | ||
| 844 | (defalias 'toggle-auto-composition 'auto-composition-mode) | 844 | (defalias 'toggle-auto-composition 'auto-composition-mode) |
| 845 | 845 | ||
| 846 | (provide 'composite) | ||
| 847 | |||
| 846 | 848 | ||
| 847 | 849 | ||
| 848 | ;;; composite.el ends here | 850 | ;;; composite.el ends here |
diff --git a/lisp/replace.el b/lisp/replace.el index 60948efeea6..a1721746330 100644 --- a/lisp/replace.el +++ b/lisp/replace.el | |||
| @@ -2644,4 +2644,6 @@ It must return a string." | |||
| 2644 | ""))) | 2644 | ""))) |
| 2645 | (or (and keep-going stack) multi-buffer))) | 2645 | (or (and keep-going stack) multi-buffer))) |
| 2646 | 2646 | ||
| 2647 | (provide 'replace) | ||
| 2648 | |||
| 2647 | ;;; replace.el ends here | 2649 | ;;; replace.el ends here |
diff --git a/lisp/textmodes/text-mode.el b/lisp/textmodes/text-mode.el index c42eec0c656..30873e1dfdb 100644 --- a/lisp/textmodes/text-mode.el +++ b/lisp/textmodes/text-mode.el | |||
| @@ -232,4 +232,6 @@ The argument NLINES says how many lines to center." | |||
| 232 | (setq nlines (1+ nlines)) | 232 | (setq nlines (1+ nlines)) |
| 233 | (forward-line -1))))) | 233 | (forward-line -1))))) |
| 234 | 234 | ||
| 235 | (provide 'text-mode) | ||
| 236 | |||
| 235 | ;;; text-mode.el ends here | 237 | ;;; text-mode.el ends here |