Function: x-handle-xrm-switch
x-handle-xrm-switch is a byte-compiled function defined in
common-win.el.gz.
Signature
(x-handle-xrm-switch SWITCH)
Source Code
;; Defined in /usr/src/emacs/lisp/term/common-win.el.gz
;; Handle the -xrm option.
(defun x-handle-xrm-switch (switch)
(unless (consp x-invocation-args)
(error "%s: missing argument to `%s' option" invocation-name switch))
(setq x-command-line-resources
(if (null x-command-line-resources)
(pop x-invocation-args)
(concat x-command-line-resources "\n" (pop x-invocation-args)))))