Mercurial > emacs
changeset 5286:7b3b23470fa1
(sc-read-string): Don't pass a history arg to read-string.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 23 Dec 1993 03:42:20 +0000 |
parents | 6c3cfa1f8188 |
children | 6811f9d90b62 |
files | lisp/mail/supercite.el |
diffstat | 1 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/mail/supercite.el Thu Dec 23 03:41:22 1993 +0000 +++ b/lisp/mail/supercite.el Thu Dec 23 03:42:20 1993 +0000 @@ -499,8 +499,9 @@ "Compatibility between Emacs 18 and 19 `read-string'. In version 18, the HISTORY argument is ignored." (if (memq 'v19 sc-emacs-features) - (funcall 'read-string prompt initial-contents history) - (funcall 'read-string prompt initial-contents))) + ;; maybe future versions will take a `history' argument: + (read-string prompt initial-contents) + (read-string prompt initial-contents))) (defun sc-submatch (matchnum &optional string) "Returns `match-beginning' and `match-end' sub-expression for MATCHNUM.