Function: sgml-maybe-name-self

sgml-maybe-name-self is an interactive and byte-compiled function defined in sgml-mode.el.gz.

Signature

(sgml-maybe-name-self)

Documentation

Insert a symbolic character name according to sgml-char-names.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/sgml-mode.el.gz
(defun sgml-maybe-name-self ()
  "Insert a symbolic character name according to `sgml-char-names'."
  (interactive "*")
  (if sgml-name-8bit-mode
      (sgml-name-char last-command-event)
    (self-insert-command 1)))