Function: lisp-comment-indent

lisp-comment-indent is a byte-compiled function defined in lisp-mode.el.gz.

Signature

(lisp-comment-indent)

Documentation

Like comment-indent-default, but don't put space after open paren.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/lisp-mode.el.gz
(defun lisp-comment-indent ()
  "Like `comment-indent-default', but don't put space after open paren."
  (or (when (looking-at "\\s<\\s<")
        (let ((pt (point)))
          (skip-syntax-backward " ")
          (if (eq (preceding-char) ?\()
              (cons (current-column) (current-column))
            (goto-char pt)
            nil)))
      (comment-indent-default)))