Function: opascal-comment-content-start
opascal-comment-content-start is a byte-compiled function defined in
opascal.el.gz.
Signature
(opascal-comment-content-start COMMENT)
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/opascal.el.gz
(defun opascal-comment-content-start (comment)
;; Returns the point of the first non-space character in the comment.
(let ((kind (opascal-token-kind comment)))
(when (memq kind opascal-comments)
(opascal-save-excursion
(goto-char (+ (opascal-token-start comment)
(length (opascal-literal-start-pattern kind))))
(skip-chars-forward opascal-space-chars)
(point)))))