Mercurial > hg > xemacs
view shared/xml-hack.el @ 33:ce71d12b00ad
don't load gnus-init etc. if mail is not expected
author | Henry S Thompson <ht@inf.ed.ac.uk> |
---|---|
date | Sun, 08 Oct 2023 17:42:52 +0100 |
parents | 107d592c5f4a |
children |
line wrap: on
line source
(defun sgml-tag-again () "Insert another of the tag we're in as sibling" (interactive ) (let ((elt (sgml-element-name (sgml-find-element-of (point))))) (sgml-up-element) (sgml-insert-element elt))) (define-key sgml-mode-map "\C-cn" 'sgml-tag-again)