summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2022-08-20 11:54:33 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2022-08-20 11:54:33 +0200
commit3312710fd672021b17983ef2287dbd57a9a110a1 (patch)
tree57b7bd1914ed50f14c1cb16a2e499f9b0d3c171f /test
parent84082a0e8401ca5ed415d7e11eb8b899b649a866 (diff)
downloademacs-3312710fd672021b17983ef2287dbd57a9a110a1.tar.gz
emacs-3312710fd672021b17983ef2287dbd57a9a110a1.tar.bz2
emacs-3312710fd672021b17983ef2287dbd57a9a110a1.zip
Make conf-javaprop-mode only claim that # lines are comments
* lisp/textmodes/conf-mode.el (conf-javaprop-mode-syntax-table): Make obsolete and remove syntax entries for // and /* (bug#49077), because only # are comments in javaprop files. (conf-javaprop-mode): Adjust doc string to just mention # comments.
Diffstat (limited to 'test')
-rw-r--r--test/lisp/textmodes/conf-mode-tests.el5
1 files changed, 1 insertions, 4 deletions
diff --git a/test/lisp/textmodes/conf-mode-tests.el b/test/lisp/textmodes/conf-mode-tests.el
index 2b4fde40c34..097b25f1144 100644
--- a/test/lisp/textmodes/conf-mode-tests.el
+++ b/test/lisp/textmodes/conf-mode-tests.el
@@ -74,8 +74,7 @@ PersistMoniker=file://Folder.htt")
(ert-deftest conf-test-javaprop-mode ()
(with-temp-buffer
;; From `conf-javaprop-mode' docstring
- (insert "// another kind of comment
-/* yet another */
+ (insert "# comment
name:value
name=value
@@ -90,8 +89,6 @@ x.2.y.1.z.2.zz =")
(should (equal (face-at-point) 'font-lock-comment-delimiter-face))
(forward-char 3)
(should (equal (face-at-point) 'font-lock-comment-face))
- (search-forward "*")
- (should (equal (face-at-point) 'font-lock-comment-delimiter-face))
(while (search-forward "nam" nil t)
(should (equal (face-at-point) 'font-lock-variable-name-face))
(search-forward "val")