Variable: pr-filename-style

pr-filename-style is a customizable variable defined in printing.el.gz.

Value

unix

Documentation

Specify which filename style to use for external commands.

Valid values are:

   windows Windows 9x/NT style (\)

   unix Unix style (/)

Aliases

pr-path-style (obsolete since 27.1)

Source Code

;; Defined in /usr/src/emacs/lisp/printing.el.gz
(defcustom pr-filename-style
  (if (and (not pr-cygwin-system)
	   lpr-windows-system)
      'windows
    'unix)
  "Specify which filename style to use for external commands.

Valid values are:

   windows	Windows 9x/NT style (\\)

   unix		Unix style (/)"
  :type '(choice :tag "Filename style"
		 (const :tag "Windows 9x/NT Style (\\)" :value windows)
		 (const :tag "Unix Style (/)" :value unix)))