]> git.eshelyaron.com Git - emacs.git/commitdiff
* os.texi (Timers): Mention with-local-quit.
authorChong Yidong <cyd@stupidchicken.com>
Mon, 25 Sep 2006 15:20:44 +0000 (15:20 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Mon, 25 Sep 2006 15:20:44 +0000 (15:20 +0000)
lispref/ChangeLog
lispref/os.texi

index 2740462384c969dbabc25c204b087a774b2a9d4c..fe0d430f8737600c502f045afa140dac4811b5f8 100644 (file)
@@ -1,3 +1,7 @@
+2006-09-25  Chong Yidong  <cyd@stupidchicken.com>
+
+       * os.texi (Timers): Mention with-local-quit.
+
 2006-09-24  Richard Stallman  <rms@gnu.org>
 
        * searching.texi (Searching and Matching): Mention property search.
index 6c2d660709e9c9416729e0c623627aabf64ef1ee..65cb0b906af5cfaa0a69176c2f973725fd5ab39d 100644 (file)
@@ -1386,7 +1386,12 @@ function, because quitting out of many timer functions can leave
 things in an inconsistent state.  This is normally unproblematical
 because most timer functions don't do a lot of work.  Indeed, for a
 timer to call a function that takes substantial time to run is likely
-to be annoying.
+to be annoying.  If a timer function needs to allow quitting, it
+should use @code{with-local-quit} (@pxref{Quitting}).  For example, if
+a timer function calls @code{accept-process-output} to receive output
+from an external process, that call should be wrapped inside
+@code{with-local-quit}, to ensure that @kbd{C-g} works if the external
+process hangs.
 
   It is usually a bad idea for timer functions to alter buffer
 contents.  When they do, they usually should call @code{undo-boundary}