Variable: edt-xserver
edt-xserver is a variable defined in edt-mapper.el.gz.
Value
nil
Documentation
Indicates X server vendor name, if applicable.
Source Code
;; Defined in /usr/src/emacs/lisp/emulation/edt-mapper.el.gz
(defconst edt-xserver (when (eq window-system 'x)
(declare-function x-server-vendor "xfns.c"
(&optional terminal))
;; The Cygwin window manager has a `/' in its
;; name, which breaks the generated file name of
;; the custom key map file. Replace `/' with a
;; `-' to work around that.
(replace-regexp-in-string "[ /]" "-"
(x-server-vendor)))
"Indicates X server vendor name, if applicable.")