help-gnu-emacs
[Top][All Lists]
Advanced

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

Re: How to pipe text or load a file directly into mail-mode?


From: Ralf Fassel
Subject: Re: How to pipe text or load a file directly into mail-mode?
Date: Tue, 09 May 2006 13:48:47 +0200
User-agent: Gnus/5.1006 (Gnus v5.10.6) XEmacs/21.5 (chestnut, linux)

* Adam Funk <a24061@yahoo.com>
|     $status = system('emacs', '-nw', $edit_file, '-f', ' mail-mode');
--<snip-snip>--
| and "Symbol's function definition is void: \ mail-mode" in the

Get rid of the leading space in the last argument of the system()
invocation:
' mail-mode'
=>
'mail-mode'

R'


reply via email to

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