Variable: texinfo-format-kbd-end-regexp

texinfo-format-kbd-end-regexp is a variable defined in texinfmt.el.gz.

Value

"^@end \\(display\\|example\\|smallexample\\|lisp\\|smalllisp\\)"

Documentation

Regexp specifying end of environments in which @kbd does not put ... around argument.

See texinfo-format-kbd-regexp.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/texinfmt.el.gz
(defvar texinfo-format-kbd-end-regexp
  (concat
   "^@end "
   "\\("
   "display\\|"
   "example\\|"
   "smallexample\\|"
   "lisp\\|"
   "smalllisp"
   "\\)")
  "Regexp specifying end of environments in which @kbd does not put `...'
around argument.

See `texinfo-format-kbd-regexp'.")