Merge remote-tracking branch 'origin/front' into front
This commit is contained in:
commit
939d1fd742
3 changed files with 6 additions and 2 deletions
|
@ -835,8 +835,10 @@ used.
|
|||
The snarf buffer is unaffected.
|
||||
.TP
|
||||
.B <rio>
|
||||
Exchange snarf buffers with
|
||||
Exchange dot with snarf buffer of
|
||||
.IR rio .
|
||||
If dot is the null string, the text in the snarf buffer is
|
||||
used.
|
||||
.TP
|
||||
.BI / regexp
|
||||
Search forward for the next match of the last regular expression
|
||||
|
|
|
@ -265,7 +265,7 @@ intrenable(int irq, void (*f)(Ureg*, void*), void *a, int tbdf, char *)
|
|||
prio = 0x80;
|
||||
intid = irq;
|
||||
if((v = xalloc(sizeof(Vctl))) == nil)
|
||||
panic("irqenable: no mem");
|
||||
panic("intrenable: no mem");
|
||||
v->irq = irq;
|
||||
v->intid = intid;
|
||||
v->f = f;
|
||||
|
|
|
@ -802,6 +802,8 @@ changemesg(Plumbmsg *pm)
|
|||
|
||||
digest = plumblookup(pm->attr, "digest");
|
||||
action = plumblookup(pm->attr, "mailtype");
|
||||
if(digest == nil || action == nil)
|
||||
return;
|
||||
if(strcmp(action, "new") == 0){
|
||||
if((m = load(pm->data, digest, 1)) == nil)
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue