Lines Matching defs:should
52 ;; This should default to T when newline-indent is not NIL.
65 ;; should be working properly.
130 ;; This should be the most common exit point;
145 ;; This should be second most common exit point;
179 (defun python-should-indent (options &aux point start end offset)
187 (return-from python-should-indent))
194 ;; if at bol and should indent only when starting a line
196 (return-from python-should-indent (= point start)))
200 (return-from python-should-indent (gethash :newline-indent options)))
204 (return-from python-should-indent t))
213 (return-from python-should-indent (or (= offset end) (= offset (1- point))))
218 (compile 'python-should-indent)
226 (or (python-should-indent options) (return-from python-indent))