]> git.eshelyaron.com Git - emacs.git/commitdiff
(m2-for): Fix spellings.
authorJuanma Barranquero <lekktu@gmail.com>
Thu, 16 Jun 2005 16:24:28 +0000 (16:24 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Thu, 16 Jun 2005 16:24:28 +0000 (16:24 +0000)
lisp/progmodes/modula2.el

index 5fd3dbcb11bb7c8b822b090f00fb95dfe8e2601f..802ed26eb1fa83d89755204bb8e7a3d6268737f0 100644 (file)
@@ -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)