Function: nnweb-google-identity

nnweb-google-identity is a byte-compiled function defined in nnweb.el.gz.

Signature

(nnweb-google-identity URL)

Documentation

Return a unique identifier based on URL.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/nnweb.el.gz
(defun nnweb-google-identity (url)
  "Return a unique identifier based on URL."
  (if (string-match "selm=\\([^ &>]+\\)" url)
      (match-string 1 url)
    url))