Variable: server-eval-args-left

server-eval-args-left is a variable defined in server.el.gz.

Value

nil

Documentation

List of eval args not yet processed.

Adding or removing strings from this variable while the Emacs server is processing a series of eval requests will affect what Emacs evaluates.

This list includes empty strings if empty string arguments were passed when invoking emacsclient.

See also argv for a similar variable which works for invocations of "emacs".

View in manual

Probably introduced at or before Emacs version 30.1.

Source Code

;; Defined in /usr/src/emacs/lisp/server.el.gz
(defvar server-eval-args-left nil
  "List of eval args not yet processed.

Adding or removing strings from this variable while the Emacs
server is processing a series of eval requests will affect what
Emacs evaluates.

This list includes empty strings if empty string arguments were passed
when invoking emacsclient.

See also `argv' for a similar variable which works for
invocations of \"emacs\".")