Function: org-texinfo--find-verb-separator
org-texinfo--find-verb-separator is a byte-compiled function defined
in ox-texinfo.el.gz.
Signature
(org-texinfo--find-verb-separator S)
Documentation
Return a character not used in string S.
This is used to choose a separator for constructs like \verb.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-texinfo.el.gz
(defun org-texinfo--find-verb-separator (s)
"Return a character not used in string S.
This is used to choose a separator for constructs like \\verb."
(let ((ll "~,./?;':\"|!@#%^&-_=+abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ<>()[]{}"))
(cl-loop for c across ll
when (not (string-match (regexp-quote (char-to-string c)) s))
return (char-to-string c))))