Hi group,
Looking for Emacs expertise. While editing html files with Xemacs on my Fedora 23 Linux, every time I add a newline, Xemacs inserts a "<p>" in the old line. I have redefines my "Alt-Return" in my init.elc with this:
Code:
(defun my-return (arg)
"Make Xemacs return to beginning of next line"
(interactive "*p")
(next-line arg)
(beginning-of-line))
Any idea about stopping the insertion of the "<p>" while editing html files?