diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2009-08-29 22:28:15 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2009-08-29 22:28:15 +0000 |
commit | 638bba9da5d570ee88bcebe30b6a993f948fac7e (patch) | |
tree | 324d781b1d488fbeea9da5b0374a1215b9700409 /lisp/cedet/semantic/idle.el | |
parent | 3a33f4d412cfe28740055af62d5cd5f2fc2b2e1b (diff) | |
download | emacs-638bba9da5d570ee88bcebe30b6a993f948fac7e.tar.gz |
cedet/semantic/idle.el: Remove autoloads.
Diffstat (limited to 'lisp/cedet/semantic/idle.el')
-rw-r--r-- | lisp/cedet/semantic/idle.el | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lisp/cedet/semantic/idle.el b/lisp/cedet/semantic/idle.el index 15dded40035..9a059248908 100644 --- a/lisp/cedet/semantic/idle.el +++ b/lisp/cedet/semantic/idle.el @@ -119,7 +119,6 @@ unlikely the user would be ready to type again right away." :set (lambda (sym val) (global-semantic-idle-scheduler-mode (if val 1 -1)))) -;;;###autoload (defun global-semantic-idle-scheduler-mode (&optional arg) "Toggle global use of option `semantic-idle-scheduler-mode'. The idle scheduler with automatically reparse buffers in idle time, @@ -136,7 +135,6 @@ If ARG is nil, then toggle." :group 'semantic :type 'hook) -;;;###autoload (defvar semantic-idle-scheduler-mode nil "Non-nil if idle-scheduler minor mode is enabled. Use the command `semantic-idle-scheduler-mode' to change this variable.") @@ -175,7 +173,6 @@ minor mode is enabled." (semantic-idle-scheduler-setup-timers))) semantic-idle-scheduler-mode) -;;;###autoload (defun semantic-idle-scheduler-mode (&optional arg) "Minor mode to auto parse buffer following a change. When this mode is off, a buffer is only rescanned for tokens when @@ -225,12 +222,10 @@ buffer has had its tags made up to date. These functions will not be called if there are errors parsing the current buffer.") -;;;###autoload (defun semantic-idle-scheduler-add (function) "Schedule FUNCTION to occur during idle time." (add-to-list 'semantic-idle-scheduler-queue function)) -;;;###autoload (defun semantic-idle-scheduler-remove (function) "Unschedule FUNCTION to occur during idle time." (setq semantic-idle-scheduler-queue @@ -659,7 +654,6 @@ Return non-nil if the minor mode is enabled.") ) ,mode) -;;;###autoload (defun ,mode (&optional arg) ,(concat doc " This is a minor mode which performs actions during idle time. |