# HG changeset patch # User Chong Yidong # Date 1251584895 0 # Node ID cc1b5aa56f20b5542064298888bdd433afcda23c # Parent d4ea185ac242a07326346ba47dec606d1911f296 cedet/semantic/idle.el: Remove autoloads. diff -r d4ea185ac242 -r cc1b5aa56f20 lisp/cedet/semantic/idle.el --- a/lisp/cedet/semantic/idle.el Sat Aug 29 22:18:11 2009 +0000 +++ b/lisp/cedet/semantic/idle.el Sat Aug 29 22:28:15 2009 +0000 @@ -119,7 +119,6 @@ :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 @@ :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 @@ (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 @@ 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 @@ ) ,mode) -;;;###autoload (defun ,mode (&optional arg) ,(concat doc " This is a minor mode which performs actions during idle time.