Skip to content

Commit bdd5431

Browse files
committed
; * bdx.el (bdx--untemplatize-string): Fix invalid escape in docstring.
1 parent a61fb68 commit bdd5431

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bdx.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ HISTORY can be a history variable."
499499
(defun bdx--untemplatize-string (str)
500500
"Remove C++ templates from STR.
501501
This turns a string of the form \\='function<type<T>>\\=' into
502-
\\'function<...>\\'."
502+
\\='function<...>\\='."
503503
(cl-loop with depth = 0
504504
for char across str
505505
if (eq char ?<) do (when (eq 1 (cl-incf depth))

0 commit comments

Comments
 (0)