Function: ruby--at-indentation-p

ruby--at-indentation-p is a byte-compiled function defined in ruby-mode.el.gz.

Signature

(ruby--at-indentation-p &optional POINT)

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/ruby-mode.el.gz
(defun ruby--at-indentation-p (&optional point)
  (save-excursion
    (unless point (setq point (point)))
    (forward-line 0)
    (skip-chars-forward " \t")
    (eq (point) point)))