Variable: texinfo-format-kbd-regexp
texinfo-format-kbd-regexp is a variable defined in texinfmt.el.gz.
Value
"^@\\(display\\|example\\|smallexample\\|lisp\\|smalllisp\\)"
Documentation
Regexp matching environments in which @kbd does not put ... around arg.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/texinfmt.el.gz
;;; @kbd
;; Inside of @example ... @end example and similar environments,
;; @kbd does nothing; but outside of such environments, it places
;; single quotation marks around its argument.
(defvar texinfo-format-kbd-regexp
(concat
"^@"
"\\("
"display\\|"
"example\\|"
"smallexample\\|"
"lisp\\|"
"smalllisp"
"\\)")
"Regexp matching environments in which @kbd does not put `...' around arg.")