Changeset 4169 for trunk/lisp/gnus/gnus-demon.el
- Timestamp:
- 09/30/06 09:12:06 (2 years ago)
- Files:
-
- trunk/lisp (modified) (1 prop)
- trunk/lisp/gnus/gnus-demon.el (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp
- Property svn:ignore changed from
*.elc
MANIFEST
Makefile
Makefile.unix
makefile
elc.tar.gz
cus-load.el
finder-inf.el
subdirs.el
loaddefs.el
to
*.elc
MANIFEST
Makefile
Makefile.unix
makefile
elc.tar.gz
cus-load.el
finder-inf.el
subdirs.el
loaddefs.el
pre-mh-loaddefs.el-CMD
- Property svn:ignore changed from
trunk/lisp/gnus/gnus-demon.el
r4037 r4169 219 219 (t (< 0 gnus-demon-idle-time)))) ; Or just need to be idle. 220 220 ;; So we call the handler. 221 ( progn221 (with-local-quit 222 222 (ignore-errors (funcall (car handler))) 223 223 ;; And reset the timer. … … 233 233 ;; We want to call this handler each and every time that 234 234 ;; Emacs is idle. 235 (ignore-errors (funcall (car handler)))) 235 (with-local-quit 236 (ignore-errors (funcall (car handler))))) 236 237 (t 237 238 ;; We want to call this handler only if Emacs has been idle … … 240 241 (< idle gnus-demon-idle-time) 241 242 (gnus-demon-is-idle-p) 242 ( progn243 (with-local-quit 243 244 (ignore-errors (funcall (car handler))) 244 245 ;; Make sure the handler won't be called once more in
