]> git.eshelyaron.com Git - emacs.git/commitdiff
Add missing 'provide's in preloaded packages
authorPhilippe Vaucher <philippe.vaucher@gmail.com>
Fri, 25 Nov 2016 10:24:22 +0000 (12:24 +0200)
committerEli Zaretskii <eliz@gnu.org>
Fri, 25 Nov 2016 10:24:22 +0000 (12:24 +0200)
* lisp/composite.el:
* lisp/replace.el:
* lisp/textmodes/text-mode.el: Add provide statement.  (Bug#24985)

lisp/composite.el
lisp/replace.el
lisp/textmodes/text-mode.el

index 94b14dfc94ae96c6a76e8836e964e1eb2975a9e6..53013c17c08e3ecdd358d34d374ceb1c602b906a 100644 (file)
@@ -843,6 +843,8 @@ For more information on Auto Composition mode, see
 
 (defalias 'toggle-auto-composition 'auto-composition-mode)
 
+(provide 'composite)
+
 \f
 
 ;;; composite.el ends here
index 60948efeea623b21cb6b204cf50a43a7ddeb5f29..a1721746330bec3de0165b8e1bd2764c5895ce68 100644 (file)
@@ -2644,4 +2644,6 @@ It must return a string."
                   "")))
     (or (and keep-going stack) multi-buffer)))
 
+(provide 'replace)
+
 ;;; replace.el ends here
index c42eec0c6560b165666804770130530e378b3d46..30873e1dfdbfed3400942acc3bf97b77276af234 100644 (file)
@@ -232,4 +232,6 @@ The argument NLINES says how many lines to center."
           (setq nlines (1+ nlines))
           (forward-line -1)))))
 
+(provide 'text-mode)
+
 ;;; text-mode.el ends here