Function: toolbarx-process-group-without-insert

toolbarx-process-group-without-insert is a byte-compiled function defined in toolbar-x.el.

Signature

(toolbarx-process-group-without-insert GROUP-WITHOUT-PROPS MERGED-PROPS-WITHOUT-INSERT MEANING-ALIST SWITCHES)

Documentation

Return an updated version of SWITCHES.

GROUP-WITHOUT-PROPS and MERGED-PROPS-WITHOUT-INSERT are preprocessed variables in toolbarx-process-group.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/toolbar-x.el
(defun toolbarx-process-group-without-insert (group-without-props
                                              merged-props-without-insert
                                              meaning-alist switches)
  "Return an updated version of SWITCHES.
GROUP-WITHOUT-PROPS and MERGED-PROPS-WITHOUT-INSERT are
preprocessed variables in `toolbarx-process-group'."
  (let ((current-switches switches))
    (dolist (i group-without-props current-switches)
      (setq i (toolbarx-option-value i))
      (if (symbolp i)
          (setq current-switches
                (toolbarx-process-symbol i meaning-alist
                                         merged-props-without-insert
                                         current-switches))
        (when (listp i)
          (setq current-switches
                (toolbarx-process-group i meaning-alist
                                        merged-props-without-insert
                                        current-switches)))))))