Lines Matching defs:options
36 (defsynoptions *python-DEFAULT-options*
179 (defun python-should-indent (options &aux point start end offset)
180 (when (hash-table-p options)
182 (and (gethash :trim-blank-lines options)
186 (and (gethash :disable-indent options)
195 (and (gethash :only-newline-indent options)
200 (return-from python-should-indent (gethash :newline-indent options)))
223 ((options (syntax-options syntax))
226 (or (python-should-indent options) (return-from python-indent))
228 *base-indent* (gethash :indentation options 4))
233 (gethash :emulate-tabs options))))
239 (defvar *python-mode-options* *python-DEFAULT-options*)
243 (defsyntax *python-mode* :main nil #'python-indent *python-mode-options*