# HG changeset patch # User Juanma Barranquero # Date 1118939068 0 # Node ID 96b14b14568b4495c86049fc83eca806cd492591 # Parent 0f90f64f45d8e7ed5972753ba1c09359283374c1 (m2-for): Fix spellings. diff -r 0f90f64f45d8 -r 96b14b14568b lisp/progmodes/modula2.el --- 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)