Mercurial > hg > xemacs-beta
annotate tests/automated/region-tests.el @ 5908:6174848f3e6c
Use parse_integer() in read_atom(); support bases with ratios like integers
src/ChangeLog addition:
2015-05-08 Aidan Kehoe <kehoea@parhasard.net>
* data.c (init_errors_once_early):
Move the Qunsupported_type here from numbers.c, so it's available
when the majority of our types are not supported.
* general-slots.h: Add it here, too.
* number.c: Remove the definition of Qunsupported_type from here.
* lread.c (read_atom):
Check if the first character could reflect a rational, if so, call
parse_integer(), don't check the syntax of the other
characters. This allows us to accept the non-ASCII digit
characters too.
If that worked partially, but not completely, and the next char is
a slash, try to parse as a ratio.
If that fails, try isfloat_string(), but only if the first
character could plausibly be part of a float.
Otherwise, treat as a symbol.
* lread.c (read_rational):
Rename from read_integer. Handle ratios with the same radix
specification as was used for integers.
* lread.c (read1):
Rename read_integer in this function. Support the Common Lisp
#NNNrMMM syntax for parsing a number MMM of arbitrary radix NNN.
man/ChangeLog addition:
2015-05-08 Aidan Kehoe <kehoea@parhasard.net>
* lispref/numbers.texi (Numbers):
Describe the newly-supported arbitrary-base syntax for rationals
(integers and ratios). Describe that ratios can take the same base
specification as integers, something also new.
tests/ChangeLog addition:
2015-05-08 Aidan Kehoe <kehoea@parhasard.net>
* automated/lisp-reader-tests.el:
Check the arbitrary-base integer reader syntax support, just
added. Check the reader base support for ratios, just added.
Check the non-ASCII-digit support in the reader, just added.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Sat, 09 May 2015 00:40:57 +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))))) |