Refill some long/short copyright headers.
[bpt/emacs.git] / lisp / cedet / ede / pconf.el
index 7f9d92e..497806c 100644 (file)
@@ -1,7 +1,6 @@
 ;;; ede/pconf.el --- configure.ac maintenance for EDE
 
-;;; Copyright (C) 1998, 1999, 2000, 2005, 2008, 2009
-;;; Free Software Foundation, Inc.
+;;; Copyright (C) 1998-2000, 2005, 2008-2011  Free Software Foundation, Inc.
 
 ;; Author: Eric M. Ludlam <zappo@gnu.org>
 ;; Keywords: project
@@ -126,7 +125,11 @@ don't do it.  A value of nil means to just do it.")
 
          (while compilation-in-progress
            (accept-process-output)
-           (sit-for 1))
+           ;; If sit for indicates that input is waiting, then
+           ;; read and discard whatever it is that is going on.
+           (when (not (sit-for 1))
+             (read-event nil nil .1)
+             ))
 
          (with-current-buffer "*compilation*"
            (goto-char (point-max))
@@ -180,5 +183,4 @@ Results in --add-missing being passed to automake."
 
 (provide 'ede/pconf)
 
-;; arch-tag: 8d514f68-2abe-4b35-8b4e-bea4fd0c3eab
 ;;; ede/pconf.el ends here