From: Glenn Morris Date: Sat, 3 Aug 2013 01:47:54 +0000 (-0700) Subject: Fix previous core-elisp-tests.el fix X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~1688^2~14 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5edd44c27637d73c41594b1799f26b1bc6342249;p=emacs.git Fix previous core-elisp-tests.el fix --- diff --git a/test/automated/core-elisp-tests.el b/test/automated/core-elisp-tests.el index bb76ee25c77..40169b836d5 100644 --- a/test/automated/core-elisp-tests.el +++ b/test/automated/core-elisp-tests.el @@ -32,7 +32,7 @@ (should (equal (list (let ((c-e-x 1)) (defvar c-e-x 2) c-e-x) c-e-x) '(1 2))) (should (equal (list (let ((c-e-x 1)) - (defcustom c-e-x "doc" 2 :group 'blah) c-e-x) + (defcustom c-e-x 2 "doc" :group 'blah) c-e-x) c-e-x) '(1 2)))))