Variable: hs-block-end-regexp

hs-block-end-regexp is a buffer-local variable defined in hideshow.el.gz.

Documentation

Regexp for end of block.

This is mostly used to determine if point is at the end of the block.

As a special case, it can be nil (to use the position from hs-forward-sexp-function), or a function without arguments. If it's a function, it should return non-nil if point is at end of a block, and set match-data to that position.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/hideshow.el.gz
(defvar-local hs-block-end-regexp "\\s)"
  "Regexp for end of block.
This is mostly used to determine if point is at the end of the block.

As a special case, it can be nil (to use the position from
`hs-forward-sexp-function'), or a function without arguments.  If it's a
function, it should return non-nil if point is at end of a block, and
set `match-data' to that position.")