Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src The drama club has spoken. Put this killer feature of NetBSD...
details: https://anonhg.NetBSD.org/src/rev/c1279199d97e
branches: trunk
changeset: 761023:c1279199d97e
user: jruoho <jruoho%NetBSD.org@localhost>
date: Tue Jan 18 23:12:37 2011 +0000
description:
The drama club has spoken. Put this killer feature of NetBSD back.
diffstat:
distrib/sets/lists/comp/mi | 4 ++--
share/misc/Makefile | 4 ++--
share/misc/operator | 17 +++++++++++++++++
3 files changed, 21 insertions(+), 4 deletions(-)
diffs (55 lines):
diff -r 12b6ecf11790 -r c1279199d97e distrib/sets/lists/comp/mi
--- a/distrib/sets/lists/comp/mi Tue Jan 18 23:03:29 2011 +0000
+++ b/distrib/sets/lists/comp/mi Tue Jan 18 23:12:37 2011 +0000
@@ -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 -r 12b6ecf11790 -r c1279199d97e share/misc/Makefile
--- a/share/misc/Makefile Tue Jan 18 23:03:29 2011 +0000
+++ b/share/misc/Makefile Tue Jan 18 23:12:37 2011 +0000
@@ -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 -r 12b6ecf11790 -r c1279199d97e share/misc/operator
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/share/misc/operator Tue Jan 18 23:12:37 2011 +0000
@@ -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
Home |
Main Index |
Thread Index |
Old Index