Mercurial > hg > xemacs-beta
annotate tests/automated/region-tests.el @ 5567:3bc58dc9d688
Replace #'flet by #'labels where appropriate, core code.
lisp/ChangeLog addition:
2011-09-07 Aidan Kehoe <kehoea@parhasard.net>
* simple.el (transpose-subr):
* specifier.el (let-specifier):
* specifier.el (derive-device-type-from-tag-set):
* test-harness.el (batch-test-emacs):
* x-compose.el (alias-colon-to-doublequote):
* mule/chinese.el (make-chinese-cns11643-charset):
* mule/mule-cmds.el (set-locale-for-language-environment):
* mule/mule-cmds.el (set-language-environment-coding-systems):
* mule/mule-x-init.el (x-use-halfwidth-roman-font):
* about.el (about-xemacs):
* about.el (about-hackers):
* diagnose.el (show-memory-usage):
* diagnose.el (show-object-memory-usage-stats):
* diagnose.el (show-mc-alloc-memory-usage):
* diagnose.el (show-gc-stats):
* dialog.el (make-dialog-box):
* faces.el:
* faces.el (Face-frob-property):
* faces.el (set-face-stipple):
* glyphs.el:
* glyphs.el (init-glyphs): Removed.
* help-macro.el (make-help-screen):
* info.el (Info-construct-menu):
* keymap.el (key-sequence-list-description):
* lisp-mode.el (construct-lisp-mode-menu):
* loadhist.el (unload-feature):
* minibuf.el (get-user-response):
* mouse.el (default-mouse-track-check-for-activation):
* mouse.el (mouse-track-insert-1):
Follow my own advice from the last commit and use #'labels instead
of #'flet in core code.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Wed, 07 Sep 2011 21:21:36 +0100 |
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))))) |