Variable: smart-asm-include-regexp
smart-asm-include-regexp is a variable defined in hmouse-tag.el.
Value
"[ *#|;]*\\(include\\|lib\\)[ ]+\\([^ \n
]+\\)"
Documentation
Regexp to match to assembly language include file lines.
Include keyword matched is grouping 1. File name is grouping 2 but may be
missing its suffix, so add ".ins" or ".inc" if need be.
Examples include:
INCLUDE GLOBALS
should jump to file "globals.ins"
lib conditionals_equ.inc
should include "conditionals_equ.inc"
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hmouse-tag.el
(defconst smart-asm-include-regexp
"[ \t*#|;]*\\(include\\|lib\\)[ \t]+\\([^ \t\n\r]+\\)"
"Regexp to match to assembly language include file lines.
Include keyword matched is grouping 1. File name is grouping 2 but may be
missing its suffix, so add \".ins\" or \".inc\" if need be.
Examples include:
INCLUDE GLOBALS
should jump to file \"globals.ins\"
lib conditionals_equ.inc
should include \"conditionals_equ.inc\"")