Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add missing 'provide's in preloaded packages
* lisp/composite.el:
* lisp/replace.el:
* lisp/textmodes/text-mode.el: Add provide statement.  (Bug#24985)
  • Loading branch information
Silex authored and Eli-Zaretskii committed Nov 25, 2016
1 parent b0e7974 commit f70f9a5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lisp/composite.el
Expand Up @@ -843,6 +843,8 @@ For more information on Auto Composition mode, see

(defalias 'toggle-auto-composition 'auto-composition-mode)

(provide 'composite)



;;; composite.el ends here
2 changes: 2 additions & 0 deletions lisp/replace.el
Expand Up @@ -2644,4 +2644,6 @@ It must return a string."
"")))
(or (and keep-going stack) multi-buffer)))

(provide 'replace)

;;; replace.el ends here
2 changes: 2 additions & 0 deletions lisp/textmodes/text-mode.el
Expand Up @@ -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

0 comments on commit f70f9a5

Please sign in to comment.