diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-12-23 06:31:26 +0100 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-12-23 06:31:26 +0100 |
commit | be38405b1f5309c14668510ccc7c1306f399de6e (patch) | |
tree | 8550f374f09e09b18f2e7b3a53a2fe8a8d011fa8 /test/lisp/thingatpt-tests.el | |
parent | b1cfdb3573facdceae3785478c62c2e2548564ec (diff) | |
parent | 29fffbdd87391272e9131be63cf93f5067d6ae0d (diff) | |
download | emacs-be38405b1f5309c14668510ccc7c1306f399de6e.tar.gz emacs-be38405b1f5309c14668510ccc7c1306f399de6e.tar.bz2 emacs-be38405b1f5309c14668510ccc7c1306f399de6e.zip |
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.el | 8 |
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 |