Seiichiro Tanizaki wrote:

> Specifically, ESC n with "*" or "-" only repeat the character once,
> but not n times. It works fine for other characters. Would someone
> help me figuring out this? I use Emacs version 21.2.1 on linux.

That's a bug in f90.el, which will be fixed in future versions. In the
meantime, add the following to your .emacs to correct it:

(eval-after-load "f90"
  '(defun f90-electric-insert (&optional arg)
     "Change keyword case and auto-fill line as operators are inserted."
     (interactive "*p")
     (self-insert-command arg)
     (if auto-fill-function (f90-do-auto-fill)
       (f90-update-line))))
_______________________________________________
Help-gnu-emacs mailing list
Help-gnu-emacs@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gnu-emacs

Reply via email to