aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2009-08-29 22:28:15 +0000
committerChong Yidong2009-08-29 22:28:15 +0000
commit638bba9da5d570ee88bcebe30b6a993f948fac7e (patch)
tree324d781b1d488fbeea9da5b0374a1215b9700409
parent3a33f4d412cfe28740055af62d5cd5f2fc2b2e1b (diff)
downloademacs-638bba9da5d570ee88bcebe30b6a993f948fac7e.tar.gz
emacs-638bba9da5d570ee88bcebe30b6a993f948fac7e.zip
cedet/semantic/idle.el: Remove autoloads.
-rw-r--r--lisp/cedet/semantic/idle.el6
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."
119 :set (lambda (sym val) 119 :set (lambda (sym val)
120 (global-semantic-idle-scheduler-mode (if val 1 -1)))) 120 (global-semantic-idle-scheduler-mode (if val 1 -1))))
121 121
122;;;###autoload
123(defun global-semantic-idle-scheduler-mode (&optional arg) 122(defun global-semantic-idle-scheduler-mode (&optional arg)
124 "Toggle global use of option `semantic-idle-scheduler-mode'. 123 "Toggle global use of option `semantic-idle-scheduler-mode'.
125The idle scheduler with automatically reparse buffers in idle time, 124The idle scheduler with automatically reparse buffers in idle time,
@@ -136,7 +135,6 @@ If ARG is nil, then toggle."
136 :group 'semantic 135 :group 'semantic
137 :type 'hook) 136 :type 'hook)
138 137
139;;;###autoload
140(defvar semantic-idle-scheduler-mode nil 138(defvar semantic-idle-scheduler-mode nil
141 "Non-nil if idle-scheduler minor mode is enabled. 139 "Non-nil if idle-scheduler minor mode is enabled.
142Use the command `semantic-idle-scheduler-mode' to change this variable.") 140Use the command `semantic-idle-scheduler-mode' to change this variable.")
@@ -175,7 +173,6 @@ minor mode is enabled."
175 (semantic-idle-scheduler-setup-timers))) 173 (semantic-idle-scheduler-setup-timers)))
176 semantic-idle-scheduler-mode) 174 semantic-idle-scheduler-mode)
177 175
178;;;###autoload
179(defun semantic-idle-scheduler-mode (&optional arg) 176(defun semantic-idle-scheduler-mode (&optional arg)
180 "Minor mode to auto parse buffer following a change. 177 "Minor mode to auto parse buffer following a change.
181When this mode is off, a buffer is only rescanned for tokens when 178When 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
225will not be called if there are errors parsing the 222will not be called if there are errors parsing the
226current buffer.") 223current buffer.")
227 224
228;;;###autoload
229(defun semantic-idle-scheduler-add (function) 225(defun semantic-idle-scheduler-add (function)
230 "Schedule FUNCTION to occur during idle time." 226 "Schedule FUNCTION to occur during idle time."
231 (add-to-list 'semantic-idle-scheduler-queue function)) 227 (add-to-list 'semantic-idle-scheduler-queue function))
232 228
233;;;###autoload
234(defun semantic-idle-scheduler-remove (function) 229(defun semantic-idle-scheduler-remove (function)
235 "Unschedule FUNCTION to occur during idle time." 230 "Unschedule FUNCTION to occur during idle time."
236 (setq semantic-idle-scheduler-queue 231 (setq semantic-idle-scheduler-queue
@@ -659,7 +654,6 @@ Return non-nil if the minor mode is enabled.")
659 ) 654 )
660 ,mode) 655 ,mode)
661 656
662;;;###autoload
663 (defun ,mode (&optional arg) 657 (defun ,mode (&optional arg)
664 ,(concat doc " 658 ,(concat doc "
665This is a minor mode which performs actions during idle time. 659This is a minor mode which performs actions during idle time.