Function: x-dnd-handle-offix-file

x-dnd-handle-offix-file is a byte-compiled function defined in x-dnd.el.gz.

Signature

(x-dnd-handle-offix-file WINDOW ACTION STRING)

Documentation

Convert OffiX file name to a regular file name.

Then, call x-dnd-handle-file-name.

WINDOW and ACTION mean the same as in x-dnd-handle-file-name. STRING is the raw OffiX file name data.

Source Code

;; Defined in /usr/src/emacs/lisp/x-dnd.el.gz
(defun x-dnd-handle-offix-file (window action string)
  "Convert OffiX file name to a regular file name.
Then, call `x-dnd-handle-file-name'.

WINDOW and ACTION mean the same as in `x-dnd-handle-file-name'.
STRING is the raw OffiX file name data."
  (x-dnd-handle-file-name window action
                          (replace-regexp-in-string "\0$" "" string)))