Function: handle-args-function

handle-args-function is a byte-compiled function defined in startup.el.gz.

Signature

(handle-args-function ARGS)

Documentation

Method for processing window-system dependent command-line arguments.

Window system startup files should add their own function to this method, which should parse the command line arguments. Those pertaining to the window system should be processed and removed from the returned command line.

Implementations

(args (nil ((&context . window-system) eql 'nil))) in `startup.el'.

Undocumented

Source Code

;; Defined in /usr/src/emacs/lisp/startup.el.gz
(cl-defgeneric handle-args-function (args)
  "Method for processing window-system dependent command-line arguments.
Window system startup files should add their own function to this
method, which should parse the command line arguments.  Those
pertaining to the window system should be processed and removed
from the returned command line.")