Function: flymake-proc--fix-file-name

flymake-proc--fix-file-name is a byte-compiled function defined in flymake-proc.el.gz.

Signature

(flymake-proc--fix-file-name NAME)

Documentation

Replace all occurrences of \ with /.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/flymake-proc.el.gz
(defun flymake-proc--fix-file-name (name)
  "Replace all occurrences of `\\' with `/'."
  (when name
    (setq name (expand-file-name name))
    (setq name (abbreviate-file-name name))
    (setq name (directory-file-name name))
    name))