Re: yacc spacing

2014-02-21 Thread Christian Groessler

On 02/21/14 09:52, Joerg Jung wrote:

Am 21.02.2014 um 03:54 schrieb Ted Unangst t...@tedunangst.com:


Otherwise it mostly replaces four spaces with a
tab



Isn't a TAB 8 characters?

regards,
chris



include isa.h in sys/arch/i386/i386/trap.c

2013-04-08 Thread Christian Groessler

Hi,

trap.c has a #if NISA  0 at line 504.

But NISA is never defined, so the code in the #if clause never gets 
compiled in.
This patch includes isa.h from the build directory in order to have the 
NISA definition.


regards,
chris



Index: sys/arch/i386/i386/trap.c
===
RCS file: /cvs/src/sys/arch/i386/i386/trap.c,v
retrieving revision 1.107
diff -u -r1.107 trap.c
--- sys/arch/i386/i386/trap.c   31 Dec 2012 06:44:11 -  1.107
+++ sys/arch/i386/i386/trap.c   8 Apr 2013 09:38:49 -
@@ -77,6 +77,7 @@
 #endif

 #include npx.h
+#include isa.h

 void trap(struct trapframe *);
 void syscall(struct trapframe *);