diff options
| author | Juanma Barranquero | 2005-06-16 16:24:28 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2005-06-16 16:24:28 +0000 |
| commit | 2f3806694cf99ed0d208d2116d20d54b59e883a6 (patch) | |
| tree | 237b6dfbdeefa23fece8b79d972d4c5a47c04613 | |
| parent | 98d9090497383f938d3349e5c313cf50a8b419b7 (diff) | |
| download | emacs-2f3806694cf99ed0d208d2116d20d54b59e883a6.tar.gz emacs-2f3806694cf99ed0d208d2116d20d54b59e883a6.zip | |
(m2-for): Fix spellings.
| -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) |