+2009-10-02 Kevin Ryde <user42@zip.com.au>
+
+ * net/browse-url.el (browse-url): Pass any symbol in
+ browse-url-browser-function to `apply', since if you've mistakenly put
+ an unbound symbol then the error is clearer. (Bug#4531)
+
2009-10-02 Juanma Barranquero <lekktu@gmail.com>
* allout.el (allout-init, allout-back-to-current-heading)
;; which may not even exist any more.
(if (stringp (frame-parameter (selected-frame) 'display))
(setenv "DISPLAY" (frame-parameter (selected-frame) 'display)))
- (if (functionp browse-url-browser-function)
+ ;; Send any symbol to `apply', not just fboundp ones, since void-function
+ ;; from apply is clearer than wrong-type-argument from dolist.
+ (if (or (symbolp browse-url-browser-function)
+ (functionp browse-url-browser-function))
(apply browse-url-browser-function url args)
;; The `function' can be an alist; look down it for first match
;; and apply the function (which might be a lambda).