aboutsummaryrefslogtreecommitdiffstats
path: root/test/src/coding-tests.el
diff options
context:
space:
mode:
Diffstat (limited to 'test/src/coding-tests.el')
-rw-r--r--test/src/coding-tests.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/src/coding-tests.el b/test/src/coding-tests.el
index a741e233d39..c438ae22ce3 100644
--- a/test/src/coding-tests.el
+++ b/test/src/coding-tests.el
@@ -1,4 +1,4 @@
1;;; coding-tests.el --- tests for text encoding and decoding 1;;; coding-tests.el --- tests for text encoding and decoding -*- lexical-binding: t -*-
2 2
3;; Copyright (C) 2013-2020 Free Software Foundation, Inc. 3;; Copyright (C) 2013-2020 Free Software Foundation, Inc.
4 4
@@ -296,7 +296,7 @@
296;;; decoder, not for regression testing. 296;;; decoder, not for regression testing.
297 297
298(defun generate-ascii-file () 298(defun generate-ascii-file ()
299 (dotimes (i 100000) 299 (dotimes (_i 100000)
300 (insert-char ?a 80) 300 (insert-char ?a 80)
301 (insert "\n"))) 301 (insert "\n")))
302 302
@@ -309,13 +309,13 @@
309 (insert "\n"))) 309 (insert "\n")))
310 310
311(defun generate-mostly-nonascii-file () 311(defun generate-mostly-nonascii-file ()
312 (dotimes (i 30000) 312 (dotimes (_i 30000)
313 (insert-char ?a 80) 313 (insert-char ?a 80)
314 (insert "\n")) 314 (insert "\n"))
315 (dotimes (i 20000) 315 (dotimes (_i 20000)
316 (insert-char ?À 80) 316 (insert-char ?À 80)
317 (insert "\n")) 317 (insert "\n"))
318 (dotimes (i 10000) 318 (dotimes (_i 10000)
319 (insert-char ?あ 80) 319 (insert-char ?あ 80)
320 (insert "\n"))) 320 (insert "\n")))
321 321