remove unused defines in uip/pick.c
[mmh] / uip / anno.c
index 81ad042..1708557 100644 (file)
@@ -53,6 +53,8 @@ static struct swit switches[] = {
        { NULL, 0 }
 };
 
+char *version=VERSION;
+
 /*
 ** static prototypes
 */
@@ -181,7 +183,7 @@ main(int argc, char **argv)
                        if (folder)
                                adios(EX_USAGE, NULL, "only one folder at a time!");
                        else
-                               folder = getcpy(expandfol(cp));
+                               folder = mh_xstrdup(expandfol(cp));
                } else if (*cp == '/' || *cp == '.') {
                        if (file)
                                adios(EX_USAGE, NULL, "only one file at a time!");
@@ -478,11 +480,13 @@ dodel(int fd, unsigned char *comp, char *text, FILE *tmp, int number)
                ** a long path name.
                */
                for (n=0, cp=field; (c=getc(fp)) != EOF; *cp++ = c) {
-                       if (c == '\n' && (c = getc(fp)) != ' ' &&
-                                       c != '\t') {
-                               ungetc(c, fp);
+                       if (c == '\n') {
+                               ungetc((c = getc(fp)), fp);
+                               if (c != ' ' && c != '\t') {
+                                       c = '\n';
+                                       break;
+                               }
                                c = '\n';
-                               break;
                        }
 
                        if (++n >= field_size - 1) {