Function: gnus-expand-group-parameter

gnus-expand-group-parameter is a byte-compiled function defined in gnus.el.gz.

Signature

(gnus-expand-group-parameter MATCH VALUE GROUP)

Documentation

Use MATCH to expand VALUE in GROUP.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus.el.gz
(defun gnus-expand-group-parameter (match value group)
  "Use MATCH to expand VALUE in GROUP."
  (let ((start (string-match match group)))
    (if start
        (let ((matched-string (substring group start (match-end 0))))
          ;; Build match groups
          (string-match match matched-string)
          (replace-match value nil nil matched-string))
      group)))