Mercurial > hg > xemacs-beta
annotate tests/automated/region-tests.el @ 5855:0bddb59072b6
Look for cased character classes when deciding on case-fold-search, #'isearch
lisp/ChangeLog addition:
2015-03-11 Aidan Kehoe <kehoea@parhasard.net>
* isearch-mode.el:
* isearch-mode.el (isearch-fix-case):
Use the new #'no-case-regexp-p function if treating ISEARCH-STRING
as a regular expression; otherwise, use the [[:upper:]] character
class.
* isearch-mode.el (isearch-no-upper-case-p): Removed.
* isearch-mode.el (with-caps-disable-folding): Removed.
These two haven't been used since 1998.
* occur.el (occur-1):
Use #'no-case-regexp-p here.
* replace.el (perform-replace):
Don't use #'no-upper-case-p, use #'no-case-regexp-p or
(string-match "[[:upper:]]" ...) as appropriate.
* simple.el:
* simple.el (no-upper-case-p): Removed. This did two different
things, and its secondary function (examining regular expressions)
just became much more complicated; move the regular expression
functionality to its own function, use character classes when
examining non-regular-expressions instead.
The code to look for character classes, and the design decision
that this should be done, are from GNU, thank you Stefan Monnier.
* simple.el (no-case-regexp-p): New.
Given a REGEXP, return non-nil if it has nothing to suggest an
interactive user wants a case-sensitive search.
* simple.el (with-search-caps-disable-folding):
* simple.el (with-interactive-search-caps-disable-folding):
Update both these macros to use #'no-case-regexp-p.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Wed, 11 Mar 2015 18:06:15 +0000 |
parents | 308d34e9f07d |
children |
rev | line source |
---|---|
2614 | 1 ;; Copyright (C) 2005 Adrian Aichner |
2 | |
3 ;; Author: Adrian Aichner <adrian@xemacs.org> | |
4 ;; Maintainer: XEmacs Beta List <xemacs-beta@xemacs.org> | |
5 ;; Created: 2005 | |
6 ;; Keywords: tests | |
7 | |
8 ;; This file is part of XEmacs. | |
9 | |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5136
diff
changeset
|
10 ;; XEmacs is free software: you can redistribute it and/or modify it |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5136
diff
changeset
|
11 ;; under the terms of the GNU General Public License as published by the |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5136
diff
changeset
|
12 ;; Free Software Foundation, either version 3 of the License, or (at your |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5136
diff
changeset
|
13 ;; option) any later version. |
2614 | 14 |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5136
diff
changeset
|
15 ;; XEmacs is distributed in the hope that it will be useful, but WITHOUT |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5136
diff
changeset
|
16 ;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5136
diff
changeset
|
17 ;; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5136
diff
changeset
|
18 ;; for more details. |
2614 | 19 |
20 ;; You should have received a copy of the GNU General Public License | |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5136
diff
changeset
|
21 ;; along with XEmacs. If not, see <http://www.gnu.org/licenses/>. |
2614 | 22 |
23 ;;; Synched up with: Not in FSF. | |
24 | |
25 ;;; Commentary: | |
26 | |
27 ;;; Test region and zmacs-region functionality | |
28 ;;; See test-harness.el | |
29 | |
30 (condition-case err | |
31 (require 'test-harness) | |
32 (file-error | |
33 (when (and (boundp 'load-file-name) (stringp load-file-name)) | |
34 (push (file-name-directory load-file-name) load-path) | |
35 (require 'test-harness)))) | |
36 | |
37 ;; Active region testing, verifying functionality of | |
38 ;; http://list-archive.xemacs.org/xemacs-patches/200502/msg00194.html | |
39 ;; Message-ID: <zmxwtboa.fsf@smtprelay.t-online.de> | |
40 (with-temp-buffer | |
41 ;; Using active regions | |
42 (let ((zmacs-regions t) | |
43 (first-buffer (current-buffer))) | |
3472 | 44 (Silence-Message |
45 (insert (buffer-name))) | |
2614 | 46 (Assert (not (region-exists-p))) |
47 (Assert (not (region-active-p))) | |
3472 | 48 (Silence-Message |
49 (mark-whole-buffer)) | |
2614 | 50 (Assert (region-exists-p)) |
51 (Assert (region-active-p)) | |
52 ;; Turn off active regions | |
53 (setq zmacs-regions nil) | |
54 ;; Region still exists | |
55 (Assert (region-exists-p)) | |
56 ;; Region is no longer active | |
57 (Assert (not (region-active-p))) | |
58 ;; Turn active regions back on | |
59 (setq zmacs-regions t) | |
60 ;; Region still exists | |
61 (Assert (region-exists-p)) | |
62 ;; Region is active again | |
63 (Assert (region-active-p)) | |
64 (with-temp-buffer | |
3472 | 65 (Silence-Message |
66 (insert (buffer-name))) | |
2614 | 67 ;; Region exists in first buffer, not this second one |
68 (Assert (not (region-exists-p))) | |
69 ;; Region not active in this second temp buffer | |
70 (Assert (not (region-active-p))) | |
71 ;; Region still active in first temp buffer | |
5136
0f66906b6e37
Undo Assert-equal, Assert=, etc.; make `Assert' handle this automatically
Ben Wing <ben@xemacs.org>
parents:
4855
diff
changeset
|
72 (Assert (eq (zmacs-region-buffer) first-buffer)) |
2614 | 73 ;; Activate region in second temp buffer |
3472 | 74 (Silence-Message |
75 (mark-whole-buffer)) | |
2614 | 76 ;; Region exists in second temp buffer |
77 (Assert (region-exists-p)) | |
78 ;; Region active in second temp buffer | |
79 (Assert (region-active-p))) | |
80 ;; Second temp buffer no longer exists | |
81 (Assert (null (zmacs-region-buffer))))) |