branch: externals/a68-mode
commit 69757f5ee00768d99caca0ab0be44245ee68f74f
Author: Jose E. Marchesi <[email protected]>
Commit: Jose E. Marchesi <[email protected]>
The right keyword is ELIF not ELSIF
---
a68-mode.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/a68-mode.el b/a68-mode.el
index 0f07e41e4b..c57dc6e50a 100644
--- a/a68-mode.el
+++ b/a68-mode.el
@@ -149,10 +149,10 @@
("IF" exp "THEN" insts "FI")
("IF" exp "THEN" insts "ELSE" insts "FI")
("IF" exp "THEN" insts
- "ELSIF" exp "THEN" insts "ELSE" insts "FI")
+ "ELIF" exp "THEN" insts "ELSE" insts "FI")
("IF" exp "THEN" insts
- "ELSIF" exp "THEN" insts
- "ELSIF" exp "THEN" insts "ELSE" insts "FI")
+ "ELIF" exp "THEN" insts
+ "ELIF" exp "THEN" insts "ELSE" insts "FI")
;; TODO OUSE for both case and conformity case
("CASE" exp "IN" fargs "ESAC")
("CASE" exp "IN" conformity-cases "ESAC")