Mercurial > hg > xemacs-beta
annotate tests/automated/region-tests.el @ 5861:c87b776ab0e1
Create a new error for when a char is needed but event-to-character gives nil
lisp/ChangeLog addition:
2015-03-14 Aidan Kehoe <kehoea@parhasard.net>
* cmdloop.el (no-character-typed):
New error, for those cases when a keystroke is to be treated as a
character but has no character equivalent.
* cmdloop.el (read-char-1): Use it.
* keymap.el (synthesize-keysym): Use it.
src/ChangeLog addition:
2015-03-14 Aidan Kehoe <kehoea@parhasard.net>
* general-slots.h (Qno_character_typed): New error symbol.
* event-stream.c (syms_of_event_stream): Define it.
New error, for those cases when a keystroke is to be treated as a
character in some context but has no character equivalent.
* cmds.c (Fself_insert_command):
Use it.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Sat, 14 Mar 2015 01:40:49 +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))))) |