Variable: bib-dos-or-os2-variable

bib-dos-or-os2-variable is a customizable variable defined in bib-cite.el.

Value

nil

Documentation

Whether you use DOS or OS/2 for bib-make-bibliography/bib-display.

It tells bib-make-bibliography and bib-display to translate the BIBINPUTS environment variable using the ";" character as a path separator and to translate DOS' backslash to slash.

e.g. Use a path like "c:\\emtex\\bibinput;c:\\latex\\bibinput"

(You can change the environment variable which is searched by
setting the elisp variable bib-bibtex-env-variable)

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/bib-cite.el
(defcustom bib-dos-or-os2-variable (or (equal 'emx system-type)
                                       (equal 'ms-dos system-type))
  ;; Under OS/2 system-type equals emx
  ;; Under DOS  system-type equals ms-dos
  "Whether you use DOS or OS/2 for bib-make-bibliography/bib-display.

It tells `bib-make-bibliography' and `bib-display' to translate
the BIBINPUTS environment variable using the \";\" character as
a path separator and to translate DOS' backslash to slash.

e.g. Use a path like \"c:\\emtex\\bibinput;c:\\latex\\bibinput\"

\(You can change the environment variable which is searched by
setting the elisp variable `bib-bibtex-env-variable')"
  :type 'boolean)