# HG changeset patch # User Richard M. Stallman # Date 756618140 0 # Node ID 7b3b23470fa1d2d4243e6f75c5c2b6d049bfd79a # Parent 6c3cfa1f8188c05fcca723196a7529240633cfca (sc-read-string): Don't pass a history arg to read-string. diff -r 6c3cfa1f8188 -r 7b3b23470fa1 lisp/mail/supercite.el --- 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.