Function: files--name-absolute-system-p

files--name-absolute-system-p is a byte-compiled function defined in files.el.gz.

Signature

(files--name-absolute-system-p FILE)

Documentation

Return non-nil if FILE is an absolute name to the operating system.

This is like file-name-absolute-p, except that it returns nil for names beginning with ~.

Source Code

;; Defined in /usr/src/emacs/lisp/files.el.gz
(defun files--name-absolute-system-p (file)
  "Return non-nil if FILE is an absolute name to the operating system.
This is like `file-name-absolute-p', except that it returns nil for
names beginning with `~'."
  (and (file-name-absolute-p file)
       (not (eq (aref file 0) ?~))))