[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Error report on startup
From: |
Richard Stallman |
Subject: |
Re: Error report on startup |
Date: |
Fri, 02 Mar 2007 18:46:33 -0500 |
Does this patch give acceptable results?
*** type-break.el 30 Jan 2007 18:46:39 -0500 1.44
--- type-break.el 02 Mar 2007 14:33:25 -0500
***************
*** 562,570 ****
(if file
(timep ;; returns expected format, else nil
(with-current-buffer (find-file-noselect file 'nowarn)
! (save-excursion
! (goto-char (point-min))
! (read (current-buffer))))))))
(defun type-break-get-previous-count ()
"Get previous keystroke count from `type-break-file-name'.
--- 562,573 ----
(if file
(timep ;; returns expected format, else nil
(with-current-buffer (find-file-noselect file 'nowarn)
! (condition-case nil
! (save-excursion
! (goto-char (point-min))
! (read (current-buffer)))
! (end-of-file
! (error "End of file in `%s'" file))))))))
(defun type-break-get-previous-count ()
"Get previous keystroke count from `type-break-file-name'.
- Error report on startup, Herbert Euler, 2007/03/01
- Re: Error report on startup, Juanma Barranquero, 2007/03/01
- Re: Error report on startup, Herbert Euler, 2007/03/01
- Re: Error report on startup, Juanma Barranquero, 2007/03/01
- Re: Error report on startup, Herbert Euler, 2007/03/01
- Re: Error report on startup, Juanma Barranquero, 2007/03/01
- Re: Error report on startup, Richard Stallman, 2007/03/02
- Re: Error report on startup,
Richard Stallman <=
- Re: Error report on startup, Herbert Euler, 2007/03/04
Re: Error report on startup, Richard Stallman, 2007/03/01