summaryrefslogtreecommitdiff
path: root/test/lisp/thingatpt-tests.el
diff options
context:
space:
mode:
authorStefan Kangas <stefan@marxist.se>2021-12-23 06:31:26 +0100
committerStefan Kangas <stefan@marxist.se>2021-12-23 06:31:26 +0100
commitbe38405b1f5309c14668510ccc7c1306f399de6e (patch)
tree8550f374f09e09b18f2e7b3a53a2fe8a8d011fa8 /test/lisp/thingatpt-tests.el
parentb1cfdb3573facdceae3785478c62c2e2548564ec (diff)
parent29fffbdd87391272e9131be63cf93f5067d6ae0d (diff)
downloademacs-be38405b1f5309c14668510ccc7c1306f399de6e.tar.gz
Merge from origin/emacs-28
29fffbdd87 Revert field-related thingatpt changes 9bcb732686 * lisp/window.el (quit-restore-window): Select previously ... b7d31d6192 Revert "Remove Motif support" # Conflicts: # etc/NEWS
Diffstat (limited to 'test/lisp/thingatpt-tests.el')
-rw-r--r--test/lisp/thingatpt-tests.el8
1 files changed, 0 insertions, 8 deletions
diff --git a/test/lisp/thingatpt-tests.el b/test/lisp/thingatpt-tests.el
index f2031fa79ab..1df1b8079e5 100644
--- a/test/lisp/thingatpt-tests.el
+++ b/test/lisp/thingatpt-tests.el
@@ -215,12 +215,4 @@ position to retrieve THING.")
(should (equal (test--number "0xf00" 2) 3840))
(should (equal (test--number "0xf00" 3) 3840)))
-(ert-deftest test-fields ()
- (with-temp-buffer
- (insert (propertize "foo" 'field 1) "bar" (propertize "zot" 'field 2))
- (goto-char 1)
- (should (eq (symbol-at-point) 'foo))
- (goto-char 5)
- (should (eq (symbol-at-point) 'bar))))
-
;;; thingatpt-tests.el ends here