(url-mailto): Avoid warning.

This commit is contained in:
Stefan Monnier 2004-04-12 04:05:07 +00:00
parent bebcf94029
commit b81c0abbde

View file

@ -1,27 +1,30 @@
;;; url-mail.el --- Mail Uniform Resource Locator retrieval code ;;; url-mail.el --- Mail Uniform Resource Locator retrieval code
;; Copyright (c) 1996 - 1999 Free Software Foundation, Inc.
;; Copyright (c) 1993 - 1996 by William M. Perry <wmperry@cs.indiana.edu>
;; Keywords: comm, data, processes ;; Keywords: comm, data, processes
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; This file is part of GNU Emacs.
;;; Copyright (c) 1993 - 1996 by William M. Perry <wmperry@cs.indiana.edu> ;;
;;; Copyright (c) 1996 - 1999 Free Software Foundation, Inc. ;; GNU Emacs is free software; you can redistribute it and/or modify
;;; ;; it under the terms of the GNU General Public License as published by
;;; This file is part of GNU Emacs. ;; the Free Software Foundation; either version 2, or (at your option)
;;; ;; any later version.
;;; GNU Emacs is free software; you can redistribute it and/or modify ;;
;;; it under the terms of the GNU General Public License as published by ;; GNU Emacs is distributed in the hope that it will be useful,
;;; the Free Software Foundation; either version 2, or (at your option) ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;;; any later version. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;;; ;; GNU General Public License for more details.
;;; GNU Emacs is distributed in the hope that it will be useful, ;;
;;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; You should have received a copy of the GNU General Public License
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; along with GNU Emacs; see the file COPYING. If not, write to the
;;; GNU General Public License for more details. ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;;; ;; Boston, MA 02111-1307, USA.
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Emacs; see the file COPYING. If not, write to the ;;; Commentary:
;;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;;; Boston, MA 02111-1307, USA. ;;; Code:
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(eval-when-compile (require 'cl)) (eval-when-compile (require 'cl))
(require 'url-vars) (require 'url-vars)
@ -118,11 +121,12 @@
(cond ((eq url-mail-command 'compose-mail) (cond ((eq url-mail-command 'compose-mail)
(funcall (get mail-user-agent 'sendfunc) nil)) (funcall (get mail-user-agent 'sendfunc) nil))
;; otherwise, we can't be sure ;; otherwise, we can't be sure
((fboundp 'message-mail) ((fboundp 'message-send-and-exit)
(message-send-and-exit)) (message-send-and-exit))
(t (mail-send-and-exit nil))))) (t (mail-send-and-exit nil)))))
nil)) nil))
(provide 'url-mailto) (provide 'url-mailto)
;;; arch-tag: 7b7ad52e-8760-497b-9444-75fae14e34c5 ;; arch-tag: 7b7ad52e-8760-497b-9444-75fae14e34c5
;;; url-mailto.el ends here