Mercurial > emacs
changeset 63522:96b14b14568b
(m2-for): Fix spellings.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Thu, 16 Jun 2005 16:24:28 +0000 |
parents | 0f90f64f45d8 |
children | 6a65d76dec01 |
files | lisp/progmodes/modula2.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/progmodes/modula2.el Thu Jun 16 16:23:46 2005 +0000 +++ b/lisp/progmodes/modula2.el Thu Jun 16 16:24:28 2005 +0000 @@ -309,7 +309,7 @@ "Build skeleton FOR loop statement, prompting for the loop parameters." (interactive) (insert "FOR ") - (let ((name (read-string "Loop Initialiser: ")) limit by) + (let ((name (read-string "Loop Initializer: ")) limit by) (insert name " TO ") (setq limit (read-string "Limit: ")) (insert limit)