# HG changeset patch # User David J. MacKenzie # Date 762320336 0 # Node ID b3ea9bc60744554f1ec4496fc0e9704a44c18d1b # Parent 8cc2a5d2e7289528e104ad69bd321c38f3dd95f8 * make-path.c (main): Return 1 on error, not -1. Update GPL. diff -r 8cc2a5d2e728 -r b3ea9bc60744 lib-src/make-path.c --- a/lib-src/make-path.c Sun Feb 27 03:35:26 1994 +0000 +++ b/lib-src/make-path.c Sun Feb 27 03:38:56 1994 +0000 @@ -5,7 +5,7 @@ GNU Emacs is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 1, or (at your option) +the Free Software Foundation; either version 2, or (at your option) any later version. GNU Emacs is distributed in the hope that it will be useful, @@ -48,7 +48,7 @@ { fprintf (stderr, "%s: ", prog_name); perror (path); - return -1; + return 1; } return 0;