Function: nneething-get-file-name

nneething-get-file-name is a byte-compiled function defined in nneething.el.gz.

Signature

(nneething-get-file-name ID)

Documentation

Extract the file name from the message ID string.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/nneething.el.gz
(defun nneething-get-file-name (id)
  "Extract the file name from the message ID string."
  (when (string-match "\\`<nneething-\\([^@]+\\)@.*>\\'" id)
    (nneething-decode-file-name (match-string 1 id))))