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

This commit is contained in:
jruoho 2011-01-18 23:12:37 +00:00
parent 4cf7c6b9fa
commit 98ee9a719f
3 changed files with 21 additions and 4 deletions

View File

@ -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. # 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/indent.pro comp-util-share share
./usr/share/misc/menu_sys.def comp-c-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/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 ./usr/share/misc/style comp-c-share share
./var/db/libc.tags comp-c-root ./var/db/libc.tags comp-c-root

View File

@ -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 # @(#)Makefile 8.1 (Berkeley) 6/8/93
NOOBJ= # defined NOOBJ= # defined
FILES= NetBSD.el acronyms acronyms.comp airport ascii \ FILES= NetBSD.el acronyms acronyms.comp airport ascii \
birthtoken bsd-family-tree \ birthtoken bsd-family-tree \
country domains \ country domains operator \
eqnchar flowers indent.pro inter.phone language man.template \ eqnchar flowers indent.pro inter.phone language man.template \
mdoc.template na.phone na.postal style zipcodes mdoc.template na.phone na.postal style zipcodes
FILESDIR=${BINDIR}/misc FILESDIR=${BINDIR}/misc

17
share/misc/operator Normal file
View File

@ -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