summaryrefslogtreecommitdiff
path: root/admin
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2019-06-18 02:42:44 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2019-06-18 11:33:40 +0200
commit010db58e03cbd7e65576cc107db08ebd2ab4086d (patch)
tree3a4b7410229e7e80ea7819d503d92823456e3316 /admin
parent1b855aa8dd0cf41e515fcec1083196b60e98aafe (diff)
downloademacs-010db58e03cbd7e65576cc107db08ebd2ab4086d.tar.gz
Comment out useless nonterminals from python.wy
Diffstat (limited to 'admin')
-rw-r--r--admin/grammars/python.wy21
1 files changed, 11 insertions, 10 deletions
diff --git a/admin/grammars/python.wy b/admin/grammars/python.wy
index 695e612942a..082850df59c 100644
--- a/admin/grammars/python.wy
+++ b/admin/grammars/python.wy
@@ -1147,16 +1147,17 @@ fpdef
;; (identity $2)
;
-;; fplist: fpdef (',' fpdef)* [',']
-fplist
- : fpdef_list comma_opt
- ;
-
-;; fpdef (',' fpdef)*
-fpdef_list
- : fpdef
- | fpdef_list COMMA fpdef
- ;
+;; These rules are now useless because the above rule doesn't refer to them.
+;; ;; fplist: fpdef (',' fpdef)* [',']
+;; fplist
+;; : fpdef_list comma_opt
+;; ;
+
+;; ;; fpdef (',' fpdef)*
+;; fpdef_list
+;; : fpdef
+;; | fpdef_list COMMA fpdef
+;; ;
;; ['=' test]
eq_test_opt