Function: eudc-add-field-to-records
eudc-add-field-to-records is a byte-compiled function defined in
eudc.el.gz.
Signature
(eudc-add-field-to-records FIELD RECORDS)
Documentation
Add FIELD to each individual record in RECORDS and return the resulting list.
Source Code
;; Defined in /usr/src/emacs/lisp/net/eudc.el.gz
(defun eudc-add-field-to-records (field records)
"Add FIELD to each individual record in RECORDS and return the resulting list."
(mapcar (lambda (r)
(cons field r))
records))