>>107642697
The char literal probably confuses org-mode.
What about:
(let ((begin (if (char-equal 40 (char-after))
(point)
(backward-list)
(point)))
(end (progn (forward-list) (point)))
(sexps (sexp-at-point))))
with char literal:
(let ((begin (if (char-equal ?\( (char-after))
(point)
(backward-list)
Comment too long. Click here to view the full text.