diff options
| author | Juri Linkov | 2022-05-06 21:06:47 +0300 |
|---|---|---|
| committer | Juri Linkov | 2022-05-06 21:06:47 +0300 |
| commit | cbd59395bdccd924ebe39430f32d2d72546a841a (patch) | |
| tree | 3060a0edd03f81ed15d2f11a4bed925e2b9e082a /test | |
| parent | c57a6644ef97b3197c35c0c3ade60acd5607eef4 (diff) | |
| download | emacs-cbd59395bdccd924ebe39430f32d2d72546a841a.tar.gz emacs-cbd59395bdccd924ebe39430f32d2d72546a841a.zip | |
Add char-folding of double quotes in isearch-fold-quotes-mode (bug#24510)
* lisp/isearch.el (isearch-fold-quotes-mode): Add char-folding of
double quotation marks.
* test/lisp/subr-tests.el (test-local-set-state): Test values
after setting state.
Diffstat (limited to 'test')
| -rw-r--r-- | test/lisp/subr-tests.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/lisp/subr-tests.el b/test/lisp/subr-tests.el index 6bcac2a5eba..8f3ee66e00d 100644 --- a/test/lisp/subr-tests.el +++ b/test/lisp/subr-tests.el | |||
| @@ -1065,6 +1065,9 @@ final or penultimate step during initialization.")) | |||
| 1065 | (let ((state (buffer-local-set-state global 10 | 1065 | (let ((state (buffer-local-set-state global 10 |
| 1066 | local 20 | 1066 | local 20 |
| 1067 | unexist 30))) | 1067 | unexist 30))) |
| 1068 | (should (= global 10)) | ||
| 1069 | (should (= local 20)) | ||
| 1070 | (should (= unexist 30)) | ||
| 1068 | (buffer-local-restore-state state) | 1071 | (buffer-local-restore-state state) |
| 1069 | (should (= global 1)) | 1072 | (should (= global 1)) |
| 1070 | (should (= local 2)) | 1073 | (should (= local 2)) |