Function: ps-get

ps-get is a byte-compiled function defined in ps-print.el.gz.

This function is obsolete since 25.1; use alist-get instead.

Signature

(ps-get ALIST-SYM KEY)

Documentation

Return element from association list ALIST-SYM which car is eq to KEY.

Probably introduced at or before Emacs version 20.1.

Source Code

;; Defined in /usr/src/emacs/lisp/ps-print.el.gz
(defun ps-get (alist-sym key)
  "Return element from association list ALIST-SYM which car is `eq' to KEY."
  (declare (obsolete alist-get "25.1"))
  (assq key (symbol-value alist-sym)))