]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/textmodes/sgml-mode.el (sgml-mode): Set skeleton-end-newline to nil.
authorJuri Linkov <juri@linkov.net>
Wed, 29 Dec 2021 18:52:11 +0000 (20:52 +0200)
committerJuri Linkov <juri@linkov.net>
Wed, 29 Dec 2021 18:52:11 +0000 (20:52 +0200)
Prevent skeleton.el from adding a newline to each inserted
skeleton.  Those which do want a newline do that explicitly in
their define-skeleton form.  This is what texinfo-mode does (bug#52864).

lisp/textmodes/sgml-mode.el

index cae1fecebccfc4db927565434a912daa38a6f8e1..3acf0e8965c900a28bf10bcfaae46e17e58bbd16 100644 (file)
@@ -624,6 +624,7 @@ Do \\[describe-key] on the following bindings to discover what they do.
   (setq-local comment-indent-function 'sgml-comment-indent)
   (setq-local comment-line-break-function 'sgml-comment-indent-new-line)
   (setq-local skeleton-further-elements '((completion-ignore-case t)))
+  (setq-local skeleton-end-newline nil)
   (setq-local skeleton-end-hook
              (lambda ()
                (or (eolp)