;;; mail-this-buffer.el ;;; ;;; Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, ;;; 2004, 2007, 2008 Thien-Thi Nguyen ;;; ;;; This file is part of ttn's personal elisp library, released under ;;; the terms of the GNU General Public License as published by the ;;; Free Software Foundation; either version 3, or (at your option) any ;;; later version. There is NO WARRANTY. See file COPYING for details. ;;; Description: Simple keyboard macro to prepare mail buffer from current. ;;; Remember to hit `C-c C-c' to actually send the mail. ;;;###autoload (fset 'mail-this-buffer "\C-xh\M-w\M-xmail\C-m\C-c\C-t\C-y\C-c\C-f\C-t") (provide 'mail-this-buffer) ;;; mail-this-buffer.el ends here