Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!uunet!husc6!rutgers!ames!sdcsvax!ucsdhub!hp-sdd!hplabs!hpcea!hpfcdc!hpfcls!neutron From: neutron@hpfcls.HP.COM (Jack Applin) Newsgroups: comp.mail.elm Subject: backquote check in mkhdrs.c Message-ID: <7390001@hpfcls.HP.COM> Date: Tue, 8-Sep-87 19:21:45 EDT Article-I.D.: hpfcls.7390001 Posted: Tue Sep 8 19:21:45 1987 Date-Received: Sat, 12-Sep-87 06:48:56 EDT Organization: Hewlett-Packard SSO Lines: 15 In mkhdrs.c, there is code to recognize backquoting in .elmheaders. from mkhdrs.c (in add_mailheaders): > else if (occurances_of(BACKQUOTE, buffer) == 2) > expand_backquote(buffer, filedesc); I had a line in .elmheaders like: Number: `cd; n=0\`cat -s .num\`; n=\`expr $n + 1\`; echo $n >.num; echo $n` which wasn't recognized because it had more than two backquotes. It would be better to check for >=2 instead of for exactly two backquotes. -Jack Applin