diff options
| author | John Wiegley | 2016-01-18 22:56:33 -0800 |
|---|---|---|
| committer | John Wiegley | 2016-01-18 22:56:33 -0800 |
| commit | 6acd2aa02c6f0eb9d3fadce0bb48183837beafd8 (patch) | |
| tree | d236a14dc554951c3e7c5a5b38a3bd98edc1315a /test/lisp | |
| parent | 564c84f4b12482aefe86539d2471607565c3ee7c (diff) | |
| parent | 549a765efeca2748e68a5c6ce6c9238784e82535 (diff) | |
| download | emacs-6acd2aa02c6f0eb9d3fadce0bb48183837beafd8.tar.gz emacs-6acd2aa02c6f0eb9d3fadce0bb48183837beafd8.zip | |
-
Diffstat (limited to 'test/lisp')
| -rw-r--r-- | test/lisp/legacy/core-elisp-tests.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lisp/legacy/core-elisp-tests.el b/test/lisp/legacy/core-elisp-tests.el index 76985331566..b44bb37cc4f 100644 --- a/test/lisp/legacy/core-elisp-tests.el +++ b/test/lisp/legacy/core-elisp-tests.el | |||
| @@ -32,7 +32,7 @@ | |||
| 32 | (should (equal (list (let ((c-e-x 1)) (defvar c-e-x 2) c-e-x) c-e-x) | 32 | (should (equal (list (let ((c-e-x 1)) (defvar c-e-x 2) c-e-x) c-e-x) |
| 33 | '(1 2))) | 33 | '(1 2))) |
| 34 | (should (equal (list (let ((c-e-x 1)) | 34 | (should (equal (list (let ((c-e-x 1)) |
| 35 | (defcustom c-e-x 2 "doc" :group 'blah) c-e-x) | 35 | (defcustom c-e-x 2 "doc" :group 'blah :type 'integer) c-e-x) |
| 36 | c-e-x) | 36 | c-e-x) |
| 37 | '(1 2))))) | 37 | '(1 2))))) |
| 38 | 38 | ||