X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=sbr%2Fseq_read.c;h=c1ac9fa72ad593e54e19f74df16a633f3ec8622f;hp=26337c03729ed80190d22a30266ce0264c6dd655;hb=3cc8ed080f6e741b8df04a3ebe764c659e75cb38;hpb=a7771fd2e83d64228fb675749fc936151249dbd3 diff --git a/sbr/seq_read.c b/sbr/seq_read.c index 26337c0..c1ac9fa 100644 --- a/sbr/seq_read.c +++ b/sbr/seq_read.c @@ -29,9 +29,9 @@ seq_read(struct msgs *mp) { /* ** Initialize the list of sequence names. Go ahead and - ** add the "cur" sequence to the list of sequences. + ** add the cur sequence to the list of sequences. */ - mp->msgattrs[0] = getcpy(current); + mp->msgattrs[0] = getcpy(seq_cur); mp->msgattrs[1] = NULL; make_all_public(mp); /* initially, make all public */ @@ -163,10 +163,10 @@ seq_init(struct msgs *mp, char *name, char *field) char *cp, **ap; /* - ** Check if this is "cur" sequence, + ** Check if this is the cur sequence, ** so we can do some special things. */ - is_current = !strcmp(current, name); + is_current = !strcmp(seq_cur, name); /* ** Search for this sequence name to see if we've seen @@ -210,7 +210,7 @@ seq_init(struct msgs *mp, char *name, char *field) k = cp ? m_atoi(cp) : j; /* - ** Keep mp->curmsg and "cur" sequence in synch. Unlike + ** Keep mp->curmsg and cur sequence in sync. Unlike ** other sequences, this message doesn't need to exist. ** Think about the series of command (rmm; next) to ** understand why this can be the case. But if it does