diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-05-30 22:56:31 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-05-30 22:56:31 +0000 |
commit | e0bb8cded96d34c0ade8b3438a5e018ccadf0841 (patch) | |
tree | feffbff8d2b763fe3cdf33817a5a78e8dc0f734e /lisp/mh-e.el | |
parent | 96160d2122d68d414fecdeb8418f98476d2c3709 (diff) | |
download | emacs-e0bb8cded96d34c0ade8b3438a5e018ccadf0841.tar.gz |
(mh-signature-file-name): New variable.
mh-e version 3.8.2.
Diffstat (limited to 'lisp/mh-e.el')
-rw-r--r-- | lisp/mh-e.el | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/lisp/mh-e.el b/lisp/mh-e.el index f4ef521a1b0..c426feb0b8d 100644 --- a/lisp/mh-e.el +++ b/lisp/mh-e.el @@ -2,10 +2,10 @@ ;;; Copyright (C) 1985, 86, 87, 88, 90, 92, 93 Free Software Foundation -(defconst mh-e-time-stamp "Time-stamp: <93/05/27 18:02:50 gildea>") +(defconst mh-e-time-stamp "Time-stamp: <93/05/30 18:37:43 gildea>") ;; Maintainer: Stephen Gildea <gildea@lcs.mit.edu> -;; Version: 3.8.1 +;; Version: 3.8.2 ;; Keywords: mail ;; GNU Emacs is distributed in the hope that it will be useful, @@ -48,7 +48,7 @@ ;;; Modified by James Larus, BBN, July 1984 and UCB, 1984 & 1985. ;;; Rewritten for GNU Emacs, James Larus 1985. larus@ginger.berkeley.edu ;;; Modified by Stephen Gildea 1988. gildea@bbn.com -(defconst mh-e-RCS-id "$Header: mh-e.el,v 3.9 93/01/11 11:49:18 gildea Exp $") +(defconst mh-e-RCS-id "$Header: mh-e.el,v 3.6.1.1 93/05/30 07:36:57 gildea Exp $") ;;; Code: @@ -174,6 +174,10 @@ value and it should be one of \"from\", \"to\", or \"cc\".") (defvar mh-unshar-default-directory "" "*Default for directory name prompted for by mh-unshar-msg.") +(defvar mh-signature-file-name "~/.signature" + "*Name of file containing the user's signature. +Inserted into message by \\<mh-letter-mode-map>\\[mh-insert-signature].") + ;;; Parameterize mh-e to work with different scan formats. The defaults work ;;; with the standard MH scan listings. @@ -1824,6 +1828,9 @@ Variables controlling this mode (defaults in parentheses): If nil, only the portion of the message following the point will be yanked. If there is a region, this variable is ignored. + mh-signature-file-name (\"~/.signature\") + File to be inserted into message by \\[mh-insert-signature]. + Upon invoking mh-letter-mode, text-mode-hook and mh-letter-mode-hook are invoked with no args, if those values are non-nil. @@ -1913,9 +1920,9 @@ Prompt for the field name with a completion list of the current folders." (defun mh-insert-signature () - "Insert the file ~/.signature at the current point." + "Insert the file named by mh-signature-file-name at the current point." (interactive) - (insert-file-contents "~/.signature") + (insert-file-contents mh-signature-file-name) (set-buffer-modified-p (buffer-modified-p))) ; force mode line update @@ -2924,4 +2931,3 @@ Assumes that any filename that starts with '+' is a folder name." (provide 'mh-e) ;;; mh-e.el ends here - |