aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/type-break.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/type-break.el b/lisp/type-break.el
index 84c240c9f8c..a6d5cd01702 100644
--- a/lisp/type-break.el
+++ b/lisp/type-break.el
@@ -487,7 +487,7 @@ Return nil if the file is missing or if the time is not a Lisp time value."
487 (goto-char (point-min)) 487 (goto-char (point-min))
488 (read (current-buffer))) 488 (read (current-buffer)))
489 (end-of-file 489 (end-of-file
490 (error "End of file in `%s'" file)))))))) 490 (warn "End of file in `%s'" file))))))))
491 491
492(defun type-break-get-previous-count () 492(defun type-break-get-previous-count ()
493 "Get previous keystroke count from `type-break-file-name'. 493 "Get previous keystroke count from `type-break-file-name'.
@@ -505,7 +505,7 @@ integer."
505 (forward-line 1) 505 (forward-line 1)
506 (read (current-buffer))) 506 (read (current-buffer)))
507 (end-of-file 507 (end-of-file
508 (error "End of file in `%s'" file))))))) 508 (warn "End of file in `%s'" file)))))))
509 file 509 file
510 0))) 510 0)))
511 511