Function: org-latex--find-verb-separator
org-latex--find-verb-separator is a byte-compiled function defined in
ox-latex.el.gz.
Signature
(org-latex--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-latex.el.gz
(defun org-latex--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))))