Module Name: src
Committed By: rillig
Date: Fri Dec 31 00:01:03 UTC 2021
Modified Files:
src/usr.bin/make: nonints.h
Log Message:
make: list VarAssignOp in the same order as in the manual page
No functional change.
To generate a diff of this commit:
cvs rdiff -u -r1.225 -r1.226 src/usr.bin/make/nonints.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/make/nonints.h
diff -u src/usr.bin/make/nonints.h:1.225 src/usr.bin/make/nonints.h:1.226
--- src/usr.bin/make/nonints.h:1.225 Wed Dec 29 05:05:21 2021
+++ src/usr.bin/make/nonints.h Fri Dec 31 00:01:02 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: nonints.h,v 1.225 2021/12/29 05:05:21 rillig Exp $ */
+/* $NetBSD: nonints.h,v 1.226 2021/12/31 00:01:02 rillig Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1993
@@ -143,10 +143,10 @@ void Parse_End(void);
typedef enum VarAssignOp {
VAR_NORMAL, /* = */
- VAR_SUBST, /* := */
- VAR_SHELL, /* != or :sh= */
VAR_APPEND, /* += */
- VAR_DEFAULT /* ?= */
+ VAR_DEFAULT, /* ?= */
+ VAR_SUBST, /* := */
+ VAR_SHELL /* != or :sh= */
} VarAssignOp;
typedef struct VarAssign {