9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
From: erik quanstrom <quanstro@coraid.com>
To: 9fans@9fans.net
Subject: Re: [9fans] UTF and the preprocessor
Date: Mon, 30 Mar 2009 14:55:03 -0400	[thread overview]
Message-ID: <0a4210eab763d755c83895780bf505a5@coraid.com> (raw)
In-Reply-To: <138575260903300830q546ddabv46227554c3630688@mail.gmail.com>

others more qualified may disagree, but in this
case i think an enum would be preferred.  however,
there are some cases where an enum will not do.
for example,
#define prγ(γ, fmt, ...) if(γ >1.) print(fmt, __VA_ARGS__)

i think that this patch will do the trick.  i continued the
assumption that the the ctype macros are valid for any c,
even if !isascii(c).  this diff is hard to read, the source is
also at http://www.quanstro.net/plan9/macbody

/n/dump/2009/0330/sys/src/cmd/cc/lex.c:1029,1035 - lex.c:1029,1035
  	} else
  		c = GETC();
  	for(;;) {
- 		if(!isspace(c))
+ 		if(c >= Runeself || !isspace(c))
  			return c;
  		if(c == '\n') {
  			lineno++;
; diffy -c macbody
/n/dump/2009/0330/sys/src/cmd/cc/macbody:18,39 - macbody:18,44
  	return n;
  }

- Sym*
- getsym(void)
+ static void
+ nextsym(int c)
  {
- 	int c;
+ 	int c1;
  	char *cp;

- 	c = getnsc();
- 	if(!isalpha(c) && c != '_') {
- 		unget(c);
- 		return S;
- 	}
  	for(cp = symb;;) {
- 		if(cp <= symb+NSYMB-4)
- 			*cp++ = c;
+ 		if(c >= Runeself) {
+ 			for(c1=0;;) {
+ 				if(cp <= symb+NSYMB-4)
+ 					cp[c1++] = c;
+ 				if(fullrune(cp, c1))
+ 					break;
+ 				c = getc();
+ 			}
+ 			cp += c1;
+ 		}else
+ 			if(cp <= symb+NSYMB-4)
+ 				*cp++ = c;
  		c = getc();
- 		if(isalnum(c) || c == '_')
+ 		if(c >= Runeself || isalnum(c) || c == '_')
  			continue;
  		unget(c);
  		break;
/n/dump/2009/0330/sys/src/cmd/cc/macbody:41,46 - macbody:46,64
  	*cp = 0;
  	if(cp > symb+NSYMB-4)
  		yyerror("symbol too large: %s", symb);
+ }
+
+ Sym*
+ getsym(void)
+ {
+ 	int c;
+
+ 	c = getnsc();
+ 	if(c < Runeself && !isalpha(c) && c != '_') {
+ 		unget(c);
+ 		return S;
+ 	}
+ 	nextsym(c);
  	return lookup();
  }

/n/dump/2009/0330/sys/src/cmd/cc/macbody:193,199 - macbody:211,217
  macdef(void)
  {
  	Sym *s, *a;
- 	char *args[NARG], *np, *base;
+ 	char *args[NARG], *base;
  	int n, i, c, len, dots;
  	int ischr;

/n/dump/2009/0330/sys/src/cmd/cc/macbody:235,249 - macbody:253,261
  	len = 1;
  	ischr = 0;
  	for(;;) {
- 		if(isalpha(c) || c == '_') {
- 			np = symb;
- 			*np++ = c;
+ 		if(c >= Runeself || isalpha(c) || c == '_') {
+ 			nextsym(c);
  			c = getc();
- 			while(isalnum(c) || c == '_') {
- 				*np++ = c;
- 				c = getc();
- 			}
- 			*np = 0;
  			for(i=0; i<n; i++)
  				if(strcmp(symb, args[i]) == 0)
  					break;
/n/dump/2009/0330/sys/src/cmd/cc/macbody:660,666 - macbody:672,678
  	for(;;) {
  		c = getc();
  		if(c != '#') {
- 			if(!isspace(c))
+ 			if(c >= Runeself || !isspace(c))
  				bol = 0;
  			if(c == '\n')
  				bol = 1;



      parent reply	other threads:[~2009-03-30 18:55 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-03-30 15:30 hugo rivera
2009-03-30 15:45 ` andrey mirtchovski
2009-03-30 18:55 ` erik quanstrom [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=0a4210eab763d755c83895780bf505a5@coraid.com \
    --to=quanstro@coraid.com \
    --cc=9fans@9fans.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).