diff options
| author | David J. MacKenzie | 1994-02-27 03:38:56 +0000 |
|---|---|---|
| committer | David J. MacKenzie | 1994-02-27 03:38:56 +0000 |
| commit | 566c662e1c36eae197d5d54e0c7b148d5d374338 (patch) | |
| tree | a8972b3de4e9c0459a147ac63958858d71f0bfc7 /lib-src | |
| parent | 00345809045586c1cdf77dcffd6af6085f159852 (diff) | |
| download | emacs-566c662e1c36eae197d5d54e0c7b148d5d374338.tar.gz emacs-566c662e1c36eae197d5d54e0c7b148d5d374338.zip | |
* make-path.c (main): Return 1 on error, not -1. Update GPL.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/make-path.c | 4 |
1 files changed, 2 insertions, 2 deletions
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. | |||
| 5 | 5 | ||
| 6 | GNU Emacs is free software; you can redistribute it and/or modify | 6 | GNU Emacs is free software; you can redistribute it and/or modify |
| 7 | it under the terms of the GNU General Public License as published by | 7 | it under the terms of the GNU General Public License as published by |
| 8 | the Free Software Foundation; either version 1, or (at your option) | 8 | the Free Software Foundation; either version 2, or (at your option) |
| 9 | any later version. | 9 | any later version. |
| 10 | 10 | ||
| 11 | GNU Emacs is distributed in the hope that it will be useful, | 11 | GNU Emacs is distributed in the hope that it will be useful, |
| @@ -48,7 +48,7 @@ int touchy_mkdir (path) | |||
| 48 | { | 48 | { |
| 49 | fprintf (stderr, "%s: ", prog_name); | 49 | fprintf (stderr, "%s: ", prog_name); |
| 50 | perror (path); | 50 | perror (path); |
| 51 | return -1; | 51 | return 1; |
| 52 | } | 52 | } |
| 53 | 53 | ||
| 54 | return 0; | 54 | return 0; |