]> git.eshelyaron.com Git - emacs.git/commitdiff
Add cond test cases for singleton clauses.
authorVibhav Pant <vibhavp@gmail.com>
Sat, 22 Apr 2017 16:21:43 +0000 (21:51 +0530)
committerVibhav Pant <vibhavp@gmail.com>
Sat, 22 Apr 2017 16:38:16 +0000 (22:08 +0530)
* test/lisp/emacs-lisp/bytecomp-tests.el: Add test cond forms where
  the default clause is a single non-nil expression.

test/lisp/emacs-lisp/bytecomp-tests.el

index d0b97907389c020dd2e904b977dd3e9edd78a3b1..e8feec31d266e6a167238195f55625da23510353 100644 (file)
                          (while l
                            a (setq l nil))
                          'correct)
-                        (t 'incorrect))))
+                        (t 'incorrect)))
+    (let ((a))
+      (cond ((eq a 'foo) 'incorrect)
+            (t)))
+    (let ((a))
+      (cond ((eq a 'foo) 'incorrect)
+            ('correct))))
   "List of expression for test.
 Each element will be executed by interpreter and with
 bytecompiled code, and their results compared.")