cvs: php-lang / Language_Notation.txt
[email protected] ("Sascha Schumann")
| Newsgroups | php.lang |
|---|---|
| Message-ID | <cvssas974492693@cvsserver> |
sas Fri Nov 17 12:24:53 2000 EDT
Modified files:
/php-lang Language_Notation.txt
Log:
Terminals should be enclosed in single quotes.
Improve wording of the rationale slightly.
Index: php-lang/Language_Notation.txt
diff -u php-lang/Language_Notation.txt:1.2 php-lang/Language_Notation.txt:1.3
--- php-lang/Language_Notation.txt:1.2 Fri Nov 17 11:05:38 2000
+++ php-lang/Language_Notation.txt Fri Nov 17 12:24:53 2000
@@ -1,7 +1,8 @@
-Language Notation ($Date: 2000/11/17 19:05:38 $)
+Language Notation ($Date: 2000/11/17 20:24:53 $)
Non-terminals: Syntactic categories
- Terminals: Literal words and character set members
+ Terminals: Literal words and character set members,
+ enclosed in single quotes.
A colon (:) following a nonterminal introduces its
definition. Alternative definitions are listed on separate
@@ -17,13 +18,13 @@
hexadecimal-constant [integer-suffix]
octal-constant:
- 0
+ '0'
octal-constant octal-digit
octal-digit: one of
- 0 1 2 3 4 5 6 7
+ '0' '1' '2' '3' '4' '5' '6' '7'
- Rationale: The above description and examples have been taken
+ Rationale: The above description and examples were derived
from ISO C99. The excerpts have been modified to
compensate for the lack of italic types and
subscriptions.