Module Name:    src
Committed By:   jruoho
Date:           Tue Jan 18 23:12:39 UTC 2011

Modified Files:
        src/distrib/sets/lists/comp: mi
        src/share/misc: Makefile
Added Files:
        src/share/misc: operator

Log Message:
The drama club has spoken. Put this killer feature of NetBSD back.


To generate a diff of this commit:
cvs rdiff -u -r1.1571 -r1.1572 src/distrib/sets/lists/comp/mi
cvs rdiff -u -r1.35 -r1.36 src/share/misc/Makefile
cvs rdiff -u -r0 -r1.3 src/share/misc/operator

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/distrib/sets/lists/comp/mi
diff -u src/distrib/sets/lists/comp/mi:1.1571 src/distrib/sets/lists/comp/mi:1.1572
--- src/distrib/sets/lists/comp/mi:1.1571	Tue Jan 18 22:21:22 2011
+++ src/distrib/sets/lists/comp/mi	Tue Jan 18 23:12:37 2011
@@ -1,4 +1,4 @@
-#	$NetBSD: mi,v 1.1571 2011/01/18 22:21:22 haad Exp $
+#	$NetBSD: mi,v 1.1572 2011/01/18 23:12:37 jruoho Exp $
 #
 # Note: don't delete entries from here - mark them as "obsolete" instead.
 #
@@ -22230,6 +22230,6 @@
 ./usr/share/misc/indent.pro			comp-util-share		share
 ./usr/share/misc/menu_sys.def			comp-c-share		share
 ./usr/share/misc/msg_sys.def			comp-c-share		share
-./usr/share/misc/operator			comp-obsolete		obsolete
+./usr/share/misc/operator			comp-c-share		share
 ./usr/share/misc/style				comp-c-share		share
 ./var/db/libc.tags                             comp-c-root

Index: src/share/misc/Makefile
diff -u src/share/misc/Makefile:1.35 src/share/misc/Makefile:1.36
--- src/share/misc/Makefile:1.35	Mon Jan 17 11:09:08 2011
+++ src/share/misc/Makefile	Tue Jan 18 23:12:38 2011
@@ -1,11 +1,11 @@
-#	$NetBSD: Makefile,v 1.35 2011/01/17 11:09:08 jruoho Exp $
+#	$NetBSD: Makefile,v 1.36 2011/01/18 23:12:38 jruoho Exp $
 #	@(#)Makefile	8.1 (Berkeley) 6/8/93
 
 NOOBJ=	# defined
 
 FILES=	NetBSD.el acronyms acronyms.comp airport ascii \
 	birthtoken bsd-family-tree \
-	country domains \
+	country domains operator \
 	eqnchar flowers indent.pro inter.phone language man.template \
 	mdoc.template na.phone na.postal style zipcodes
 FILESDIR=${BINDIR}/misc

Added files:

Index: src/share/misc/operator
diff -u /dev/null src/share/misc/operator:1.3
--- /dev/null	Tue Jan 18 23:12:39 2011
+++ src/share/misc/operator	Tue Jan 18 23:12:38 2011
@@ -0,0 +1,17 @@
+Operator			Associativity
+-----------------------------------------------
+() [] -> .			left to right
+! ~ ++ -- - (type) * & sizeof	right to left
+* / %				left to right
++ -				left to right
+<< >>				left to right
+< <= > >=			left to right
+== !=				left to right
+&				left to right
+^				left to right
+|				left to right
+&&				left to right
+||				left to right
+?:				right to left
+= += -= etc.			right to left
+,				left to right

Reply via email to