diff --git a/distrib/sets/lists/comp/mi b/distrib/sets/lists/comp/mi index e65d4cbec285..6beb55f0e9c3 100644 --- a/distrib/sets/lists/comp/mi +++ b/distrib/sets/lists/comp/mi @@ -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 diff --git a/share/misc/Makefile b/share/misc/Makefile index b7b3d3cd315a..cf9f44945e00 100644 --- a/share/misc/Makefile +++ b/share/misc/Makefile @@ -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 diff --git a/share/misc/operator b/share/misc/operator new file mode 100644 index 000000000000..003c436d055f --- /dev/null +++ b/share/misc/operator @@ -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