diff options
Diffstat (limited to 'lisp/progmodes/vhdl-mode.el')
-rw-r--r-- | lisp/progmodes/vhdl-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/vhdl-mode.el b/lisp/progmodes/vhdl-mode.el index f85f4c4fada..5ed0ff0ebed 100644 --- a/lisp/progmodes/vhdl-mode.el +++ b/lisp/progmodes/vhdl-mode.el @@ -5713,7 +5713,7 @@ the offset is simply returned." (t nil))))) (defun vhdl-in-extended-identifier-p () - "Determine if point is inside extended identifier (delimited by '\')." + "Determine if point is inside extended identifier (delimited by ‘\\’)." (save-match-data (and (save-excursion (re-search-backward "\\\\" (vhdl-point 'bol) t)) (save-excursion (re-search-forward "\\\\" (vhdl-point 'eol) t))))) |