diff options
author | Glenn Morris <rgm@gnu.org> | 2013-05-11 16:41:52 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2013-05-11 16:41:52 -0700 |
commit | 36f84c3728a7c47e438eaf1e79ec1b780412631c (patch) | |
tree | 0cc50540919ef56a4970f2576b4450a3b272ab9b /lisp | |
parent | c8730c3abed1bbd336937575b91cb5fd1738abb3 (diff) | |
download | emacs-36f84c3728a7c47e438eaf1e79ec1b780412631c.tar.gz emacs-36f84c3728a7c47e438eaf1e79ec1b780412631c.tar.bz2 emacs-36f84c3728a7c47e438eaf1e79ec1b780412631c.zip |
Make some files provide features
* dos-vars.el, emacs-lisp/cl-indent.el, emulation/tpu-extras.el:
Provide features.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/dos-vars.el | 2 | ||||
-rw-r--r-- | lisp/emacs-lisp/cl-indent.el | 2 | ||||
-rw-r--r-- | lisp/emulation/tpu-extras.el | 2 |
4 files changed, 11 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 49183dd9be3..aa2e0f2a055 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2013-05-11 Glenn Morris <rgm@gnu.org> + + * dos-vars.el, emacs-lisp/cl-indent.el, emulation/tpu-extras.el: + Provide features. + 2013-05-11 Leo Liu <sdl.web@gmail.com> * progmodes/octave.el (octave-indent-comment): Improve. diff --git a/lisp/dos-vars.el b/lisp/dos-vars.el index e6ddd0b9b30..e335bf737c1 100644 --- a/lisp/dos-vars.el +++ b/lisp/dos-vars.el @@ -43,4 +43,6 @@ in `standard-display-table' as appropriate for your codepage, if :type '(hook) :version "20.3.3") +(provide 'dos-vars) + ;;; dos-vars.el ends here diff --git a/lisp/emacs-lisp/cl-indent.el b/lisp/emacs-lisp/cl-indent.el index 599cf3ac345..bbfe9ec6424 100644 --- a/lisp/emacs-lisp/cl-indent.el +++ b/lisp/emacs-lisp/cl-indent.el @@ -809,4 +809,6 @@ optional\\|rest\\|key\\|allow-other-keys\\|aux\\|whole\\|body\\|environment\ ;(put 'defclass 'common-lisp-indent-function '((&whole 2 &rest (&whole 2 &rest 1) &rest (&whole 2 &rest 1))) ;(put 'defgeneric 'common-lisp-indent-function 'defun) +(provide 'cl-indent) + ;;; cl-indent.el ends here diff --git a/lisp/emulation/tpu-extras.el b/lisp/emulation/tpu-extras.el index 30143a0fa96..7cdba4d6e6b 100644 --- a/lisp/emulation/tpu-extras.el +++ b/lisp/emulation/tpu-extras.el @@ -436,6 +436,8 @@ A repeat count means scroll that many sections." (interactive) (tpu-cursor-free-mode -1)) +(provide 'tpu-extras) + ;; Local Variables: ;; generated-autoload-file: "tpu-edt.el" ;; End: |