Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
d694ccd7
Commit
d694ccd7
authored
Apr 11, 2005
by
Glenn Morris
Browse files
(f90-electric-insert): Add optional prefix arg, and pass to
self-insert-command.
parent
055e0d88
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
lisp/progmodes/f90.el
lisp/progmodes/f90.el
+3
-3
No files found.
lisp/progmodes/f90.el
View file @
d694ccd7
...
...
@@ -1055,10 +1055,10 @@ block[ \t]*data\\)\\>")
(f90-change-keywords f90-auto-keyword-case
(line-beginning-position) (line-end-position))))
(defun f90-electric-insert ()
(defun f90-electric-insert (
&optional arg
)
"Change keyword case and auto-fill line as operators are inserted."
(interactive)
(self-insert-command
1
)
(interactive
"*p"
)
(self-insert-command
arg
)
(if auto-fill-function (f90-do-auto-fill) ; also updates line
(f90-update-line)))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment