Function: comment-string-reverse

comment-string-reverse is a byte-compiled function defined in newcomment.el.gz.

Signature

(comment-string-reverse S)

Documentation

Return the mirror image of string S, without any trailing space.

Source Code

;; Defined in /usr/src/emacs/lisp/newcomment.el.gz
(defun comment-string-reverse (s)
  "Return the mirror image of string S, without any trailing space."
  (comment-string-strip (concat (nreverse (string-to-list s))) nil t))