]> git.eshelyaron.com Git - emacs.git/commitdiff
* test/lisp/progmodes/cperl-mode-tests.el: Silence warnings
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 18 Mar 2021 18:32:36 +0000 (14:32 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 18 Mar 2021 18:32:36 +0000 (14:32 -0400)
(cperl-test-bug-47112): Actually obey the major-mode for the test.

test/lisp/progmodes/cperl-mode-tests.el

index f0e15022d0316b5467060ef4340630649780f5c1..8078e9c9fa9a9a0884af9f7a97631a9a1222fb8f 100644 (file)
@@ -135,6 +135,9 @@ point in the distant past, and is still broken in perl-mode. "
         (should (equal (nth 3 (syntax-ppss)) nil))
         (should (equal (nth 4 (syntax-ppss)) t))))))
 
+(defvar perl-continued-statement-offset)
+(defvar perl-indent-level)
+
 (ert-deftest cperl-test-heredocs ()
   "Test that HERE-docs are fontified with the appropriate face."
   (require 'perl-mode)
@@ -242,7 +245,7 @@ This test relies on the specific layout of the index alist as
 created by CPerl mode, so skip it for Perl mode."
   (skip-unless (eq cperl-test-mode #'cperl-mode))
   (with-temp-buffer
-    (insert-file (ert-resource-file "grammar.pl"))
+    (insert-file-contents (ert-resource-file "grammar.pl"))
     (cperl-mode)
     (let ((index (cperl-imenu--create-perl-index))
           current-list)
@@ -457,8 +460,8 @@ as that quote like operator."
     (funcall cperl-test-mode)
     (insert "sub y_max { q:bar:; y _bar_foo_; }")
     (goto-char (point-min))
-    (cperl-update-syntaxification (point-max))
-    (font-lock-fontify-buffer)
+    (syntax-propertize (point-max))
+    (font-lock-ensure)
     (search-forward "max")
     (should (equal (get-text-property (match-beginning 0) 'face)
                    'font-lock-function-name-face))