aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorPaul Eggert2014-01-15 22:24:06 -0800
committerPaul Eggert2014-01-15 22:24:06 -0800
commitc91c771dbe242cd942c00a0a57c18c1482e59fa0 (patch)
treeabb6fcaf49f4bda5eda2443fb5a6f7531a8a2a74 /admin
parent7da02a6769e84cd0a9df8b1bc18ac78df1c0b058 (diff)
downloademacs-c91c771dbe242cd942c00a0a57c18c1482e59fa0.tar.gz
emacs-c91c771dbe242cd942c00a0a57c18c1482e59fa0.zip
Spelling fixes.
Diffstat (limited to 'admin')
-rw-r--r--admin/grammars/grammar.wy2
-rw-r--r--admin/grammars/js.wy8
2 files changed, 5 insertions, 5 deletions
diff --git a/admin/grammars/grammar.wy b/admin/grammars/grammar.wy
index a772c212360..4605e3c4f70 100644
--- a/admin/grammars/grammar.wy
+++ b/admin/grammars/grammar.wy
@@ -94,7 +94,7 @@
94%token <open-paren> LBRACE "{" 94%token <open-paren> LBRACE "{"
95%token <close-paren> RBRACE "}" 95%token <close-paren> RBRACE "}"
96 96
97;; Punctuations 97;; Punctuation
98%type <punctuation> 98%type <punctuation>
99%token <punctuation> COLON ":" 99%token <punctuation> COLON ":"
100%token <punctuation> SEMI ";" 100%token <punctuation> SEMI ";"
diff --git a/admin/grammars/js.wy b/admin/grammars/js.wy
index a01d64ec093..91dbff2330d 100644
--- a/admin/grammars/js.wy
+++ b/admin/grammars/js.wy
@@ -65,7 +65,7 @@
65 (start end &optional nonterminal depth returnonerror)) 65 (start end &optional nonterminal depth returnonerror))
66} 66}
67 67
68;; JAVE I prefere ecmascript-mode 68;; JAVE I preferred ecmascript-mode.
69%languagemode ecmascript-mode javascript-mode 69%languagemode ecmascript-mode javascript-mode
70 70
71;; The default goal 71;; The default goal
@@ -276,8 +276,8 @@ Statement : Block
276 | BreakStatement 276 | BreakStatement
277 | ReturnStatement 277 | ReturnStatement
278 | WithStatement 278 | WithStatement
279 ; 279 ;
280 280
281FunctionDeclaration : FUNCTION VARIABLE FormalParameterListBlock Block 281FunctionDeclaration : FUNCTION VARIABLE FormalParameterListBlock Block
282 (FUNCTION-TAG $2 nil $3) 282 (FUNCTION-TAG $2 nil $3)
283 ; 283 ;
@@ -353,7 +353,7 @@ IterationExpression : WHILE OPEN_PARENTHESIS Expression CLOSE_PARENTHESIS Statem
353ContinueStatement : CONTINUE SEMICOLON 353ContinueStatement : CONTINUE SEMICOLON
354 ; 354 ;
355 355
356;;JAVE break needs labels 356;;JAVE break needs labels
357BreakStatement : BREAK SEMICOLON 357BreakStatement : BREAK SEMICOLON
358 ;; | BREAK identifier SEMICOLON 358 ;; | BREAK identifier SEMICOLON
359 ; 359 ;