]> diplodocus.org Git - nmh/blobdiff - sbr/context_foil.c
man/*.man: Use italic for emphasis, not bold or SHOUTING.
[nmh] / sbr / context_foil.c
index aabac5583291c101d5bb838500fd58bc9fdef6ee..9aa02dba91617e51cd7057cfe0f787e17461c5ca 100644 (file)
@@ -18,7 +18,7 @@
 int
 context_foil (char *path)
 {
-    register struct node *np;
+    struct node *np;
 
     /* In fact, nobody examines defpath in code paths where
      * it's been set by us -- the uses in the source tree are:
@@ -47,11 +47,11 @@ context_foil (char *path)
        NEW(np);
        m_defs = np;
        if (!(np->n_name = strdup ("Path"))) {
-           advise (NULL, "strdup failed");
+           inform("strdup failed");
            return -1;
        }
        if (!(np->n_field = strdup (path))) {
-           advise (NULL, "strdup failed");
+           inform("strdup failed");
            return -1;
        }
        np->n_context = 0;
@@ -59,7 +59,7 @@ context_foil (char *path)
 
        if (mypath == NULL && (mypath = getenv ("HOME")) != NULL)
            if (!(mypath = strdup (mypath))) {
-               advise (NULL, "strdup failed");
+               inform("strdup failed");
                return -1;
            }
     }