;;; mobiquid-init.el --- Initialization file for mobiquid.el ;; Copyright (C) 2001 Florent Rougon ;; Author: Florent Rougon ;; Maintainer: Florent Rougon ;; Keywords: radio, mobiquid, mobiquid.com ;; Version: 0.4 ;; This program is free software; you can redistribute it and/or ;; modify it under the terms of the GNU General Public License as ;; published by the Free Software Foundation; either version 2 of ;; the License, or (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; GNU General Public License for more details. ;; You should have received a copy of the GNU General Public ;; License along with this program; if not, write to the Free ;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, ;; MA 02111-1307, USA. ;;; Commentary: ;; This file defines the autoloads and hooks for mobiquid.el. ;;; Installation: ;; The installation procedure is described in mobiquid.el. ;;; Code: (defvar mobiquid-after-browsing-hooks nil "*Abnormal hook run as the very last thing before `mobiquid' exits. Each function in this abnormal hook is passed the buffer *Mobiquid* as an argument. It can be used for example to display this buffer if you put the following line in your initialization file: (add-hook 'mobiquid-after-browsing-hooks 'switch-to-buffer-other-window)") (defvar mobiquid-browse-url-of-file-hook nil "*Hook used by `mobiquid' as `browse-url-of-file-hook'. When `mobiquid' is called, `browse-url-of-file-hook' is locally set to the value of `mobiquid-browse-url-of-file-hook' so that you can use a particular hook with browse-url for `mobiquid' calls.") (autoload 'mobiquid "mobiquid" "Lookup an artist and title from http://www.mobiquid.com" t) (provide 'mobiquid-init) ;;; mobiquid-init.el ends here