changeset 14471:c1154020b9c3

(display-time): Rewrite to use built-in timers. (display-time-event-handler): Renamed from display-time-filter; now takes no parameters. (display-time-sentinel): Function deleted. (display-time-process): Variable deleted. (display-time-timer): New variable.
author Richard M. Stallman <rms@gnu.org>
date Fri, 02 Feb 1996 19:58:21 +0000
parents eb7a9a73cc06
children 8979515dac09
files lisp/time.el
diffstat 1 files changed, 14 insertions(+), 37 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/time.el	Fri Feb 02 19:45:55 1996 +0000
+++ b/lisp/time.el	Fri Feb 02 19:58:21 1996 +0000
@@ -37,7 +37,7 @@
 (defvar display-time-day-and-date nil "\
 *Non-nil means \\[display-time] should display day and date as well as time.")
 
-(defvar display-time-process nil)
+(defvar display-time-timer nil)
 
 (defvar display-time-interval 60
   "*Seconds between updates of time in the mode line.")
@@ -63,41 +63,18 @@
 are displayed as well.
 After each update, `display-time-hook' is run with `run-hooks'."
   (interactive)
-  (let ((live (or (and (eq system-type 'ms-dos) dos-display-time)
-		  (and display-time-process
-		       (eq (process-status display-time-process) 'run)))))
-    (if (not live)
-	(progn
-	  (if display-time-process
-	      (delete-process display-time-process))
-	  (or global-mode-string (setq global-mode-string '("")))
-	  (or (memq 'display-time-string global-mode-string)
-	      (setq global-mode-string
-		    (append global-mode-string '(display-time-string))))
-	  (setq display-time-string "")
-	  (if (eq system-type 'ms-dos)
-	      (setq dos-display-time t)
-	    ;; Using a pty is wasteful, and the separate session causes
-	    ;; annoyance sometimes (some systems kill idle sessions).
-	    (progn
-	      (let ((process-connection-type nil))
-		(setq display-time-process
-		      (start-process "display-time" nil
-				     (expand-file-name
-				      "wakeup" exec-directory)
-				     (int-to-string display-time-interval))))
-	      (process-kill-without-query display-time-process)
-	      (set-process-sentinel display-time-process
-				    'display-time-sentinel)
-	      (set-process-filter   display-time-process
-				    'display-time-filter)))))))
-
-(defun display-time-sentinel (proc reason)
-  (or (eq (process-status proc) 'run)
-      (setq display-time-string ""))
-  ;; Force mode-line updates
-  (force-mode-line-update t)
-  (sit-for 0))
+  (require 'timer)
+  (if (timerp display-time-timer)
+      (cancel-timer display-time-timer)
+    (setq display-time-timer (timer-create)))
+  (setq display-time-string "")
+  (or global-mode-string (setq global-mode-string '("")))
+  (or (memq 'display-time-string global-mode-string)
+      (setq global-mode-string
+	    (append global-mode-string '(display-time-string))))
+  (timer-set-time display-time-timer (current-time) display-time-interval)
+  (timer-set-function display-time-timer 'display-time-event-handler)
+  (timer-activate display-time-timer))
 
 (defvar display-time-string-forms
   '((if display-time-day-and-date
@@ -124,7 +101,7 @@
 
 would give mode line times like `94/12/30 21:07:48 (UTC)'.")
 
-(defun display-time-filter (proc string)
+(defun display-time-event-handler ()
   (let* ((now (current-time))
 	 (time (current-time-string now))
          (load (condition-case ()