[gnus git] branch master updated: m0-5-291-g4fab40d =1= * mml.el (mml-minibuffer-read-description): Allow passing in a prefix (used by MH-E).
Lars Magne Ingebrigtsen <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via 4fab40d36f306cb9f2dcea3457918436f161a75d (commit)
from 21564c0b817243faad7355431669a7495bafc7de (commit)
- Log -----------------------------------------------------------------
commit 4fab40d36f306cb9f2dcea3457918436f161a75d
Author: Kevin Layer <[email protected]>
Date: Wed Apr 3 20:35:12 2013 +0200
* mml.el (mml-minibuffer-read-description): Allow passing in a prefix
(used by MH-E).
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 8ebf7a7..690bb5c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2013-04-03 Kevin Layer <[email protected]> (tiny change)
+
+ * mml.el (mml-minibuffer-read-description): Allow passing in a prefix
+ (used by MH-E).
+
2013-04-01 Andrew Cohen <[email protected]>
* nnir.el (nnir-request-update-mark): Improve mark updating in original
diff --git a/lisp/mml.el b/lisp/mml.el
index 3c9344a..3c79d18 100644
--- a/lisp/mml.el
+++ b/lisp/mml.el
@@ -1212,8 +1212,8 @@ If not set, `default-directory' will be used."
string
default)))
-(defun mml-minibuffer-read-description ()
- (let ((description (read-string "One line description: ")))
+(defun mml-minibuffer-read-description (&optional initial-input)
+ (let ((description (read-string "One line description: " initial-input)))
(when (string-match "\\`[ \t]*\\'" description)
(setq description nil))
description))
-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.
Summary of changes:
lisp/ChangeLog | 5 +++++
lisp/mml.el | 4 ++--
2 files changed, 7 insertions(+), 2 deletions(-)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".
The branch, master has been updated
hooks/post-receive
--
Gnus Project