aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Colascione2013-12-23 07:01:32 -0800
committerDaniel Colascione2013-12-23 07:01:32 -0800
commit0da548987578e256a9c38945298336965684fcbf (patch)
tree5f47477ca80d96d11a9826895924224c43b9bcdc
parentb7a017ad7d3f556e88ec4b21ec949e056b562066 (diff)
downloademacs-0da548987578e256a9c38945298336965684fcbf.tar.gz
emacs-0da548987578e256a9c38945298336965684fcbf.zip
Move provide to end of file for icomplete
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/icomplete.el7
2 files changed, 7 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 6422f4416c7..c3e1157a08a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12013-12-23 Daniel Colascione <dancol@dancol.org>
2
3 * icomplete.el: Move `provide' to end of file.
4
12013-12-23 Teodor Zlatanov <tzz@lifelogs.com> 52013-12-23 Teodor Zlatanov <tzz@lifelogs.com>
2 6
3 * net/gnutls.el (gnutls-verify-error): Add version tag. 7 * net/gnutls.el (gnutls-verify-error): Add version tag.
diff --git a/lisp/icomplete.el b/lisp/icomplete.el
index fccb2644ccb..73b58220122 100644
--- a/lisp/icomplete.el
+++ b/lisp/icomplete.el
@@ -58,10 +58,6 @@
58 58
59;;; Code: 59;;; Code:
60 60
61;;;_* Provide
62(provide 'icomplete)
63
64
65(defgroup icomplete nil 61(defgroup icomplete nil
66 "Show completions dynamically in minibuffer." 62 "Show completions dynamically in minibuffer."
67 :prefix "icomplete-" 63 :prefix "icomplete-"
@@ -484,6 +480,9 @@ are exhibited within the square braces.)"
484 "}") 480 "}")
485 (concat determ " [Matched]")))))) 481 (concat determ " [Matched]"))))))
486 482
483;;;_* Provide
484(provide 'icomplete)
485
487;;_* Local emacs vars. 486;;_* Local emacs vars.
488;;Local variables: 487;;Local variables:
489;;allout-layout: (-2 :) 488;;allout-layout: (-2 :)