diff options
author | Tino Calancha <tino.calancha@gmail.com> | 2017-10-27 20:21:26 +0900 |
---|---|---|
committer | Tino Calancha <tino.calancha@gmail.com> | 2017-10-27 20:21:26 +0900 |
commit | 7f089aa5f6d208209b2cfef8e0d3d9530e191248 (patch) | |
tree | 6ead3d30cda9725f34710e07381d4d3a179b3e1d /lisp | |
parent | 53aaad1dfc1f9e0ffe7ee457967426584cd7f541 (diff) | |
download | emacs-7f089aa5f6d208209b2cfef8e0d3d9530e191248.tar.gz |
Require seq in rmc.el
* lisp/emacs-lisp/rmc.el: Require seq (Bug#28975).
* test/lisp/emacs-lisp/rmc-tests.el (test-read-multiple-choice): Add test.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/emacs-lisp/rmc.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/rmc.el b/lisp/emacs-lisp/rmc.el index 0be6971992c..ca11c596638 100644 --- a/lisp/emacs-lisp/rmc.el +++ b/lisp/emacs-lisp/rmc.el @@ -23,6 +23,8 @@ ;;; Code: +(require 'seq) + ;;;###autoload (defun read-multiple-choice (prompt choices) "Ask user a multiple choice question. |