Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: PATCH: more selection
- X-seq: zsh-workers 17153
- From: Peter Stephenson <pws@xxxxxxx>
- To: zsh-workers@xxxxxxxxxx (Zsh hackers list)
- Subject: Re: PATCH: more selection
- Date: Tue, 14 May 2002 12:37:34 +0100
- In-reply-to: "Peter Stephenson"'s message of "Mon, 13 May 2002 16:33:01 BST." <21560.1021303981@xxxxxxx>
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
Peter Stephenson wrote:
> This patch is more advanced warning of future pain than anything else,
> in case anyone wants to scream at the very idea.
Just realised --- the patch won't actually work because I've missed out
this change in utils.c. As I said, it will be tweaked anyway. (As
posted, for example, you need two ^C's to abort the current line, which
is clearly wrong.)
Index: Src/utils.c
===================================================================
RCS file: /cvsroot/zsh/zsh/Src/utils.c,v
retrieving revision 1.39
diff -u -r1.39 utils.c
--- Src/utils.c 6 Jan 2002 01:07:23 -0000 1.39
+++ Src/utils.c 14 May 2002 11:35:59 -0000
@@ -624,6 +624,30 @@
/**/
time_t lastwatch;
+/**/
+mod_export int
+callhookfunc(char *name, LinkList lnklst)
+{
+ Eprog prog;
+
+ if ((prog = getshfunc(name)) != &dummy_eprog) {
+ /*
+ * Save stopmsg, since user doesn't get a chance to respond
+ * to a list of jobs generated in a hook.
+ */
+ int osc = sfcontext, osm = stopmsg;
+
+ sfcontext = SFC_HOOK;
+ doshfunc(name, prog, lnklst, 0, 1);
+ sfcontext = osc;
+ stopmsg = osm;
+
+ return 0;
+ }
+
+ return 1;
+}
+
/* do pre-prompt stuff */
/**/
@@ -632,7 +656,6 @@
{
static time_t lastperiodic;
LinkNode ln;
- Eprog prog;
int period = getiparam("PERIOD");
int mailcheck = getiparam("MAILCHECK");
@@ -645,18 +668,7 @@
/* If a shell function named "precmd" exists, *
* then execute it. */
- if ((prog = getshfunc("precmd")) != &dummy_eprog) {
- /*
- * Save stopmsg, since user doesn't get a chance to respond
- * to a list of jobs generated in precmd.
- */
- int osc = sfcontext, osm = stopmsg;
-
- sfcontext = SFC_HOOK;
- doshfunc("precmd", prog, NULL, 0, 1);
- sfcontext = osc;
- stopmsg = osm;
- }
+ callhookfunc("precmd", NULL);
if (errflag)
return;
@@ -664,14 +676,8 @@
* "periodic" exists, 3) it's been greater than PERIOD since we *
* executed "periodic", then execute it now. */
if (period && (time(NULL) > lastperiodic + period) &&
- (prog = getshfunc("periodic")) != &dummy_eprog) {
- int osc = sfcontext;
-
- sfcontext = SFC_HOOK;
- doshfunc("periodic", prog, NULL, 0, 1);
- sfcontext = osc;
+ !callhookfunc("periodic", NULL))
lastperiodic = time(NULL);
- }
if (errflag)
return;
--
Peter Stephenson <pws@xxxxxxx> Software Engineer
CSR Ltd., Science Park, Milton Road,
Cambridge, CB4 0WH, UK Tel: +44 (0)1223 392070
**********************************************************************
The information transmitted is intended only for the person or
entity to which it is addressed and may contain confidential
and/or privileged material.
Any review, retransmission, dissemination or other use of, or
taking of any action in reliance upon, this information by
persons or entities other than the intended recipient is
prohibited.
If you received this in error, please contact the sender and
delete the material from any computer.
**********************************************************************
Messages sorted by:
Reverse Date,
Date,
Thread,
Author