From: xscript Date: Sun, 15 May 2011 20:16:47 +0000 (+0200) Subject: Synchronize cedet/semantic with Emacs. X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=97673689be8979093ecb9a1f99f7d4f41eafaff8;p=emacs.git Synchronize cedet/semantic with Emacs. --- diff --git a/test/manual/cedet/cedet/semantic/idle.el b/test/manual/cedet/cedet/semantic/idle.el new file mode 100644 index 00000000000..7738a917f06 --- /dev/null +++ b/test/manual/cedet/cedet/semantic/idle.el @@ -0,0 +1,7 @@ +(defun semantic-idle-pnf-test () + "Test `semantic-idle-scheduler-work-parse-neighboring-files' and time it." + (interactive) + (let ((start (current-time)) + (junk (semantic-idle-scheduler-work-parse-neighboring-files)) + (end (current-time))) + (message "Work took %.2f seconds." (semantic.elapsed-time start end))))