Remove time-date debugging scaffolding
Problem reported by Lars Ingebrigtsen in: https://lists.gnu.org/r/emacs-devel/2019-05/msg00721.html * lisp/calendar/time-date.el (date-to-time): Use plain condition-case, not condition-case-unless-debug.
This commit is contained in:
parent
eb2e9a2ca2
commit
8ff7807aa7
1 changed files with 1 additions and 1 deletions
|
@ -156,7 +156,7 @@ If DATE lacks timezone information, GMT is assumed."
|
|||
(let ((overflow-error '(error "Specified time is not representable")))
|
||||
(if (equal err overflow-error)
|
||||
(signal (car err) (cdr err))
|
||||
(condition-case-unless-debug err
|
||||
(condition-case err
|
||||
(encode-time (parse-time-string
|
||||
(timezone-make-date-arpa-standard date)))
|
||||
(error
|
||||
|
|
Loading…
Add table
Reference in a new issue