changeset 10041:b1ee0b2d3f53

(timer-process-filter): No need for save-match-data.
author Richard M. Stallman <rms@gnu.org>
date Tue, 22 Nov 1994 04:38:30 +0000
parents c69ddd9fa3a6
children d062993c96a0
files lisp/=timer.el
diffstat 1 files changed, 28 insertions(+), 29 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/=timer.el	Tue Nov 22 04:37:43 1994 +0000
+++ b/lisp/=timer.el	Tue Nov 22 04:38:30 1994 +0000
@@ -124,35 +124,34 @@
   (setcar (cdr (cdr elt)) 'ignore))
 
 (defun timer-process-filter (proc str)
-  (save-match-data
-    (setq timer-out (concat timer-out str))
-    (let (do token error)
-      (while (string-match "\n" timer-out)
-	(setq token (substring timer-out 0 (match-beginning 0))
-	      do (assoc token timer-alist)
-	      timer-out (substring timer-out (match-end 0)))
-	(cond
-	 (do
-	  (apply (nth 2 do) (nth 3 do))	; do it
-	  (if (natnump (nth 1 do))	; reschedule it
-	      (send-string proc (concat (nth 1 do) " sec@" (car do) "\n"))
-	    (setq timer-alist (delq do timer-alist))))
-	 ((string-match "timer: \\([^:]+\\): \\([^@]*\\)@\\(.*\\)$" token)
-	  (setq error (substring token (match-beginning 1) (match-end 1))
-		do    (substring token (match-beginning 2) (match-end 2))
-		token (assoc (substring token (match-beginning 3) (match-end 3))
-			     timer-alist)
-		timer-alist (delq token timer-alist))
-	  (or timer-alist 
-	      timer-dont-exit
-	      (process-send-eof proc))
-	  ;; Update error message for this particular instance
-	  (put 'timer-filter-error
-	       'error-message
-	       (format "%s for %s; couldn't set at \"%s\"" 
-		       error (nth 2 token) do))
-	  (signal 'timer-filter-error (list proc str)))))
-      (or timer-alist timer-dont-exit (process-send-eof proc)))))
+  (setq timer-out (concat timer-out str))
+  (let (do token error)
+    (while (string-match "\n" timer-out)
+      (setq token (substring timer-out 0 (match-beginning 0))
+	    do (assoc token timer-alist)
+	    timer-out (substring timer-out (match-end 0)))
+      (cond
+       (do
+	(apply (nth 2 do) (nth 3 do))	; do it
+	(if (natnump (nth 1 do))	; reschedule it
+	    (send-string proc (concat (nth 1 do) " sec@" (car do) "\n"))
+	  (setq timer-alist (delq do timer-alist))))
+       ((string-match "timer: \\([^:]+\\): \\([^@]*\\)@\\(.*\\)$" token)
+	(setq error (substring token (match-beginning 1) (match-end 1))
+	      do    (substring token (match-beginning 2) (match-end 2))
+	      token (assoc (substring token (match-beginning 3) (match-end 3))
+			   timer-alist)
+	      timer-alist (delq token timer-alist))
+	(or timer-alist 
+	    timer-dont-exit
+	    (process-send-eof proc))
+	;; Update error message for this particular instance
+	(put 'timer-filter-error
+	     'error-message
+	     (format "%s for %s; couldn't set at \"%s\"" 
+		     error (nth 2 token) do))
+	(signal 'timer-filter-error (list proc str)))))
+    (or timer-alist timer-dont-exit (process-send-eof proc))))
 
 (defun timer-process-sentinel (proc str)
   (let ((stat (process-status proc)))