forked from flyingmachine/emacs-for-clojure
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
305 changed files
with
80,585 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
66 changes: 66 additions & 0 deletions
66
elpa/auto-complete-20140803.2118/auto-complete-autoloads.el
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
;;; auto-complete-autoloads.el --- automatically extracted autoloads | ||
;; | ||
;;; Code: | ||
|
||
|
||
;;;### (autoloads (global-auto-complete-mode auto-complete-mode auto-complete) | ||
;;;;;; "auto-complete" "auto-complete.el" (21478 16695 0 0)) | ||
;;; Generated autoloads from auto-complete.el | ||
|
||
(autoload 'auto-complete "auto-complete" "\ | ||
Start auto-completion at current point. | ||
\(fn &optional SOURCES)" t nil) | ||
|
||
(autoload 'auto-complete-mode "auto-complete" "\ | ||
AutoComplete mode | ||
\(fn &optional ARG)" t nil) | ||
|
||
(defvar global-auto-complete-mode nil "\ | ||
Non-nil if Global-Auto-Complete mode is enabled. | ||
See the command `global-auto-complete-mode' for a description of this minor mode. | ||
Setting this variable directly does not take effect; | ||
either customize it (see the info node `Easy Customization') | ||
or call the function `global-auto-complete-mode'.") | ||
|
||
(custom-autoload 'global-auto-complete-mode "auto-complete" nil) | ||
|
||
(autoload 'global-auto-complete-mode "auto-complete" "\ | ||
Toggle Auto-Complete mode in all buffers. | ||
With prefix ARG, enable Global-Auto-Complete mode if ARG is positive; | ||
otherwise, disable it. If called from Lisp, enable the mode if | ||
ARG is omitted or nil. | ||
Auto-Complete mode is enabled in all buffers where | ||
`auto-complete-mode-maybe' would do it. | ||
See `auto-complete-mode' for more information on Auto-Complete mode. | ||
\(fn &optional ARG)" t nil) | ||
|
||
;;;*** | ||
|
||
;;;### (autoloads (ac-config-default) "auto-complete-config" "auto-complete-config.el" | ||
;;;;;; (21478 16695 0 0)) | ||
;;; Generated autoloads from auto-complete-config.el | ||
|
||
(autoload 'ac-config-default "auto-complete-config" "\ | ||
\(fn)" nil nil) | ||
|
||
;;;*** | ||
|
||
;;;### (autoloads nil nil ("auto-complete-pkg.el") (21478 16695 123947 | ||
;;;;;; 0)) | ||
|
||
;;;*** | ||
|
||
(provide 'auto-complete-autoloads) | ||
;; Local Variables: | ||
;; version-control: never | ||
;; no-byte-compile: t | ||
;; no-update-autoloads: t | ||
;; coding: utf-8 | ||
;; End: | ||
;;; auto-complete-autoloads.el ends here |
Oops, something went wrong.