Remove /usr/share/misc/operator.

This commit is contained in:
jruoho 2011-01-17 11:09:06 +00:00
parent 50078c4d66
commit 5e8dd2b4e9
3 changed files with 4 additions and 21 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: mi,v 1.1567 2011/01/14 18:12:47 njoly Exp $
# $NetBSD: mi,v 1.1568 2011/01/17 11:09:06 jruoho Exp $
#
# Note: don't delete entries from here - mark them as "obsolete" instead.
#
@ -22215,6 +22215,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-c-share share
./usr/share/misc/operator comp-obsolete obsolete
./usr/share/misc/style comp-c-share share
./var/db/libc.tags comp-c-root

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.34 2009/12/15 03:38:58 christos Exp $
# $NetBSD: Makefile,v 1.35 2011/01/17 11:09:08 jruoho Exp $
# @(#)Makefile 8.1 (Berkeley) 6/8/93
NOOBJ= # defined
@ -7,7 +7,7 @@ FILES= NetBSD.el acronyms acronyms.comp airport ascii \
birthtoken bsd-family-tree \
country domains \
eqnchar flowers indent.pro inter.phone language man.template \
mdoc.template na.phone na.postal operator style zipcodes
mdoc.template na.phone na.postal style zipcodes
FILESDIR=${BINDIR}/misc

View File

@ -1,17 +0,0 @@
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