Variable: idlwave-pad-keyword
idlwave-pad-keyword is a customizable variable defined in
idlwave.el.gz.
Value
t
Documentation
Non-nil means pad = in keywords (routine calls or defs) like assignment.
Whenever idlwave-surround is non-nil then this affects how = is
padded for keywords and for variables. If t, pad the same as for
assignments. If nil then spaces are removed. With any other value,
spaces are left unchanged.
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/idlwave.el.gz
(defcustom idlwave-pad-keyword t
"Non-nil means pad `=' in keywords (routine calls or defs) like assignment.
Whenever `idlwave-surround' is non-nil then this affects how `=' is
padded for keywords and for variables. If t, pad the same as for
assignments. If nil then spaces are removed. With any other value,
spaces are left unchanged."
:group 'idlwave-abbrev-and-indent-action
:type '(choice
(const :tag "Pad like assignments" t)
(const :tag "Remove space near `='" nil)
(other :tag "Keep space near `='" keep)))