emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: 23.0.50; [message-send-mail-function] wrong description and regressi


From: Katsumi Yamaoka
Subject: Re: 23.0.50; [message-send-mail-function] wrong description and regression
Date: Wed, 21 Nov 2007 09:11:50 +0900
User-agent: Gnus/5.110007 (No Gnus v0.7) Emacs/23.0.60 (gnu/linux)

>>>>> Andreas Schwab wrote:

> (defun message-send-mail-function ()
>   "Return suitable value for the variable `message-send-mail-function'."
>   (cond ((and sendmail-program
>         (executable-find program))
>                          ^^^^^^^
> Should be sendmail-program?

This doesn't fix it.  While `make bootstrap' I got:

Compiling /Work/emacs/lisp/./mh-e/mh-show.el
In toplevel form:
mh-e/mh-show.el:43:1:Error: Symbol's value as variable is void: sendmail-program

Maybe it should be:

(defun message-send-mail-function ()
  "Return suitable value for the variable `message-send-mail-function'."
  (cond ((and (boundp 'sendmail-program) sendmail-program)
              (executable-find sendmail-program))






reply via email to

[Prev in Thread] Current Thread [Next in Thread]