Function: mhtml-forward

mhtml-forward is an interactive and byte-compiled function defined in mhtml-mode.el.gz.

Signature

(mhtml-forward ARG)

Documentation

Move point forward past a structured expression.

If point is on a tag, move to the end of the tag. Otherwise, this calls forward-sexp. Prefix arg specifies how many times to move (default 1).

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/mhtml-mode.el.gz
;; Support for hideshow.el (see `hs-forward-sexp-function').
(defun mhtml-forward (arg)
  "Move point forward past a structured expression.
If point is on a tag, move to the end of the tag.
Otherwise, this calls `forward-sexp'.
Prefix arg specifies how many times to move (default 1)."
  (interactive "P")
  (pcase (get-text-property (point) 'mhtml-submode)
    ('nil (sgml-skip-tag-forward arg))
    (_submode (forward-sexp arg))))