diff options
| -rw-r--r-- | lisp/progmodes/modula2.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/modula2.el b/lisp/progmodes/modula2.el index 5fd3dbcb11b..802ed26eb1f 100644 --- a/lisp/progmodes/modula2.el +++ b/lisp/progmodes/modula2.el | |||
| @@ -309,7 +309,7 @@ followed by the first character of the construct. | |||
| 309 | "Build skeleton FOR loop statement, prompting for the loop parameters." | 309 | "Build skeleton FOR loop statement, prompting for the loop parameters." |
| 310 | (interactive) | 310 | (interactive) |
| 311 | (insert "FOR ") | 311 | (insert "FOR ") |
| 312 | (let ((name (read-string "Loop Initialiser: ")) limit by) | 312 | (let ((name (read-string "Loop Initializer: ")) limit by) |
| 313 | (insert name " TO ") | 313 | (insert name " TO ") |
| 314 | (setq limit (read-string "Limit: ")) | 314 | (setq limit (read-string "Limit: ")) |
| 315 | (insert limit) | 315 | (insert limit) |