Function: url-http-symbol-value-in-buffer

url-http-symbol-value-in-buffer is a byte-compiled function defined in url-http.el.gz.

Signature

(url-http-symbol-value-in-buffer SYMBOL BUFFER &optional UNBOUND-VALUE)

Documentation

Return the value of SYMBOL in BUFFER, or UNBOUND-VALUE if it is unbound.

Source Code

;; Defined in /usr/src/emacs/lisp/url/url-http.el.gz
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; file-name-handler stuff from here on out
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defalias 'url-http-symbol-value-in-buffer
  (if (fboundp 'symbol-value-in-buffer)
      #'symbol-value-in-buffer
    (lambda (symbol buffer &optional unbound-value)
      "Return the value of SYMBOL in BUFFER, or UNBOUND-VALUE if it is unbound."
      (with-current-buffer buffer
        (if (not (boundp symbol))
            unbound-value
          (symbol-value symbol))))))