emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r113665: * test/automated/core-elisp-tests.el (core-


From: Glenn Morris
Subject: [Emacs-diffs] trunk r113665: * test/automated/core-elisp-tests.el (core-elisp-tests): Fix defcustom.
Date: Sat, 03 Aug 2013 01:43:33 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 113665
revision-id: address@hidden
parent: address@hidden
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Fri 2013-08-02 18:43:30 -0700
message:
  * test/automated/core-elisp-tests.el (core-elisp-tests): Fix defcustom.
modified:
  test/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-8588
  test/automated/core-elisp-tests.el 
coreelisptests.el-20130802205303-9v41l78e19i5rmnr-1
=== modified file 'test/ChangeLog'
--- a/test/ChangeLog    2013-08-03 01:02:51 +0000
+++ b/test/ChangeLog    2013-08-03 01:43:30 +0000
@@ -1,5 +1,7 @@
 2013-08-03  Glenn Morris  <address@hidden>
 
+       * automated/core-elisp-tests.el (core-elisp-tests): Fix defcustom.
+
        * automated/icalendar-tests.el (icalendar-tests--test-export)
        (icalendar-tests--test-import):
        Use getenv/setenv rather than set-time-zone-rule.

=== modified file 'test/automated/core-elisp-tests.el'
--- a/test/automated/core-elisp-tests.el        2013-08-02 21:16:33 +0000
+++ b/test/automated/core-elisp-tests.el        2013-08-03 01:43:30 +0000
@@ -31,7 +31,9 @@
     ;; is properly initialized.
     (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 2) c-e-x) c-e-x)
+    (should (equal (list (let ((c-e-x 1))
+                           (defcustom c-e-x "doc" 2 :group 'blah) c-e-x)
+                         c-e-x)
                    '(1 2)))))
 
 (provide 'core-elisp-tests)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]