aboutsummaryrefslogtreecommitdiffstats
path: root/test/src
diff options
context:
space:
mode:
Diffstat (limited to 'test/src')
-rw-r--r--test/src/comp-test-funcs.el10
1 files changed, 8 insertions, 2 deletions
diff --git a/test/src/comp-test-funcs.el b/test/src/comp-test-funcs.el
index 3d8d3437bda..540170ea966 100644
--- a/test/src/comp-test-funcs.el
+++ b/test/src/comp-test-funcs.el
@@ -340,8 +340,8 @@
340 340
341;; Non tested functions that proved just to be difficult to compile. 341;; Non tested functions that proved just to be difficult to compile.
342 342
343(defun comp-test-callee (_ _) t) 343(defun comp-test-callee (_ __) t)
344(defun comp-test-silly-frame (x) 344(defun comp-test-silly-frame1 (x)
345 (cl-case x 345 (cl-case x
346 (0 (comp-test-callee 346 (0 (comp-test-callee
347 (pcase comp-tests-var1 347 (pcase comp-tests-var1
@@ -349,4 +349,10 @@
349 (2 2)) 349 (2 2))
350 3)))) 350 3))))
351 351
352(defun comp-test-silly-frame2 (token)
353 (while c
354 (cl-case c
355 (?< 1)
356 (?> 2))))
357
352;;; comp-test-funcs.el ends here 358;;; comp-test-funcs.el ends here