diff options
| author | Paul Eggert | 2012-09-12 23:09:45 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-09-12 23:09:45 -0700 |
| commit | 72eac303eabbb403eae650c9dd0c93851b0fec23 (patch) | |
| tree | 480b2529cbc787c643be94f462ab4913216e1c1a /etc | |
| parent | d59a1afb9acc881201223e7c573e94526b3cd3fc (diff) | |
| download | emacs-72eac303eabbb403eae650c9dd0c93851b0fec23.tar.gz emacs-72eac303eabbb403eae650c9dd0c93851b0fec23.zip | |
Fix glitches caused by addition of psec to timers.
* etc/NEWS: Document timer format change.
* lisp/image.el (image-animate-timer):
* lisp/time.el (display-time-world-timer):
Use timer--function and timer--args rather than raw access to
timer vector.
* lisp/gnus/gnus-art.el (gnus-article-stop-animations):
Use timer--function rather than raw access to timer vector.
Fixes: debbugs:12430
Diffstat (limited to 'etc')
| -rw-r--r-- | etc/ChangeLog | 4 | ||||
| -rw-r--r-- | etc/NEWS | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog index 11e7e5ca108..20ded2fd847 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2012-09-13 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | * NEWS: Document timer format change (Bug#12430). | ||
| 4 | |||
| 1 | 2012-09-11 Paul Eggert <eggert@cs.ucla.edu> | 5 | 2012-09-11 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 6 | ||
| 3 | Simplify, document, and port floating-point (Bug#12381). | 7 | Simplify, document, and port floating-point (Bug#12381). |
| @@ -101,6 +101,11 @@ machines. Other functions that use this format, such as | |||
| 101 | file-attributes and format-time-string, have been changed accordingly. | 101 | file-attributes and format-time-string, have been changed accordingly. |
| 102 | Old-format time stamps are still accepted. | 102 | Old-format time stamps are still accepted. |
| 103 | 103 | ||
| 104 | ** The format of timers in timer-list and timer-idle-list is now | ||
| 105 | [HIGH-SECONDS LOW-SECONDS USECS PSECS REPEAT-DELAY FUNCTION ARGS IDLE-DELAY]. | ||
| 106 | The PSECS slot is new, and uses picosecond resolution. It can be | ||
| 107 | accessed via the new timer--psecs accessor. | ||
| 108 | |||
| 104 | ** Emacs now generates backtraces on fatal errors. | 109 | ** Emacs now generates backtraces on fatal errors. |
| 105 | On encountering a fatal error, Emacs now outputs a textual description | 110 | On encountering a fatal error, Emacs now outputs a textual description |
| 106 | of the fatal signal, and a short backtrace on platforms like glibc | 111 | of the fatal signal, and a short backtrace on platforms like glibc |