aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias EngdegÄrd2023-08-14 16:47:27 +0200
committerMattias EngdegÄrd2023-08-14 17:03:44 +0200
commit411f1bfc9f8db4f87a11ae18ccf2106e7ff8a6d3 (patch)
tree3f1a907fff6340ac1f814ca3b89a2eb5d622f6e8
parent3bc62bfa9ad48428cd280e4c162a06916688f6c1 (diff)
downloademacs-411f1bfc9f8db4f87a11ae18ccf2106e7ff8a6d3.tar.gz
emacs-411f1bfc9f8db4f87a11ae18ccf2106e7ff8a6d3.zip
; * test/src/syntax-tests.el (syntax-char-syntax): remove junk
-rw-r--r--test/src/syntax-tests.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/src/syntax-tests.el b/test/src/syntax-tests.el
index 0ad3667c060..9e4740c17cc 100644
--- a/test/src/syntax-tests.el
+++ b/test/src/syntax-tests.el
@@ -518,7 +518,6 @@ the `parse-partial-sexp's are expected to stop. See
518 (modify-syntax-entry (unibyte-char-to-multibyte 128) "_" st) 518 (modify-syntax-entry (unibyte-char-to-multibyte 128) "_" st)
519 (set-syntax-table st) 519 (set-syntax-table st)
520 (should (equal (eval '(char-syntax 128) t) ?_)) 520 (should (equal (eval '(char-syntax 128) t) ?_))
521 (should (equal (funcall cs 128) ?_)))) 521 (should (equal (funcall cs 128) ?_))))))
522 (list (char-syntax 128) (funcall cs 128))))
523 522
524;;; syntax-tests.el ends here 523;;; syntax-tests.el ends here