Discussion:
Unwanted spacing
(too old to reply)
db
2024-08-13 13:22:26 UTC
Permalink
I use emacs to produce and edit Fortran programs.
When I type a CRLF, emacs puts in a couple of spaces
even after the title line, which I follow with comment
lines. I want them to start with ! in the first position
but emacs puts it into the third.

How do I tell emacs to let me do the spacing myself?
--
db
Lawrence D'Oliveiro
2024-08-13 21:54:24 UTC
Permalink
Post by db
How do I tell emacs to let me do the spacing myself?
This seems to work for me:

(when (functionp 'electric-indent-mode)
(electric-indent-mode -1) ; disable new behaviour in Emacs 24 that interferes with my code
) ; when

(from <https://gitlab.com/ldo/emacs-prefs>)

Loading...