Mercurial > emacs
changeset 6108:b3ea9bc60744
* make-path.c (main): Return 1 on error, not -1. Update GPL.
author | David J. MacKenzie <djm@gnu.org> |
---|---|
date | Sun, 27 Feb 1994 03:38:56 +0000 |
parents | 8cc2a5d2e728 |
children | e52619114580 |
files | lib-src/make-path.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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;