diff lisp/cedet/semantic/idle.el @ 104519:934691bc93ed

* cedet/semantic/idle.el (semantic-idle-scheduler-work-timer): Change timeout to 1. Doc fix. * cedet/semantic/edit.el (semantic-change-hooks): Add semantic-edits-change-function-handle-changes directly. * cedet/semantic/util.el (semantic--completion-cache): Move to semantic.el. (semantic-symbol-start): Remove unneeded function. * cedet/semantic.el (semantic--completion-cache): Move here from semantic/util.el (semantic-clear-toplevel-cache, semantic--set-buffer-cache) (semantic-fetch-tags): Reset semantic--completion-cache. (semantic-force-refresh): New function (semantic-mode-map): New variable. * cedet/semantic/senator.el: New file. * cedet/ede.el: Fix autoload. (ede-customize-forms-menu): Handle null projects.
author Chong Yidong <cyd@stupidchicken.com>
date Sun, 27 Sep 2009 03:36:58 +0000
parents c65d65798b34
children bbd7017a25d9
line wrap: on
line diff
--- a/lisp/cedet/semantic/idle.el	Sat Sep 26 19:17:02 2009 +0000
+++ b/lisp/cedet/semantic/idle.el	Sun Sep 27 03:36:58 2009 +0000
@@ -69,13 +69,13 @@
   "Timer used to schedule tasks in idle time that may take a while.")
 
 (defcustom semantic-idle-scheduler-verbose-flag nil
-  "*Non-nil means that the idle scheduler should provide debug messages.
+  "Non-nil means that the idle scheduler should provide debug messages.
 Use this setting to debug idle activities."
   :group 'semantic
   :type 'boolean)
 
-(defcustom semantic-idle-scheduler-idle-time 2
-  "*Time in seconds of idle before scheduling events.
+(defcustom semantic-idle-scheduler-idle-time 1
+  "Time in seconds of idle before scheduling events.
 This time should be short enough to ensure that idle-scheduler will be
 run as soon as Emacs is idle."
   :group 'semantic
@@ -88,7 +88,7 @@
            (semantic-idle-scheduler-setup-timers))))
 
 (defcustom semantic-idle-scheduler-work-idle-time 60
-  "*Time in seconds of idle before scheduling big work.
+  "Time in seconds of idle before scheduling big work.
 This time should be long enough that once any big work is started, it is
 unlikely the user would be ready to type again right away."
   :group 'semantic