From: Juanma Barranquero Date: Thu, 16 Jun 2005 16:24:28 +0000 (+0000) Subject: (m2-for): Fix spellings. X-Git-Tag: emacs-pretest-22.0.90~8861 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2f3806694cf99ed0d208d2116d20d54b59e883a6;p=emacs.git (m2-for): Fix spellings. --- 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. "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)