From f2a8bfe6f8894f836f8658da7329fea79ffc26d9 Mon Sep 17 00:00:00 2001 From: ueno Date: Tue, 18 Jul 2006 01:09:52 +0000 Subject: [PATCH] * epg.el (epg--process-filter): Allow only one status handler to run at a time; update epg-read-point everytime the point changes. --- ChangeLog | 2 +- epg.el | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 76da7f0..4c1b1e1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,7 +3,7 @@ * epg.el (epg-process-filter-running): New variable. (epg--start): Setup epg-process-filter-running. (epg--process-filter): Allow only one status handler to run at a - time. + time; update epg-read-point everytime the point changes. 2006-07-14 Daiki Ueno diff --git a/epg.el b/epg.el index 82d5cb6..70b6de1 100644 --- a/epg.el +++ b/epg.el @@ -881,8 +881,8 @@ This function is for internal use only." (if (and symbol (fboundp symbol)) (funcall symbol epg-context string))))) - (forward-line)) - (setq epg-read-point (point))) + (forward-line) + (setq epg-read-point (point)))) (setq epg-process-filter-running nil)))))) (defun epg-read-output (context) -- 1.7.10.4