From: David J. MacKenzie Date: Sun, 27 Feb 1994 03:38:56 +0000 (+0000) Subject: * make-path.c (main): Return 1 on error, not -1. Update GPL. X-Git-Tag: emacs-19.34~9744 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=566c662e1c36eae197d5d54e0c7b148d5d374338;p=emacs.git * make-path.c (main): Return 1 on error, not -1. Update GPL. --- diff --git a/lib-src/make-path.c b/lib-src/make-path.c index 9c6aeb3906c..00597d8719a 100644 --- a/lib-src/make-path.c +++ b/lib-src/make-path.c @@ -5,7 +5,7 @@ This file is part of GNU Emacs. 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 @@ int touchy_mkdir (path) { fprintf (stderr, "%s: ", prog_name); perror (path); - return -1; + return 1; } return 0;