Mercurial > emacs
annotate lisp/calc/calc-incom.el @ 76705:e61171cf2862
(testcover-start, testcover-end, testcover-mark-all, testcover-unmark-all): Add
prompts to interactive specs.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Sat, 24 Mar 2007 15:53:07 +0000 |
parents | 497d17a80bb8 |
children | 1154f082efd9 c0409ee15cee |
rev | line source |
---|---|
41271
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
1 ;;; calc-incom.el --- complex data type input functions for Calc |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
2 |
64325
1db49616ce05
Update copyright information.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
62442
diff
changeset
|
3 ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, |
75346 | 4 ;; 2005, 2006, 2007 Free Software Foundation, Inc. |
41271
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
5 |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
6 ;; Author: David Gillespie <daveg@synaptics.com> |
58550
938592e66a8e
(calc-prev-char, calc-prev-prev-char, calc-digit-value): Declare them.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
57691
diff
changeset
|
7 ;; Maintainer: Jay Belanger <belanger@truman.edu> |
40785 | 8 |
9 ;; This file is part of GNU Emacs. | |
10 | |
76595
497d17a80bb8
Change form of license text to match rest of Emacs.
Glenn Morris <rgm@gnu.org>
parents:
75346
diff
changeset
|
11 ;; GNU Emacs is free software; you can redistribute it and/or modify |
497d17a80bb8
Change form of license text to match rest of Emacs.
Glenn Morris <rgm@gnu.org>
parents:
75346
diff
changeset
|
12 ;; it under the terms of the GNU General Public License as published by |
497d17a80bb8
Change form of license text to match rest of Emacs.
Glenn Morris <rgm@gnu.org>
parents:
75346
diff
changeset
|
13 ;; the Free Software Foundation; either version 2, or (at your option) |
497d17a80bb8
Change form of license text to match rest of Emacs.
Glenn Morris <rgm@gnu.org>
parents:
75346
diff
changeset
|
14 ;; any later version. |
40785 | 15 |
76595
497d17a80bb8
Change form of license text to match rest of Emacs.
Glenn Morris <rgm@gnu.org>
parents:
75346
diff
changeset
|
16 ;; GNU Emacs is distributed in the hope that it will be useful, |
497d17a80bb8
Change form of license text to match rest of Emacs.
Glenn Morris <rgm@gnu.org>
parents:
75346
diff
changeset
|
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
497d17a80bb8
Change form of license text to match rest of Emacs.
Glenn Morris <rgm@gnu.org>
parents:
75346
diff
changeset
|
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
497d17a80bb8
Change form of license text to match rest of Emacs.
Glenn Morris <rgm@gnu.org>
parents:
75346
diff
changeset
|
19 ;; GNU General Public License for more details. |
497d17a80bb8
Change form of license text to match rest of Emacs.
Glenn Morris <rgm@gnu.org>
parents:
75346
diff
changeset
|
20 |
497d17a80bb8
Change form of license text to match rest of Emacs.
Glenn Morris <rgm@gnu.org>
parents:
75346
diff
changeset
|
21 ;; You should have received a copy of the GNU General Public License |
497d17a80bb8
Change form of license text to match rest of Emacs.
Glenn Morris <rgm@gnu.org>
parents:
75346
diff
changeset
|
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
497d17a80bb8
Change form of license text to match rest of Emacs.
Glenn Morris <rgm@gnu.org>
parents:
75346
diff
changeset
|
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
497d17a80bb8
Change form of license text to match rest of Emacs.
Glenn Morris <rgm@gnu.org>
parents:
75346
diff
changeset
|
24 ;; Boston, MA 02110-1301, USA. |
40785 | 25 |
41271
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
26 ;;; Commentary: |
40785 | 27 |
41271
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41047
diff
changeset
|
28 ;;; Code: |
40785 | 29 |
30 ;; This file is autoloaded from calc-ext.el. | |
58659
324e147417aa
Add a provide statement.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58550
diff
changeset
|
31 |
40785 | 32 (require 'calc-ext) |
33 (require 'calc-macs) | |
34 | |
35 ;;; Incomplete forms. | |
36 | |
37 (defun calc-begin-complex () | |
38 (interactive) | |
39 (calc-wrapper | |
40 (if (or calc-algebraic-mode calc-incomplete-algebraic-mode) | |
41 (calc-alg-entry "(") | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
42 (calc-push (list 'incomplete calc-complex-mode))))) |
40785 | 43 |
44 (defun calc-end-complex () | |
45 (interactive) | |
46 (calc-comma t) | |
47 (calc-wrapper | |
48 (let ((top (calc-top 1))) | |
49 (if (and (eq (car-safe top) 'incomplete) | |
50 (eq (nth 1 top) 'intv)) | |
51 (progn | |
52 (if (< (length top) 4) | |
53 (setq top (append top '((neg (var inf var-inf)))))) | |
54 (if (< (length top) 5) | |
55 (setq top (append top '((var inf var-inf))))) | |
56 (calc-enter-result 1 "..)" (cdr top))) | |
57 (if (not (and (eq (car-safe top) 'incomplete) | |
58 (memq (nth 1 top) '(cplx polar)))) | |
59 (error "Not entering a complex number")) | |
60 (while (< (length top) 4) | |
61 (setq top (append top '(0)))) | |
62 (if (not (and (math-realp (nth 2 top)) | |
63 (math-anglep (nth 3 top)))) | |
64 (error "Components must be real")) | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
65 (calc-enter-result 1 "()" (cdr top)))))) |
40785 | 66 |
67 (defun calc-begin-vector () | |
68 (interactive) | |
69 (calc-wrapper | |
70 (if (or calc-algebraic-mode calc-incomplete-algebraic-mode) | |
71 (calc-alg-entry "[") | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
72 (calc-push '(incomplete vec))))) |
40785 | 73 |
74 (defun calc-end-vector () | |
75 (interactive) | |
76 (calc-comma t) | |
77 (calc-wrapper | |
78 (let ((top (calc-top 1))) | |
79 (if (and (eq (car-safe top) 'incomplete) | |
80 (eq (nth 1 top) 'intv)) | |
81 (progn | |
82 (if (< (length top) 4) | |
83 (setq top (append top '((neg (var inf var-inf)))))) | |
84 (if (< (length top) 5) | |
85 (setq top (append top '((var inf var-inf))))) | |
86 (setcar (cdr (cdr top)) (1+ (nth 2 top))) | |
87 (calc-enter-result 1 "..]" (cdr top))) | |
88 (if (not (and (eq (car-safe top) 'incomplete) | |
89 (eq (nth 1 top) 'vec))) | |
90 (error "Not entering a vector")) | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
91 (calc-pop-push-record 1 "[]" (cdr top)))))) |
40785 | 92 |
93 (defun calc-comma (&optional allow-polar) | |
94 (interactive) | |
95 (calc-wrapper | |
96 (let ((num (calc-find-first-incomplete | |
97 (nthcdr calc-stack-top calc-stack) 1))) | |
98 (if (= num 0) | |
99 (error "Not entering a vector or complex number")) | |
100 (let* ((inc (calc-top num)) | |
101 (stuff (calc-top-list (1- num))) | |
102 (new (append inc stuff))) | |
103 (if (and (null stuff) | |
104 (not allow-polar) | |
105 (or (eq (nth 1 inc) 'vec) | |
106 (< (length new) 4))) | |
107 (setq new (append new | |
108 (if (= (length new) 2) | |
109 '(0) | |
110 (nthcdr (1- (length new)) new))))) | |
111 (or allow-polar | |
112 (if (eq (nth 1 new) 'polar) | |
113 (setq new (append '(incomplete cplx) (cdr (cdr new)))) | |
114 (if (eq (nth 1 new) 'intv) | |
115 (setq new (append '(incomplete cplx) | |
116 (cdr (cdr (cdr new)))))))) | |
117 (if (and (memq (nth 1 new) '(cplx polar)) | |
118 (> (length new) 4)) | |
119 (error "Too many components in complex number")) | |
120 (if (and (eq (nth 1 new) 'intv) | |
121 (> (length new) 5)) | |
122 (error "Too many components in interval form")) | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
123 (calc-pop-push num new))))) |
40785 | 124 |
125 (defun calc-semi () | |
126 (interactive) | |
127 (calc-wrapper | |
128 (let ((num (calc-find-first-incomplete | |
129 (nthcdr calc-stack-top calc-stack) 1))) | |
130 (if (= num 0) | |
131 (error "Not entering a vector or complex number")) | |
132 (let ((inc (calc-top num)) | |
133 (stuff (calc-top-list (1- num)))) | |
134 (if (eq (nth 1 inc) 'cplx) | |
135 (setq inc (append '(incomplete polar) (cdr (cdr inc)))) | |
136 (if (eq (nth 1 inc) 'intv) | |
137 (setq inc (append '(incomplete polar) (cdr (cdr (cdr inc))))))) | |
138 (cond ((eq (nth 1 inc) 'polar) | |
139 (let ((new (append inc stuff))) | |
140 (if (> (length new) 4) | |
141 (error "Too many components in complex number") | |
142 (if (= (length new) 2) | |
143 (setq new (append new '(1))))) | |
144 (calc-pop-push num new))) | |
145 ((null stuff) | |
146 (if (> (length inc) 2) | |
147 (if (math-vectorp (nth 2 inc)) | |
148 (calc-comma) | |
149 (calc-pop-push 1 | |
150 (list 'incomplete 'vec (cdr (cdr inc))) | |
151 (list 'incomplete 'vec))))) | |
152 ((math-vectorp (car stuff)) | |
153 (calc-comma)) | |
154 ((eq (car-safe (car-safe (nth (+ num calc-stack-top) | |
155 calc-stack))) 'incomplete) | |
156 (calc-end-vector) | |
157 (calc-comma) | |
158 (let ((calc-algebraic-mode nil) | |
159 (calc-incomplete-algebraic-mode nil)) | |
160 (calc-begin-vector))) | |
161 ((or (= (length inc) 2) | |
162 (math-vectorp (nth 2 inc))) | |
163 (calc-pop-push num | |
164 (append inc (list (cons 'vec stuff))) | |
165 (list 'incomplete 'vec))) | |
166 (t | |
167 (calc-pop-push num | |
168 (list 'incomplete 'vec | |
169 (cons 'vec (append (cdr (cdr inc)) stuff))) | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
170 (list 'incomplete 'vec)))))))) |
40785 | 171 |
58550
938592e66a8e
(calc-prev-char, calc-prev-prev-char, calc-digit-value): Declare them.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
57691
diff
changeset
|
172 ;; The following variables are initially declared in calc.el, |
938592e66a8e
(calc-prev-char, calc-prev-prev-char, calc-digit-value): Declare them.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
57691
diff
changeset
|
173 ;; but are used by calc-digit-dots. |
938592e66a8e
(calc-prev-char, calc-prev-prev-char, calc-digit-value): Declare them.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
57691
diff
changeset
|
174 (defvar calc-prev-char) |
938592e66a8e
(calc-prev-char, calc-prev-prev-char, calc-digit-value): Declare them.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
57691
diff
changeset
|
175 (defvar calc-prev-prev-char) |
938592e66a8e
(calc-prev-char, calc-prev-prev-char, calc-digit-value): Declare them.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
57691
diff
changeset
|
176 (defvar calc-digit-value) |
938592e66a8e
(calc-prev-char, calc-prev-prev-char, calc-digit-value): Declare them.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
57691
diff
changeset
|
177 |
40785 | 178 (defun calc-digit-dots () |
179 (if (eq calc-prev-char ?.) | |
180 (progn | |
181 (delete-backward-char 1) | |
182 (if (calc-minibuffer-contains ".*\\.\\'") | |
183 (delete-backward-char 1)) | |
184 (setq calc-prev-char 'dots | |
185 last-command-char 32) | |
186 (if calc-prev-prev-char | |
187 (calcDigit-nondigit) | |
188 (setq calc-digit-value nil) | |
57691
8dc3dd828d67
(calc-digit-dots): Inhibit read-only before erasing minibuffer.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
189 (let ((inhibit-read-only t)) |
8dc3dd828d67
(calc-digit-dots): Inhibit read-only before erasing minibuffer.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
190 (erase-buffer)) |
40785 | 191 (exit-minibuffer))) |
192 ;; just ignore extra decimal point, anticipating ".." | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
193 (delete-backward-char 1))) |
40785 | 194 |
195 (defun calc-dots () | |
196 (interactive) | |
197 (calc-wrapper | |
198 (let ((num (calc-find-first-incomplete | |
199 (nthcdr calc-stack-top calc-stack) 1))) | |
200 (if (= num 0) | |
201 (error "Not entering an interval form")) | |
202 (let* ((inc (calc-top num)) | |
203 (stuff (calc-top-list (1- num))) | |
204 (new (append inc stuff))) | |
205 (if (not (eq (nth 1 new) 'intv)) | |
206 (setq new (append '(incomplete intv) | |
207 (if (eq (nth 1 new) 'vec) '(2) '(0)) | |
208 (cdr (cdr new))))) | |
209 (if (and (null stuff) | |
210 (= (length new) 3)) | |
211 (setq new (append new '((neg (var inf var-inf)))))) | |
212 (if (> (length new) 5) | |
213 (error "Too many components in interval form")) | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
214 (calc-pop-push num new))))) |
40785 | 215 |
216 (defun calc-find-first-incomplete (stack n) | |
217 (cond ((null stack) | |
218 0) | |
219 ((eq (car-safe (car-safe (car stack))) 'incomplete) | |
220 n) | |
221 (t | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
222 (calc-find-first-incomplete (cdr stack) (1+ n))))) |
40785 | 223 |
224 (defun calc-incomplete-error (a) | |
225 (cond ((memq (nth 1 a) '(cplx polar)) | |
226 (error "Complex number is incomplete")) | |
227 ((eq (nth 1 a) 'vec) | |
228 (error "Vector is incomplete")) | |
229 ((eq (nth 1 a) 'intv) | |
230 (error "Interval form is incomplete")) | |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
231 (t (error "Object is incomplete")))) |
40785 | 232 |
58659
324e147417aa
Add a provide statement.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58550
diff
changeset
|
233 (provide 'calc-incom) |
324e147417aa
Add a provide statement.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58550
diff
changeset
|
234 |
52401 | 235 ;;; arch-tag: b8001270-4dc7-481b-a3e3-a952e19b390d |
41047
73f364fd8aaa
Style cleanup; don't put closing parens on their
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
236 ;;; calc-incom.el ends here |