Home | History | Annotate | Download | only in progmodes

Lines Matching refs:point

130   ;; This should be the most common exit point;
145 ;; This should be second most common exit point;
170 (defun python-offset-indent (&aux char (point (point)))
172 (while (member (setq char (char-after point)) indent-spaces)
173 (incf point))
174 point)
179 (defun python-should-indent (options &aux point start end offset)
190 point (point)
191 start (scan point :eol :left)
192 end (scan point :eol :right))
196 (return-from python-should-indent (= point start)))
199 (and (= point start)
203 (and (= point (1+ start))
213 (return-from python-should-indent (or (= offset end) (= offset (1- point))))