Mercurial > emacs
annotate lisp/calculator.el @ 110982:2b3bece0553a
merge emacs-23
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Tue, 12 Oct 2010 21:41:18 +0900 |
parents | e950143ab9e0 |
children | b799d38f522a 376148b31b5e |
rev | line source |
---|---|
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
35314
diff
changeset
|
1 ;;; calculator.el --- a [not so] simple calculator for Emacs |
27587 | 2 |
94680
5af369a095b7
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94391
diff
changeset
|
3 ;; Copyright (C) 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, |
106815 | 4 ;; 2008, 2009, 2010 Free Software Foundation, Inc. |
27587 | 5 |
35314 | 6 ;; Author: Eli Barzilay <eli@barzilay.org> |
27587 | 7 ;; Keywords: tools, convenience |
8 | |
9 ;; This file is part of GNU Emacs. | |
10 | |
94680
5af369a095b7
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94391
diff
changeset
|
11 ;; GNU Emacs is free software: you can redistribute it and/or modify |
5af369a095b7
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94391
diff
changeset
|
12 ;; it under the terms of the GNU General Public License as published by |
5af369a095b7
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94391
diff
changeset
|
13 ;; the Free Software Foundation, either version 3 of the License, or |
5af369a095b7
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94391
diff
changeset
|
14 ;; (at your option) any later version. |
27587 | 15 |
94680
5af369a095b7
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94391
diff
changeset
|
16 ;; GNU Emacs is distributed in the hope that it will be useful, |
5af369a095b7
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94391
diff
changeset
|
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
5af369a095b7
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94391
diff
changeset
|
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
5af369a095b7
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94391
diff
changeset
|
19 ;; GNU General Public License for more details. |
27587 | 20 |
21 ;; You should have received a copy of the GNU General Public License | |
94680
5af369a095b7
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94391
diff
changeset
|
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
27587 | 23 |
33631 | 24 ;;;===================================================================== |
27587 | 25 ;;; Commentary: |
26 ;; | |
33491 | 27 ;; A calculator for Emacs. |
33551 | 28 ;; Why should you reach for your mouse to get xcalc (calc.exe, gcalc or |
33491 | 29 ;; whatever), when you have Emacs running already? |
27587 | 30 ;; |
31 ;; If this is not part of your Emacs distribution, then simply bind | |
32 ;; `calculator' to a key and make it an autoloaded function, e.g.: | |
33 ;; (autoload 'calculator "calculator" | |
33491 | 34 ;; "Run the Emacs calculator." t) |
27587 | 35 ;; (global-set-key [(control return)] 'calculator) |
36 ;; | |
33491 | 37 ;; Written by Eli Barzilay: Maze is Life! eli@barzilay.org |
38 ;; http://www.barzilay.org/ | |
27587 | 39 ;; |
40 ;; For latest version, check | |
33491 | 41 ;; http://www.barzilay.org/misc/calculator.el |
39430
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
42 ;; |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
43 |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
44 ;;; History: |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
45 ;; I hate history. |
27587 | 46 |
83794
4f498b7dbb7f
Require cl for compilation.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
82140
diff
changeset
|
47 (eval-when-compile (require 'cl)) |
27587 | 48 |
33631 | 49 ;;;===================================================================== |
27587 | 50 ;;; Customization: |
51 | |
52 (defgroup calculator nil | |
33491 | 53 "Simple Emacs calculator." |
27587 | 54 :prefix "calculator" |
30889 | 55 :version "21.1" |
27587 | 56 :group 'tools |
57 :group 'convenience) | |
58 | |
59 (defcustom calculator-electric-mode nil | |
100171 | 60 "Run `calculator' electrically, in the echo area. |
33491 | 61 Electric mode saves some place but changes the way you interact with the |
62 calculator." | |
27587 | 63 :type 'boolean |
64 :group 'calculator) | |
65 | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
66 (defcustom calculator-use-menu t |
100171 | 67 "Make `calculator' create a menu. |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
68 Note that this requires easymenu. Must be set before loading." |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
69 :type 'boolean |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
70 :group 'calculator) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
71 |
27587 | 72 (defcustom calculator-bind-escape nil |
100171 | 73 "If non-nil, set escape to exit the calculator." |
27587 | 74 :type 'boolean |
75 :group 'calculator) | |
76 | |
77 (defcustom calculator-unary-style 'postfix | |
100171 | 78 "Value is either 'prefix or 'postfix. |
27587 | 79 This determines the default behavior of unary operators." |
80 :type '(choice (const prefix) (const postfix)) | |
81 :group 'calculator) | |
82 | |
33491 | 83 (defcustom calculator-prompt "Calc=%s> " |
100171 | 84 "The prompt used by the Emacs calculator. |
75773
8344ba1076b6
(calculator-mode-map): Fix typo in menu entry.
Juanma Barranquero <lekktu@gmail.com>
parents:
75762
diff
changeset
|
85 It should contain a \"%s\" somewhere that will indicate the i/o radixes; |
8344ba1076b6
(calculator-mode-map): Fix typo in menu entry.
Juanma Barranquero <lekktu@gmail.com>
parents:
75762
diff
changeset
|
86 this will be a two-character string as described in the documentation |
8344ba1076b6
(calculator-mode-map): Fix typo in menu entry.
Juanma Barranquero <lekktu@gmail.com>
parents:
75762
diff
changeset
|
87 for `calculator-mode'." |
27587 | 88 :type 'string |
89 :group 'calculator) | |
90 | |
33491 | 91 (defcustom calculator-number-digits 3 |
100171 | 92 "The calculator's number of digits used for standard display. |
33491 | 93 Used by the `calculator-standard-display' function - it will use the |
94 format string \"%.NC\" where this number is N and C is a character given | |
95 at runtime." | |
35214
668b2bcf528a
(calculator-number-digits): Fix :type.
Dave Love <fx@gnu.org>
parents:
33631
diff
changeset
|
96 :type 'integer |
27587 | 97 :group 'calculator) |
98 | |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
99 (defcustom calculator-radix-grouping-mode t |
100171 | 100 "Use digit grouping in radix output mode. |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
101 If this is set, chunks of `calculator-radix-grouping-digits' characters |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
102 will be separated by `calculator-radix-grouping-separator' when in radix |
62531
c905fcf5e3d9
Specify missing group (and type, if simple) in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
59056
diff
changeset
|
103 output mode is active (determined by `calculator-output-radix')." |
c905fcf5e3d9
Specify missing group (and type, if simple) in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
59056
diff
changeset
|
104 :type 'boolean |
c905fcf5e3d9
Specify missing group (and type, if simple) in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
59056
diff
changeset
|
105 :group 'calculator) |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
106 |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
107 (defcustom calculator-radix-grouping-digits 4 |
100171 | 108 "The number of digits used for grouping display in radix modes. |
62531
c905fcf5e3d9
Specify missing group (and type, if simple) in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
59056
diff
changeset
|
109 See `calculator-radix-grouping-mode'." |
c905fcf5e3d9
Specify missing group (and type, if simple) in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
59056
diff
changeset
|
110 :type 'integer |
c905fcf5e3d9
Specify missing group (and type, if simple) in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
59056
diff
changeset
|
111 :group 'calculator) |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
112 |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
113 (defcustom calculator-radix-grouping-separator "'" |
100171 | 114 "The separator used in radix grouping display. |
62531
c905fcf5e3d9
Specify missing group (and type, if simple) in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
59056
diff
changeset
|
115 See `calculator-radix-grouping-mode'." |
c905fcf5e3d9
Specify missing group (and type, if simple) in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
59056
diff
changeset
|
116 :type 'string |
c905fcf5e3d9
Specify missing group (and type, if simple) in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
59056
diff
changeset
|
117 :group 'calculator) |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
118 |
33491 | 119 (defcustom calculator-remove-zeros t |
100171 | 120 "Non-nil value means delete all redundant zero decimal digits. |
33491 | 121 If this value is not t, and not nil, redundant zeros are removed except |
122 for one and if it is nil, nothing is removed. | |
123 Used by the `calculator-remove-zeros' function." | |
124 :type '(choice (const t) (const leave-decimal) (const nil)) | |
27587 | 125 :group 'calculator) |
126 | |
33491 | 127 (defcustom calculator-displayer '(std ?n) |
100171 | 128 "A displayer specification for numerical values. |
33491 | 129 This is the displayer used to show all numbers in an expression. Result |
130 values will be displayed according to the first element of | |
131 `calculator-displayers'. | |
132 | |
133 The displayer is a symbol, a string or an expression. A symbol should | |
134 be the name of a one-argument function, a string is used with a single | |
135 argument and an expression will be evaluated with the variable `num' | |
136 bound to whatever should be displayed. If it is a function symbol, it | |
137 should be able to handle special symbol arguments, currently 'left and | |
138 'right which will be sent by special keys to modify display parameters | |
139 associated with the displayer function (for example to change the number | |
140 of digits displayed). | |
141 | |
142 An exception to the above is the case of the list (std C) where C is a | |
143 character, in this case the `calculator-standard-displayer' function | |
62531
c905fcf5e3d9
Specify missing group (and type, if simple) in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
59056
diff
changeset
|
144 will be used with this character for a format string." |
c905fcf5e3d9
Specify missing group (and type, if simple) in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
59056
diff
changeset
|
145 :group 'calculator) |
33491 | 146 |
147 (defcustom calculator-displayers | |
43091
f18f05d77411
(calculator-displayers): Doc fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
39818
diff
changeset
|
148 '(((std ?n) "Standard display, decimal point or scientific") |
33491 | 149 (calculator-eng-display "Eng display") |
150 ((std ?f) "Standard display, decimal point") | |
43091
f18f05d77411
(calculator-displayers): Doc fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
39818
diff
changeset
|
151 ((std ?e) "Standard display, scientific") |
33491 | 152 ("%S" "Emacs printer")) |
100171 | 153 "A list of displayers. |
33491 | 154 Each element is a list of a displayer and a description string. The |
43091
f18f05d77411
(calculator-displayers): Doc fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
39818
diff
changeset
|
155 first element is the one which is currently used, this is for the display |
33491 | 156 of result values not values in expressions. A displayer specification |
157 is the same as the values that can be stored in `calculator-displayer'. | |
158 | |
159 `calculator-rotate-displayer' rotates this list." | |
160 :type 'sexp | |
27587 | 161 :group 'calculator) |
162 | |
33491 | 163 (defcustom calculator-paste-decimals t |
100171 | 164 "If non-nil, convert pasted integers so they have a decimal point. |
33491 | 165 This makes it possible to paste big integers since they will be read as |
166 floats, otherwise the Emacs reader will fail on them." | |
27587 | 167 :type 'boolean |
168 :group 'calculator) | |
169 | |
39430
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
170 (defcustom calculator-copy-displayer nil |
100171 | 171 "If non-nil, this is any value that can be used for |
39430
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
172 `calculator-displayer', to format a string before copying it with |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
173 `calculator-copy'. If nil, then `calculator-displayer's normal value is |
62531
c905fcf5e3d9
Specify missing group (and type, if simple) in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
59056
diff
changeset
|
174 used." |
c905fcf5e3d9
Specify missing group (and type, if simple) in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
59056
diff
changeset
|
175 :type 'boolean |
c905fcf5e3d9
Specify missing group (and type, if simple) in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
59056
diff
changeset
|
176 :group 'calculator) |
39430
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
177 |
27587 | 178 (defcustom calculator-2s-complement nil |
100171 | 179 "If non-nil, show negative numbers in 2s complement in radix modes. |
27587 | 180 Otherwise show as a negative number." |
181 :type 'boolean | |
182 :group 'calculator) | |
183 | |
184 (defcustom calculator-mode-hook nil | |
100171 | 185 "List of hook functions for `calculator-mode' to run. |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
186 Note: if `calculator-electric-mode' is on, then this hook will get |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
187 activated in the minibuffer - in that case it should not do much more |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
188 than local key settings and other effects that will change things |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
189 outside the scope of calculator related code." |
27587 | 190 :type 'hook |
191 :group 'calculator) | |
192 | |
193 (defcustom calculator-user-registers nil | |
100171 | 194 "An association list of user-defined register bindings. |
27587 | 195 Each element in this list is a list of a character and a number that |
196 will be stored in that character's register. | |
197 | |
198 For example, use this to define the golden ratio number: | |
33491 | 199 (setq calculator-user-registers '((?g . 1.61803398875))) |
200 before you load calculator." | |
27587 | 201 :type '(repeat (cons character number)) |
202 :set '(lambda (_ val) | |
203 (and (boundp 'calculator-registers) | |
204 (setq calculator-registers | |
205 (append val calculator-registers))) | |
206 (setq calculator-user-registers val)) | |
207 :group 'calculator) | |
208 | |
209 (defcustom calculator-user-operators nil | |
100171 | 210 "A list of additional operators. |
27587 | 211 This is a list in the same format as specified in the documentation for |
212 `calculator-operators', that you can use to bind additional calculator | |
213 operators. It is probably not a good idea to modify this value with | |
214 `customize' since it is too complex... | |
215 | |
216 Examples: | |
217 | |
30889 | 218 * A very simple one, adding a postfix \"x-to-y\" conversion keys, using |
219 t as a prefix key: | |
27587 | 220 |
221 (setq calculator-user-operators | |
222 '((\"tf\" cl-to-fr (+ 32 (/ (* X 9) 5)) 1) | |
223 (\"tc\" fr-to-cl (/ (* (- X 32) 5) 9) 1) | |
224 (\"tp\" kg-to-lb (/ X 0.453592) 1) | |
225 (\"tk\" lb-to-kg (* X 0.453592) 1) | |
226 (\"tF\" mt-to-ft (/ X 0.3048) 1) | |
227 (\"tM\" ft-to-mt (* X 0.3048) 1))) | |
228 | |
229 * Using a function-like form is very simple, X for an argument (Y the | |
230 second in case of a binary operator), TX is a truncated version of X | |
231 and F does a recursive call, Here is a [very inefficient] Fibonacci | |
232 number calculation: | |
233 | |
234 (add-to-list 'calculator-user-operators | |
235 '(\"F\" fib (if (<= TX 1) | |
33491 | 236 1 |
237 (+ (F (- TX 1)) (F (- TX 2)))) 0)) | |
27587 | 238 |
239 Note that this will be either postfix or prefix, according to | |
240 `calculator-unary-style'." | |
241 :type '(repeat (list string symbol sexp integer integer)) | |
242 :group 'calculator) | |
243 | |
33631 | 244 ;;;===================================================================== |
27587 | 245 ;;; Code: |
246 | |
33631 | 247 ;;;--------------------------------------------------------------------- |
33491 | 248 ;;; Variables |
249 | |
27587 | 250 (defvar calculator-initial-operators |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
251 '(;; "+"/"-" have keybindings of themselves, not calculator-ops |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
252 ("=" = identity 1 -1) |
33491 | 253 (nobind "+" + + 2 4) |
254 (nobind "-" - - 2 4) | |
255 (nobind "+" + + -1 9) | |
256 (nobind "-" - - -1 9) | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
257 ("(" \( identity -1 -1) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
258 (")" \) identity +1 10) |
27587 | 259 ;; normal keys |
260 ("|" or (logior TX TY) 2 2) | |
261 ("#" xor (logxor TX TY) 2 2) | |
262 ("&" and (logand TX TY) 2 3) | |
263 ("*" * * 2 5) | |
264 ("/" / / 2 5) | |
265 ("\\" div (/ TX TY) 2 5) | |
266 ("%" rem (% TX TY) 2 5) | |
267 ("L" log log 2 6) | |
268 ("S" sin (sin DX) x 6) | |
269 ("C" cos (cos DX) x 6) | |
270 ("T" tan (tan DX) x 6) | |
271 ("IS" asin (D (asin X)) x 6) | |
272 ("IC" acos (D (acos X)) x 6) | |
273 ("IT" atan (D (atan X)) x 6) | |
274 ("Q" sqrt sqrt x 7) | |
81696
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
275 ("^" ^ calculator-expt 2 7) |
27587 | 276 ("!" ! calculator-fact x 7) |
277 (";" 1/ (/ 1 X) 1 7) | |
278 ("_" - - 1 8) | |
279 ("~" ~ (lognot TX) x 8) | |
280 (">" repR calculator-repR 1 8) | |
281 ("<" repL calculator-repL 1 8) | |
282 ("v" avg (/ (apply '+ L) (length L)) 0 8) | |
283 ("l" tot (apply '+ L) 0 8) | |
284 ) | |
285 "A list of initial operators. | |
286 This is a list in the same format as `calculator-operators'. Whenever | |
287 `calculator' starts, it looks at the value of this variable, and if it | |
288 is not empty, its contents is prepended to `calculator-operators' and | |
289 the appropriate key bindings are made. | |
290 | |
291 This variable is then reset to nil. Don't use this if you want to add | |
292 user-defined operators, use `calculator-user-operators' instead.") | |
293 | |
294 (defvar calculator-operators nil | |
295 "The calculator operators, each a list with: | |
296 | |
297 1. The key that is bound to for this operation (usually a string); | |
298 | |
299 2. The displayed symbol for this function; | |
300 | |
301 3. The function symbol, or a form that uses the variables `X' and `Y', | |
302 (if it is a binary operator), `TX' and `TY' (truncated integer | |
303 versions), `DX' (converted to radians if degrees mode is on), `D' | |
304 (function for converting radians to degrees if deg mode is on), `L' | |
305 (list of saved values), `F' (function for recursive iteration calls) | |
306 and evaluates to the function value - these variables are capital; | |
307 | |
33491 | 308 4. The function's arity, optional, one of: 2 => binary, -1 => prefix |
309 unary, +1 => postfix unary, 0 => a 0-arg operator func, non-number => | |
310 postfix/prefix as determined by `calculator-unary-style' (the | |
311 default); | |
27587 | 312 |
33491 | 313 5. The function's precedence - should be in the range of 1 (lowest) to |
314 9 (highest) (optional, defaults to 1); | |
27587 | 315 |
316 It it possible have a unary prefix version of a binary operator if it | |
317 comes later in this list. If the list begins with the symbol 'nobind, | |
318 then no key binding will take place - this is only useful for predefined | |
319 keys. | |
320 | |
321 Use `calculator-user-operators' to add operators to this list, see its | |
322 documentation for an example.") | |
323 | |
324 (defvar calculator-stack nil | |
325 "Stack contents - operations and operands.") | |
326 | |
327 (defvar calculator-curnum nil | |
328 "Current number being entered (as a string).") | |
329 | |
330 (defvar calculator-stack-display nil | |
331 "Cons of the stack and its string representation.") | |
332 | |
333 (defvar calculator-char-radix | |
334 '((?D . nil) (?B . bin) (?O . oct) (?H . hex) (?X . hex)) | |
335 "A table to convert input characters to corresponding radix symbols.") | |
336 | |
337 (defvar calculator-output-radix nil | |
338 "The mode for display, one of: nil (decimal), 'bin, 'oct or 'hex.") | |
339 | |
340 (defvar calculator-input-radix nil | |
341 "The mode for input, one of: nil (decimal), 'bin, 'oct or 'hex.") | |
342 | |
343 (defvar calculator-deg nil | |
344 "Non-nil if trig functions operate on degrees instead of radians.") | |
345 | |
346 (defvar calculator-saved-list nil | |
347 "A list of saved values collected.") | |
348 | |
349 (defvar calculator-saved-ptr 0 | |
350 "The pointer to the current saved number.") | |
351 | |
352 (defvar calculator-add-saved nil | |
353 "Bound to t when a value should be added to the saved-list.") | |
354 | |
355 (defvar calculator-display-fragile nil | |
356 "When non-nil, we see something that the next digit should replace.") | |
357 | |
358 (defvar calculator-buffer nil | |
359 "The current calculator buffer.") | |
360 | |
33491 | 361 (defvar calculator-eng-extra nil |
362 "Internal value used by `calculator-eng-display'.") | |
363 | |
364 (defvar calculator-eng-tmp-show nil | |
365 "Internal value used by `calculator-eng-display'.") | |
366 | |
27587 | 367 (defvar calculator-last-opXY nil |
368 "The last binary operation and its arguments. | |
369 Used for repeating operations in calculator-repR/L.") | |
370 | |
371 (defvar calculator-registers ; use user-bindings first | |
110525
e950143ab9e0
* lisp/emacs-lisp/float-sup.el (float-pi): New name for `pi'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107342
diff
changeset
|
372 (append calculator-user-registers |
e950143ab9e0
* lisp/emacs-lisp/float-sup.el (float-pi): New name for `pi'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107342
diff
changeset
|
373 (list (cons ?e float-e) (cons ?p float-pi))) |
27587 | 374 "The association list of calculator register values.") |
375 | |
376 (defvar calculator-saved-global-map nil | |
377 "Saved global key map.") | |
378 | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
379 (defvar calculator-restart-other-mode nil |
33491 | 380 "Used to hack restarting with the electric mode changed.") |
381 | |
33631 | 382 ;;;--------------------------------------------------------------------- |
33491 | 383 ;;; Key bindings |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
384 |
27587 | 385 (defvar calculator-mode-map nil |
386 "The calculator key map.") | |
387 | |
388 (or calculator-mode-map | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
389 (let ((map (make-sparse-keymap))) |
27587 | 390 (suppress-keymap map t) |
391 (define-key map "i" nil) | |
392 (define-key map "o" nil) | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
393 (let ((p |
33491 | 394 '((calculator-open-paren "[") |
395 (calculator-close-paren "]") | |
396 (calculator-op-or-exp "+" "-" [kp-add] [kp-subtract]) | |
397 (calculator-digit "0" "1" "2" "3" "4" "5" "6" "7" "8" | |
398 "9" "a" "b" "c" "d" "f" | |
399 [kp-0] [kp-1] [kp-2] [kp-3] [kp-4] | |
400 [kp-5] [kp-6] [kp-7] [kp-8] [kp-9]) | |
401 (calculator-op [kp-divide] [kp-multiply]) | |
402 (calculator-decimal "." [kp-decimal]) | |
403 (calculator-exp "e") | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
404 (calculator-dec/deg-mode "D") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
405 (calculator-set-register "s") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
406 (calculator-get-register "g") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
407 (calculator-radix-mode "H" "X" "O" "B") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
408 (calculator-radix-input-mode "id" "ih" "ix" "io" "ib" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
409 "iD" "iH" "iX" "iO" "iB") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
410 (calculator-radix-output-mode "od" "oh" "ox" "oo" "ob" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
411 "oD" "oH" "oX" "oO" "oB") |
33491 | 412 (calculator-rotate-displayer "'") |
413 (calculator-rotate-displayer-back "\"") | |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
414 (calculator-displayer-prev "{") |
39430
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
415 (calculator-displayer-next "}") |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
416 (calculator-saved-up [up] [?\C-p]) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
417 (calculator-saved-down [down] [?\C-n]) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
418 (calculator-quit "q" [?\C-g]) |
33491 | 419 (calculator-enter [enter] [linefeed] [kp-enter] |
420 [return] [?\r] [?\n]) | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
421 (calculator-save-on-list " " [space]) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
422 (calculator-clear-saved [?\C-c] [(control delete)]) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
423 (calculator-save-and-quit [(control return)] |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
424 [(control kp-enter)]) |
33631 | 425 (calculator-paste [insert] [(shift insert)] |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
426 [paste] [mouse-2] [?\C-y]) |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
427 (calculator-clear [delete] [?\C-?] [?\C-d]) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
428 (calculator-help [?h] [??] [f1] [help]) |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
429 (calculator-copy [(control insert)] [copy]) |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
430 (calculator-backspace [backspace]) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
431 ))) |
27587 | 432 (while p |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
433 ;; reverse the keys so first defs come last - makes the more |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
434 ;; sensible bindings visible in the menu |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
435 (let ((func (car (car p))) (keys (reverse (cdr (car p))))) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
436 (while keys |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
437 (define-key map (car keys) func) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
438 (setq keys (cdr keys)))) |
27587 | 439 (setq p (cdr p)))) |
440 (if calculator-bind-escape | |
441 (progn (define-key map [?\e] 'calculator-quit) | |
442 (define-key map [escape] 'calculator-quit)) | |
443 (define-key map [?\e ?\e ?\e] 'calculator-quit)) | |
444 ;; make C-h work in text-mode | |
445 (or window-system (define-key map [?\C-h] 'calculator-backspace)) | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
446 ;; set up a menu |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
447 (if (and calculator-use-menu (not (boundp 'calculator-menu))) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
448 (let ((radix-selectors |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
449 (mapcar (lambda (x) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
450 `([,(nth 0 x) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
451 (calculator-radix-mode ,(nth 2 x)) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
452 :style radio |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
453 :keys ,(nth 2 x) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
454 :selected |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
455 (and |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
456 (eq calculator-input-radix ',(nth 1 x)) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
457 (eq calculator-output-radix ',(nth 1 x)))] |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
458 [,(concat (nth 0 x) " Input") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
459 (calculator-radix-input-mode ,(nth 2 x)) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
460 :keys ,(concat "i" (downcase (nth 2 x))) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
461 :style radio |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
462 :selected |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
463 (eq calculator-input-radix ',(nth 1 x))] |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
464 [,(concat (nth 0 x) " Output") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
465 (calculator-radix-output-mode ,(nth 2 x)) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
466 :keys ,(concat "o" (downcase (nth 2 x))) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
467 :style radio |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
468 :selected |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
469 (eq calculator-output-radix ',(nth 1 x))])) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
470 '(("Decimal" nil "D") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
471 ("Binary" bin "B") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
472 ("Octal" oct "O") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
473 ("Hexadecimal" hex "H")))) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
474 (op '(lambda (name key) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
475 `[,name (calculator-op ,key) :keys ,key]))) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
476 (easy-menu-define |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
477 calculator-menu map "Calculator menu." |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
478 `("Calculator" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
479 ["Help" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
480 (let ((last-command 'calculator-help)) (calculator-help)) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
481 :keys "?"] |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
482 "---" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
483 ["Copy" calculator-copy] |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
484 ["Paste" calculator-paste] |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
485 "---" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
486 ["Electric mode" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
487 (progn (calculator-quit) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
488 (setq calculator-restart-other-mode t) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
489 (run-with-timer 0.1 nil '(lambda () (message nil))) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
490 ;; the message from the menu will be visible, |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
491 ;; couldn't make it go away... |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
492 (calculator)) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
493 :active (not calculator-electric-mode)] |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
494 ["Normal mode" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
495 (progn (setq calculator-restart-other-mode t) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
496 (calculator-quit)) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
497 :active calculator-electric-mode] |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
498 "---" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
499 ("Functions" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
500 ,(funcall op "Repeat-right" ">") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
501 ,(funcall op "Repeat-left" "<") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
502 "------General------" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
503 ,(funcall op "Reciprocal" ";") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
504 ,(funcall op "Log" "L") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
505 ,(funcall op "Square-root" "Q") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
506 ,(funcall op "Factorial" "!") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
507 "------Trigonometric------" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
508 ,(funcall op "Sinus" "S") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
509 ,(funcall op "Cosine" "C") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
510 ,(funcall op "Tangent" "T") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
511 ,(funcall op "Inv-Sinus" "IS") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
512 ,(funcall op "Inv-Cosine" "IC") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
513 ,(funcall op "Inv-Tangent" "IT") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
514 "------Bitwise------" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
515 ,(funcall op "Or" "|") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
516 ,(funcall op "Xor" "#") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
517 ,(funcall op "And" "&") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
518 ,(funcall op "Not" "~")) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
519 ("Saved List" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
520 ["Eval+Save" calculator-save-on-list] |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
521 ["Prev number" calculator-saved-up] |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
522 ["Next number" calculator-saved-down] |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
523 ["Delete current" calculator-clear |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
524 :active (and calculator-display-fragile |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
525 calculator-saved-list |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
526 (= (car calculator-stack) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
527 (nth calculator-saved-ptr |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
528 calculator-saved-list)))] |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
529 ["Delete all" calculator-clear-saved] |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
530 "---" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
531 ,(funcall op "List-total" "l") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
532 ,(funcall op "List-average" "v")) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
533 ("Registers" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
534 ["Get register" calculator-get-register] |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
535 ["Set register" calculator-set-register]) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
536 ("Modes" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
537 ["Radians" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
538 (progn |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
539 (and (or calculator-input-radix calculator-output-radix) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
540 (calculator-radix-mode "D")) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
541 (and calculator-deg (calculator-dec/deg-mode))) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
542 :keys "D" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
543 :style radio |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
544 :selected (not (or calculator-input-radix |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
545 calculator-output-radix |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
546 calculator-deg))] |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
547 ["Degrees" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
548 (progn |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
549 (and (or calculator-input-radix calculator-output-radix) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
550 (calculator-radix-mode "D")) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
551 (or calculator-deg (calculator-dec/deg-mode))) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
552 :keys "D" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
553 :style radio |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
554 :selected (and calculator-deg |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
555 (not (or calculator-input-radix |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
556 calculator-output-radix)))] |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
557 "---" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
558 ,@(mapcar 'car radix-selectors) |
75773
8344ba1076b6
(calculator-mode-map): Fix typo in menu entry.
Juanma Barranquero <lekktu@gmail.com>
parents:
75762
diff
changeset
|
559 ("Separate I/O" |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
560 ,@(mapcar (lambda (x) (nth 1 x)) radix-selectors) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
561 "---" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
562 ,@(mapcar (lambda (x) (nth 2 x)) radix-selectors))) |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
563 ("Decimal Display" |
33491 | 564 ,@(mapcar (lambda (d) |
565 (vector (cadr d) | |
566 ;; Note: inserts actual object here | |
567 `(calculator-rotate-displayer ',d))) | |
568 calculator-displayers) | |
569 "---" | |
39430
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
570 ["Change Prev Display" calculator-displayer-prev] |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
571 ["Change Next Display" calculator-displayer-next]) |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
572 "---" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
573 ["Copy+Quit" calculator-save-and-quit] |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
574 ["Quit" calculator-quit])))) |
27587 | 575 (setq calculator-mode-map map))) |
576 | |
33631 | 577 ;;;--------------------------------------------------------------------- |
33491 | 578 ;;; Startup and mode stuff |
579 | |
27587 | 580 (defun calculator-mode () |
33491 | 581 ;; this help is also used as the major help screen |
582 "A [not so] simple calculator for Emacs. | |
27587 | 583 |
584 This calculator is used in the same way as other popular calculators | |
585 like xcalc or calc.exe - but using an Emacs interface. | |
586 | |
587 Expressions are entered using normal infix notation, parens are used as | |
588 normal. Unary functions are usually postfix, but some depends on the | |
589 value of `calculator-unary-style' (if the style for an operator below is | |
590 specified, then it is fixed, otherwise it depends on this variable). | |
591 `+' and `-' can be used as either binary operators or prefix unary | |
592 operators. Numbers can be entered with exponential notation using `e', | |
593 except when using a non-decimal radix mode for input (in this case `e' | |
81696
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
594 will be the hexadecimal digit). If the result of a calculation is too |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
595 large (out of range for Emacs), the value of \"inf\" is returned. |
27587 | 596 |
597 Here are the editing keys: | |
598 * `RET' `=' evaluate the current expression | |
599 * `C-insert' copy the whole current expression to the `kill-ring' | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
600 * `C-return' evaluate, save result the `kill-ring' and exit |
27587 | 601 * `insert' paste a number if the one was copied (normally) |
602 * `delete' `C-d' clear last argument or whole expression (hit twice) | |
603 * `backspace' delete a digit or a previous expression element | |
604 * `h' `?' pop-up a quick reference help | |
605 * `ESC' `q' exit (`ESC' can be used if `calculator-bind-escape' is | |
606 non-nil, otherwise use three consecutive `ESC's) | |
607 | |
608 These operators are pre-defined: | |
609 * `+' `-' `*' `/' the common binary operators | |
610 * `\\' `%' integer division and reminder | |
611 * `_' `;' postfix unary negation and reciprocal | |
612 * `^' `L' binary operators for x^y and log(x) in base y | |
613 * `Q' `!' unary square root and factorial | |
614 * `S' `C' `T' unary trigonometric operators - sin, cos and tan | |
615 * `|' `#' `&' `~' bitwise operators - or, xor, and, not | |
616 | |
617 The trigonometric functions can be inverted if prefixed with an `I', see | |
618 below for the way to use degrees instead of the default radians. | |
619 | |
620 Two special postfix unary operators are `>' and `<': whenever a binary | |
621 operator is performed, it is remembered along with its arguments; then | |
622 `>' (`<') will apply the same operator with the same right (left) | |
623 argument. | |
624 | |
625 hex/oct/bin modes can be set for input and for display separately. | |
626 Another toggle-able mode is for using degrees instead of radians for | |
627 trigonometric functions. | |
628 The keys to switch modes are (`X' is shortcut for `H'): | |
629 * `D' switch to all-decimal mode, or toggle degrees/radians | |
630 * `B' `O' `H' `X' binary/octal/hexadecimal modes for input & display | |
631 * `i' `o' followed by one of `D' `B' `O' `H' `X' (case | |
632 insensitive) sets only the input or display radix mode | |
633 The prompt indicates the current modes: | |
634 * \"D=\": degrees mode; | |
635 * \"?=\": (? is B/O/H) this is the radix for both input and output; | |
636 * \"=?\": (? is B/O/H) the display radix (when input is decimal); | |
637 * \"??\": (? is D/B/O/H) 1st char for input radix, 2nd for display. | |
638 | |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
639 Also, the quote key can be used to switch display modes for decimal |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
640 numbers (double-quote rotates back), and the two brace characters |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
641 \(\"{\" and \"}\" change display parameters that these displayers use (if |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
642 they handle such). If output is using any radix mode, then these keys |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
643 toggle digit grouping mode and the chunk size. |
33491 | 644 |
27587 | 645 Values can be saved for future reference in either a list of saved |
646 values, or in registers. | |
647 | |
648 The list of saved values is useful for statistics operations on some | |
649 collected data. It is possible to navigate in this list, and if the | |
650 value shown is the current one on the list, an indication is displayed | |
651 as \"[N]\" if this is the last number and there are N numbers, or | |
652 \"[M/N]\" if the M-th value is shown. | |
653 * `SPC' evaluate the current value as usual, but also adds | |
654 the result to the list of saved values | |
655 * `l' `v' computes total / average of saved values | |
656 * `up' `C-p' browse to the previous value in the list | |
657 * `down' `C-n' browse to the next value in the list | |
658 * `delete' `C-d' remove current value from the list (if it is on it) | |
659 * `C-delete' `C-c' delete the whole list | |
660 | |
661 Registers are variable-like place-holders for values: | |
662 * `s' followed by a character attach the current value to that character | |
663 * `g' followed by a character fetches the attached value | |
664 | |
665 There are many variables that can be used to customize the calculator. | |
666 Some interesting customization variables are: | |
667 * `calculator-electric-mode' use only the echo-area electrically. | |
668 * `calculator-unary-style' set most unary ops to pre/postfix style. | |
669 * `calculator-user-registers' to define user-preset registers. | |
670 * `calculator-user-operators' to add user-defined operators. | |
671 See the documentation for these variables, and \"calculator.el\" for | |
672 more information. | |
673 | |
674 \\{calculator-mode-map}" | |
675 (interactive) | |
676 (kill-all-local-variables) | |
677 (setq major-mode 'calculator-mode) | |
678 (setq mode-name "Calculator") | |
679 (use-local-map calculator-mode-map) | |
62720
eb01420c0088
(calculator-mode): Use run-mode-hooks.
Lute Kamstra <lute@gnu.org>
parents:
62531
diff
changeset
|
680 (run-mode-hooks 'calculator-mode-hook)) |
27587 | 681 |
33491 | 682 (eval-when-compile (require 'electric) (require 'ehelp)) |
683 | |
27587 | 684 ;;;###autoload |
685 (defun calculator () | |
33491 | 686 "Run the Emacs calculator. |
27587 | 687 See the documentation for `calculator-mode' for more information." |
688 (interactive) | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
689 (if calculator-restart-other-mode |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
690 (setq calculator-electric-mode (not calculator-electric-mode))) |
27587 | 691 (if calculator-initial-operators |
692 (progn (calculator-add-operators calculator-initial-operators) | |
693 (setq calculator-initial-operators nil) | |
694 ;; don't change this since it is a customization variable, | |
33491 | 695 ;; its set function will add any new operators |
27587 | 696 (calculator-add-operators calculator-user-operators))) |
49575
336c18b62203
(calculator): Don't use the minibuffer even in electric mode; use a private
Juanma Barranquero <lekktu@gmail.com>
parents:
43091
diff
changeset
|
697 (setq calculator-buffer (get-buffer-create "*calculator*")) |
27587 | 698 (if calculator-electric-mode |
699 (save-window-excursion | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
700 (progn (require 'electric) (message nil)) ; hide load message |
27587 | 701 (let (old-g-map old-l-map (echo-keystrokes 0) |
702 (garbage-collection-messages nil)) ; no gc msg when electric | |
49575
336c18b62203
(calculator): Don't use the minibuffer even in electric mode; use a private
Juanma Barranquero <lekktu@gmail.com>
parents:
43091
diff
changeset
|
703 (set-window-buffer (minibuffer-window) calculator-buffer) |
27587 | 704 (select-window (minibuffer-window)) |
705 (calculator-reset) | |
706 (calculator-update-display) | |
707 (setq old-l-map (current-local-map)) | |
708 (setq old-g-map (current-global-map)) | |
709 (setq calculator-saved-global-map (current-global-map)) | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
710 (use-local-map nil) |
27587 | 711 (use-global-map calculator-mode-map) |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
712 (run-hooks 'calculator-mode-hook) |
27587 | 713 (unwind-protect |
714 (catch 'calculator-done | |
715 (Electric-command-loop | |
716 'calculator-done | |
717 ;; can't use 'noprompt, bug in electric.el | |
718 '(lambda () 'noprompt) | |
719 nil | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
720 (lambda (x y) (calculator-update-display)))) |
27587 | 721 (and calculator-buffer |
722 (catch 'calculator-done (calculator-quit))) | |
723 (use-local-map old-l-map) | |
724 (use-global-map old-g-map)))) | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
725 (progn |
39430
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
726 (cond |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
727 ((not (get-buffer-window calculator-buffer)) |
107342
176028ab9fc6
* calculator.el (calculator): Don't bind split-window-keep-point (Bug#5674).
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
728 (let ((window-min-height 2)) |
39430
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
729 ;; maybe leave two lines for our window because of the normal |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
730 ;; `raised' modeline in Emacs 21 |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
731 (select-window |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
732 (split-window-vertically |
75757
fa4ebb68ab30
(calculator): Do more extensive checking for when 3 lines should be
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75347
diff
changeset
|
733 ;; If the modeline might interfere with the calculator buffer, |
75773
8344ba1076b6
(calculator-mode-map): Fix typo in menu entry.
Juanma Barranquero <lekktu@gmail.com>
parents:
75762
diff
changeset
|
734 ;; use 3 lines instead. |
39430
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
735 (if (and (fboundp 'face-attr-construct) |
75762
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
736 (let* ((dh (plist-get (face-attr-construct 'default) :height)) |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
737 (mf (face-attr-construct 'modeline)) |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
738 (mh (plist-get mf :height))) |
75773
8344ba1076b6
(calculator-mode-map): Fix typo in menu entry.
Juanma Barranquero <lekktu@gmail.com>
parents:
75762
diff
changeset
|
739 ;; If the modeline is shorter than the default, |
8344ba1076b6
(calculator-mode-map): Fix typo in menu entry.
Juanma Barranquero <lekktu@gmail.com>
parents:
75762
diff
changeset
|
740 ;; stick with 2 lines. (It may be necessary to |
75762
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
741 ;; check how much shorter.) |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
742 (and |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
743 (not |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
744 (or (and (integerp dh) |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
745 (integerp mh) |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
746 (< mh dh)) |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
747 (and (numberp mh) |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
748 (not (integerp mh)) |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
749 (< mh 1)))) |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
750 (or |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
751 ;; If the modeline is taller than the default, |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
752 ;; use 3 lines. |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
753 (and (integerp dh) |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
754 (integerp mh) |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
755 (> mh dh)) |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
756 (and (numberp mh) |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
757 (not (integerp mh)) |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
758 (> mh 1)) |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
759 ;; If the modeline has a box with non-negative line-width, |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
760 ;; use 3 lines. |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
761 (let* ((bx (plist-get mf :box)) |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
762 (lh (plist-get bx :line-width))) |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
763 (and bx |
75773
8344ba1076b6
(calculator-mode-map): Fix typo in menu entry.
Juanma Barranquero <lekktu@gmail.com>
parents:
75762
diff
changeset
|
764 (or |
75762
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
765 (not lh) |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
766 (> lh 0)))) |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
767 ;; If the modeline has an overline, use 3 lines. |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
768 (plist-get (face-attr-construct 'modeline) :overline))))) |
39430
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
769 -3 -2))) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
770 (switch-to-buffer calculator-buffer))) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
771 ((not (eq (current-buffer) calculator-buffer)) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
772 (select-window (get-buffer-window calculator-buffer)))) |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
773 (calculator-mode) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
774 (setq buffer-read-only t) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
775 (calculator-reset) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
776 (message "Hit `?' For a quick help screen."))) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
777 (if (and calculator-restart-other-mode calculator-electric-mode) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
778 (calculator))) |
27587 | 779 |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
780 (defun calculator-message (string &rest arguments) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
781 "Same as `message', but special handle of electric mode." |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
782 (apply 'message string arguments) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
783 (if calculator-electric-mode |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
784 (progn (sit-for 1) (message nil)))) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
785 |
33631 | 786 ;;;--------------------------------------------------------------------- |
43091
f18f05d77411
(calculator-displayers): Doc fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
39818
diff
changeset
|
787 ;;; Operators |
33491 | 788 |
27587 | 789 (defun calculator-op-arity (op) |
790 "Return OP's arity, 2, +1 or -1." | |
791 (let ((arity (or (nth 3 op) 'x))) | |
792 (if (numberp arity) | |
793 arity | |
794 (if (eq calculator-unary-style 'postfix) +1 -1)))) | |
795 | |
796 (defun calculator-op-prec (op) | |
797 "Return OP's precedence for reducing when inserting into the stack. | |
798 Defaults to 1." | |
799 (or (nth 4 op) 1)) | |
800 | |
801 (defun calculator-add-operators (more-ops) | |
802 "This function handles operator addition. | |
803 Adds MORE-OPS to `calculator-operator', called initially to handle | |
804 `calculator-initial-operators' and `calculator-user-operators'." | |
805 (let ((added-ops nil)) | |
806 (while more-ops | |
807 (or (eq (car (car more-ops)) 'nobind) | |
808 (let ((i -1) (key (car (car more-ops)))) | |
809 ;; make sure the key is undefined, so it's easy to define | |
810 ;; prefix keys | |
811 (while (< (setq i (1+ i)) (length key)) | |
812 (or (keymapp | |
813 (lookup-key calculator-mode-map | |
814 (substring key 0 (1+ i)))) | |
815 (progn | |
816 (define-key | |
817 calculator-mode-map (substring key 0 (1+ i)) nil) | |
818 (setq i (length key))))) | |
819 (define-key calculator-mode-map key 'calculator-op))) | |
820 (setq added-ops (cons (if (eq (car (car more-ops)) 'nobind) | |
821 (cdr (car more-ops)) | |
822 (car more-ops)) | |
823 added-ops)) | |
824 (setq more-ops (cdr more-ops))) | |
825 ;; added-ops come first, but in correct order | |
826 (setq calculator-operators | |
827 (append (nreverse added-ops) calculator-operators)))) | |
828 | |
33631 | 829 ;;;--------------------------------------------------------------------- |
33491 | 830 ;;; Display stuff |
831 | |
27587 | 832 (defun calculator-reset () |
833 "Reset calculator variables." | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
834 (or calculator-restart-other-mode |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
835 (setq calculator-stack nil |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
836 calculator-curnum nil |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
837 calculator-stack-display nil |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
838 calculator-display-fragile nil)) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
839 (setq calculator-restart-other-mode nil) |
27587 | 840 (calculator-update-display)) |
841 | |
842 (defun calculator-get-prompt () | |
843 "Return a string to display. | |
844 The string is set not to exceed the screen width." | |
845 (let* ((calculator-prompt | |
846 (format calculator-prompt | |
847 (cond | |
848 ((or calculator-output-radix calculator-input-radix) | |
849 (if (eq calculator-output-radix | |
850 calculator-input-radix) | |
851 (concat | |
852 (char-to-string | |
853 (car (rassq calculator-output-radix | |
854 calculator-char-radix))) | |
855 "=") | |
856 (concat | |
857 (if calculator-input-radix | |
858 (char-to-string | |
859 (car (rassq calculator-input-radix | |
860 calculator-char-radix))) | |
861 "=") | |
862 (char-to-string | |
863 (car (rassq calculator-output-radix | |
864 calculator-char-radix)))))) | |
865 (calculator-deg "D=") | |
866 (t "==")))) | |
867 (prompt | |
868 (concat calculator-prompt | |
869 (cdr calculator-stack-display) | |
870 (cond (calculator-curnum | |
871 ;; number being typed | |
872 (concat calculator-curnum "_")) | |
873 ((and (= 1 (length calculator-stack)) | |
874 calculator-display-fragile) | |
875 ;; only the result is shown, next number will | |
876 ;; restart | |
877 nil) | |
878 (t | |
879 ;; waiting for a number or an operator | |
880 "?")))) | |
881 (trim (- (length prompt) (1- (window-width))))) | |
882 (if (<= trim 0) | |
883 prompt | |
884 (concat calculator-prompt | |
885 (substring prompt (+ trim (length calculator-prompt))))))) | |
886 | |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
887 (defun calculator-string-to-number (str) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
888 "Convert the given STR to a number, according to the value of |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
889 `calculator-input-radix'." |
27587 | 890 (if calculator-input-radix |
891 (let ((radix | |
892 (cdr (assq calculator-input-radix | |
893 '((bin . 2) (oct . 8) (hex . 16))))) | |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
894 (i -1) (value 0) (new-value 0)) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
895 ;; assume mostly valid input (e.g., characters in range) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
896 (while (< (setq i (1+ i)) (length str)) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
897 (setq new-value |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
898 (let* ((ch (upcase (aref str i))) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
899 (n (cond ((< ch ?0) nil) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
900 ((<= ch ?9) (- ch ?0)) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
901 ((< ch ?A) nil) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
902 ((<= ch ?Z) (- ch (- ?A 10))) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
903 (t nil)))) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
904 (if (and n (<= 0 n) (< n radix)) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
905 (+ n (* radix value)) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
906 (progn |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
907 (calculator-message |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
908 "Warning: Ignoring bad input character `%c'." ch) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
909 (sit-for 1) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
910 value)))) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
911 (if (if (< new-value 0) (> value 0) (< value 0)) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
912 (calculator-message "Warning: Overflow in input.")) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
913 (setq value new-value)) |
27587 | 914 value) |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
915 (car (read-from-string |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
916 (cond ((equal "." str) "0.0") |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
917 ((string-match "[eE][+-]?$" str) (concat str "0")) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
918 ((string-match "\\.[0-9]\\|[eE]" str) str) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
919 ((string-match "\\." str) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
920 ;; do this because Emacs reads "23." as an integer |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
921 (concat str "0")) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
922 ((stringp str) (concat str ".0")) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
923 (t "0.0")))))) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
924 |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
925 (defun calculator-curnum-value () |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
926 "Get the numeric value of the displayed number string as a float." |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
927 (calculator-string-to-number calculator-curnum)) |
27587 | 928 |
33491 | 929 (defun calculator-rotate-displayer (&optional new-disp) |
930 "Switch to the next displayer on the `calculator-displayers' list. | |
931 Can be called with an optional argument NEW-DISP to force rotation to | |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
932 that argument. |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
933 If radix output mode is active, toggle digit grouping." |
33491 | 934 (interactive) |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
935 (cond |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
936 (calculator-output-radix |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
937 (setq calculator-radix-grouping-mode |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
938 (not calculator-radix-grouping-mode)) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
939 (calculator-message |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
940 "Digit grouping mode %s." |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
941 (if calculator-radix-grouping-mode "ON" "OFF"))) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
942 (t |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
943 (setq calculator-displayers |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
944 (if (and new-disp (memq new-disp calculator-displayers)) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
945 (let ((tmp nil)) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
946 (while (not (eq (car calculator-displayers) new-disp)) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
947 (setq tmp (cons (car calculator-displayers) tmp)) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
948 (setq calculator-displayers |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
949 (cdr calculator-displayers))) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
950 (setq calculator-displayers |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
951 (nconc calculator-displayers (nreverse tmp)))) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
952 (nconc (cdr calculator-displayers) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
953 (list (car calculator-displayers))))) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
954 (calculator-message |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
955 "Using %s." (cadr (car calculator-displayers))))) |
33491 | 956 (calculator-enter)) |
957 | |
958 (defun calculator-rotate-displayer-back () | |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
959 "Like `calculator-rotate-displayer', but rotates modes back. |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
960 If radix output mode is active, toggle digit grouping." |
33491 | 961 (interactive) |
962 (calculator-rotate-displayer (car (last calculator-displayers)))) | |
963 | |
39430
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
964 (defun calculator-displayer-prev () |
33491 | 965 "Send the current displayer function a 'left argument. |
966 This is used to modify display arguments (if the current displayer | |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
967 function supports this). |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
968 If radix output mode is active, increase the grouping size." |
33491 | 969 (interactive) |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
970 (if calculator-output-radix |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
971 (progn (setq calculator-radix-grouping-digits |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
972 (1+ calculator-radix-grouping-digits)) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
973 (calculator-enter)) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
974 (and (car calculator-displayers) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
975 (let ((disp (caar calculator-displayers))) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
976 (cond |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
977 ((symbolp disp) (funcall disp 'left)) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
978 ((and (consp disp) (eq 'std (car disp))) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
979 (calculator-standard-displayer 'left (cadr disp)))))))) |
33491 | 980 |
39430
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
981 (defun calculator-displayer-next () |
33491 | 982 "Send the current displayer function a 'right argument. |
983 This is used to modify display arguments (if the current displayer | |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
984 function supports this). |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
985 If radix output mode is active, decrease the grouping size." |
33491 | 986 (interactive) |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
987 (if calculator-output-radix |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
988 (progn (setq calculator-radix-grouping-digits |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
989 (max 2 (1- calculator-radix-grouping-digits))) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
990 (calculator-enter)) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
991 (and (car calculator-displayers) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
992 (let ((disp (caar calculator-displayers))) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
993 (cond |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
994 ((symbolp disp) (funcall disp 'right)) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
995 ((and (consp disp) (eq 'std (car disp))) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
996 (calculator-standard-displayer 'right (cadr disp)))))))) |
33491 | 997 |
998 (defun calculator-remove-zeros (numstr) | |
99899
2796739a5e4f
* calculator.el (calculator-op-or-exp): Reflow docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94680
diff
changeset
|
999 "Get a number string NUMSTR and remove unnecessary zeros. |
2796739a5e4f
* calculator.el (calculator-op-or-exp): Reflow docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94680
diff
changeset
|
1000 The behavior of this function is controlled by |
33491 | 1001 `calculator-remove-zeros'." |
1002 (cond ((and (eq calculator-remove-zeros t) | |
1003 (string-match "\\.0+\\([eE][+-]?[0-9]*\\)?$" numstr)) | |
1004 ;; remove all redundant zeros leaving an integer | |
1005 (if (match-beginning 1) | |
1006 (concat (substring numstr 0 (match-beginning 0)) | |
1007 (match-string 1 numstr)) | |
1008 (substring numstr 0 (match-beginning 0)))) | |
1009 ((and calculator-remove-zeros | |
1010 (string-match | |
1011 "\\..\\([0-9]*[1-9]\\)?\\(0+\\)\\([eE][+-]?[0-9]*\\)?$" | |
1012 numstr)) | |
1013 ;; remove zeros, except for first after the "." | |
1014 (if (match-beginning 3) | |
1015 (concat (substring numstr 0 (match-beginning 2)) | |
1016 (match-string 3 numstr)) | |
1017 (substring numstr 0 (match-beginning 2)))) | |
1018 (t numstr))) | |
1019 | |
1020 (defun calculator-standard-displayer (num char) | |
1021 "Standard display function, used to display NUM. | |
1022 Its behavior is determined by `calculator-number-digits' and the given | |
1023 CHAR argument (both will be used to compose a format string). If the | |
1024 char is \"n\" then this function will choose one between %f or %e, this | |
1025 is a work around %g jumping to exponential notation too fast. | |
1026 | |
1027 The special 'left and 'right symbols will make it change the current | |
1028 number of digits displayed (`calculator-number-digits'). | |
1029 | |
1030 It will also remove redundant zeros from the result." | |
1031 (if (symbolp num) | |
1032 (cond ((eq num 'left) | |
1033 (and (> calculator-number-digits 0) | |
1034 (setq calculator-number-digits | |
1035 (1- calculator-number-digits)) | |
1036 (calculator-enter))) | |
1037 ((eq num 'right) | |
1038 (setq calculator-number-digits | |
1039 (1+ calculator-number-digits)) | |
1040 (calculator-enter))) | |
39430
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1041 (let ((str (if (zerop num) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1042 "0" |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1043 (format |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1044 (concat "%." |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1045 (number-to-string calculator-number-digits) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1046 (if (eq char ?n) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1047 (let ((n (abs num))) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1048 (if (or (< n 0.001) (> n 1e8)) "e" "f")) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1049 (string char))) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1050 num)))) |
33491 | 1051 (calculator-remove-zeros str)))) |
1052 | |
1053 (defun calculator-eng-display (num) | |
1054 "Display NUM in engineering notation. | |
1055 The number of decimal digits used is controlled by | |
1056 `calculator-number-digits', so to change it at runtime you have to use | |
1057 the 'left or 'right when one of the standard modes is used." | |
1058 (if (symbolp num) | |
1059 (cond ((eq num 'left) | |
1060 (setq calculator-eng-extra | |
1061 (if calculator-eng-extra | |
1062 (1+ calculator-eng-extra) | |
1063 1)) | |
1064 (let ((calculator-eng-tmp-show t)) (calculator-enter))) | |
1065 ((eq num 'right) | |
1066 (setq calculator-eng-extra | |
1067 (if calculator-eng-extra | |
1068 (1- calculator-eng-extra) | |
1069 -1)) | |
1070 (let ((calculator-eng-tmp-show t)) (calculator-enter)))) | |
1071 (let ((exp 0)) | |
1072 (and (not (= 0 num)) | |
1073 (progn | |
1074 (while (< (abs num) 1.0) | |
1075 (setq num (* num 1000.0)) (setq exp (- exp 3))) | |
1076 (while (> (abs num) 999.0) | |
1077 (setq num (/ num 1000.0)) (setq exp (+ exp 3))) | |
1078 (and calculator-eng-tmp-show | |
1079 (not (= 0 calculator-eng-extra)) | |
1080 (let ((i calculator-eng-extra)) | |
1081 (while (> i 0) | |
1082 (setq num (* num 1000.0)) (setq exp (- exp 3)) | |
1083 (setq i (1- i))) | |
1084 (while (< i 0) | |
1085 (setq num (/ num 1000.0)) (setq exp (+ exp 3)) | |
1086 (setq i (1+ i))))))) | |
1087 (or calculator-eng-tmp-show (setq calculator-eng-extra nil)) | |
39818
6564021e098e
(calculator-eng-display): Don't call concat
Gerd Moellmann <gerd@gnu.org>
parents:
39430
diff
changeset
|
1088 (let ((str (format (concat "%." (number-to-string |
6564021e098e
(calculator-eng-display): Don't call concat
Gerd Moellmann <gerd@gnu.org>
parents:
39430
diff
changeset
|
1089 calculator-number-digits) |
6564021e098e
(calculator-eng-display): Don't call concat
Gerd Moellmann <gerd@gnu.org>
parents:
39430
diff
changeset
|
1090 "f") |
33491 | 1091 num))) |
1092 (concat (let ((calculator-remove-zeros | |
1093 ;; make sure we don't leave integers | |
1094 (and calculator-remove-zeros 'x))) | |
1095 (calculator-remove-zeros str)) | |
1096 "e" (number-to-string exp)))))) | |
1097 | |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1098 (defun calculator-number-to-string (num) |
27587 | 1099 "Convert NUM to a displayable string." |
1100 (cond | |
1101 ((and (numberp num) calculator-output-radix) | |
1102 ;; print with radix - for binary I convert the octal number | |
1103 (let ((str (format (if (eq calculator-output-radix 'hex) "%x" "%o") | |
1104 (calculator-truncate | |
1105 (if calculator-2s-complement num (abs num)))))) | |
1106 (if (eq calculator-output-radix 'bin) | |
1107 (let ((i -1) (s "")) | |
1108 (while (< (setq i (1+ i)) (length str)) | |
1109 (setq s | |
1110 (concat s | |
1111 (cdr (assq (aref str i) | |
1112 '((?0 . "000") (?1 . "001") | |
1113 (?2 . "010") (?3 . "011") | |
1114 (?4 . "100") (?5 . "101") | |
1115 (?6 . "110") (?7 . "111"))))))) | |
1116 (string-match "^0*\\(.+\\)" s) | |
1117 (setq str (match-string 1 s)))) | |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1118 (if calculator-radix-grouping-mode |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1119 (let ((d (/ (length str) calculator-radix-grouping-digits)) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1120 (r (% (length str) calculator-radix-grouping-digits))) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1121 (while (>= (setq d (1- d)) (if (zerop r) 1 0)) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1122 (let ((i (+ r (* d calculator-radix-grouping-digits)))) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1123 (setq str (concat (substring str 0 i) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1124 calculator-radix-grouping-separator |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1125 (substring str i))))))) |
27587 | 1126 (upcase |
1127 (if (and (not calculator-2s-complement) (< num 0)) | |
1128 (concat "-" str) | |
1129 str)))) | |
39430
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1130 ((and (numberp num) calculator-displayer) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1131 (cond |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1132 ((stringp calculator-displayer) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1133 (format calculator-displayer num)) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1134 ((symbolp calculator-displayer) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1135 (funcall calculator-displayer num)) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1136 ((and (consp calculator-displayer) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1137 (eq 'std (car calculator-displayer))) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1138 (calculator-standard-displayer num (cadr calculator-displayer))) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1139 ((listp calculator-displayer) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1140 (eval calculator-displayer)) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1141 (t (prin1-to-string num t)))) |
33491 | 1142 ;; operators are printed here |
27587 | 1143 (t (prin1-to-string (nth 1 num) t)))) |
1144 | |
1145 (defun calculator-update-display (&optional force) | |
1146 "Update the display. | |
1147 If optional argument FORCE is non-nil, don't use the cached string." | |
1148 (set-buffer calculator-buffer) | |
1149 ;; update calculator-stack-display | |
1150 (if (or force | |
1151 (not (eq (car calculator-stack-display) calculator-stack))) | |
1152 (setq calculator-stack-display | |
1153 (cons calculator-stack | |
1154 (if calculator-stack | |
1155 (concat | |
39430
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1156 (let ((calculator-displayer |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1157 (if (and calculator-displayers |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1158 (= 1 (length calculator-stack))) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1159 ;; customizable display for a single value |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1160 (caar calculator-displayers) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1161 calculator-displayer))) |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1162 (mapconcat 'calculator-number-to-string |
39430
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1163 (reverse calculator-stack) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1164 " ")) |
27587 | 1165 " " |
1166 (and calculator-display-fragile | |
1167 calculator-saved-list | |
1168 (= (car calculator-stack) | |
1169 (nth calculator-saved-ptr | |
1170 calculator-saved-list)) | |
1171 (if (= 0 calculator-saved-ptr) | |
1172 (format "[%s]" (length calculator-saved-list)) | |
1173 (format "[%s/%s]" | |
1174 (- (length calculator-saved-list) | |
1175 calculator-saved-ptr) | |
1176 (length calculator-saved-list))))) | |
1177 "")))) | |
1178 (let ((inhibit-read-only t)) | |
1179 (erase-buffer) | |
1180 (insert (calculator-get-prompt))) | |
1181 (set-buffer-modified-p nil) | |
1182 (if calculator-display-fragile | |
1183 (goto-char (1+ (length calculator-prompt))) | |
1184 (goto-char (1- (point))))) | |
1185 | |
33631 | 1186 ;;;--------------------------------------------------------------------- |
33491 | 1187 ;;; Stack computations |
1188 | |
27587 | 1189 (defun calculator-reduce-stack (prec) |
1190 "Reduce the stack using top operator. | |
1191 PREC is a precedence - reduce everything with higher precedence." | |
1192 (while | |
1193 (cond | |
1194 ((and (cdr (cdr calculator-stack)) ; have three values | |
1195 (consp (nth 0 calculator-stack)) ; two operators & num | |
1196 (numberp (nth 1 calculator-stack)) | |
1197 (consp (nth 2 calculator-stack)) | |
1198 (eq '\) (nth 1 (nth 0 calculator-stack))) | |
1199 (eq '\( (nth 1 (nth 2 calculator-stack)))) | |
1200 ;; reduce "... ( x )" --> "... x" | |
1201 (setq calculator-stack | |
1202 (cons (nth 1 calculator-stack) | |
1203 (nthcdr 3 calculator-stack))) | |
1204 ;; another iteration | |
1205 t) | |
1206 ((and (cdr (cdr calculator-stack)) ; have three values | |
1207 (numberp (nth 0 calculator-stack)) ; two nums & operator | |
1208 (consp (nth 1 calculator-stack)) | |
1209 (numberp (nth 2 calculator-stack)) | |
1210 (= 2 (calculator-op-arity ; binary operator | |
1211 (nth 1 calculator-stack))) | |
1212 (<= prec ; with higher prec. | |
1213 (calculator-op-prec (nth 1 calculator-stack)))) | |
1214 ;; reduce "... x op y" --> "... r", r is the result | |
1215 (setq calculator-stack | |
1216 (cons (calculator-funcall | |
1217 (nth 2 (nth 1 calculator-stack)) | |
1218 (nth 2 calculator-stack) | |
1219 (nth 0 calculator-stack)) | |
1220 (nthcdr 3 calculator-stack))) | |
1221 ;; another iteration | |
1222 t) | |
1223 ((and (>= (length calculator-stack) 2) ; have two values | |
1224 (numberp (nth 0 calculator-stack)) ; number & operator | |
1225 (consp (nth 1 calculator-stack)) | |
1226 (= -1 (calculator-op-arity ; prefix-unary op | |
1227 (nth 1 calculator-stack))) | |
1228 (<= prec ; with higher prec. | |
1229 (calculator-op-prec (nth 1 calculator-stack)))) | |
1230 ;; reduce "... op x" --> "... r" for prefix op | |
1231 (setq calculator-stack | |
1232 (cons (calculator-funcall | |
1233 (nth 2 (nth 1 calculator-stack)) | |
1234 (nth 0 calculator-stack)) | |
1235 (nthcdr 2 calculator-stack))) | |
1236 ;; another iteration | |
1237 t) | |
1238 ((and (cdr calculator-stack) ; have two values | |
1239 (consp (nth 0 calculator-stack)) ; operator & number | |
1240 (numberp (nth 1 calculator-stack)) | |
1241 (= +1 (calculator-op-arity ; postfix-unary op | |
1242 (nth 0 calculator-stack))) | |
1243 (<= prec ; with higher prec. | |
1244 (calculator-op-prec (nth 0 calculator-stack)))) | |
1245 ;; reduce "... x op" --> "... r" for postfix op | |
1246 (setq calculator-stack | |
1247 (cons (calculator-funcall | |
1248 (nth 2 (nth 0 calculator-stack)) | |
1249 (nth 1 calculator-stack)) | |
1250 (nthcdr 2 calculator-stack))) | |
1251 ;; another iteration | |
1252 t) | |
1253 ((and calculator-stack ; have one value | |
1254 (consp (nth 0 calculator-stack)) ; an operator | |
1255 (= 0 (calculator-op-arity ; 0-ary op | |
1256 (nth 0 calculator-stack)))) | |
1257 ;; reduce "... op" --> "... r" for 0-ary op | |
1258 (setq calculator-stack | |
1259 (cons (calculator-funcall | |
1260 (nth 2 (nth 0 calculator-stack))) | |
1261 (nthcdr 1 calculator-stack))) | |
1262 ;; another iteration | |
1263 t) | |
1264 ((and (cdr calculator-stack) ; have two values | |
1265 (numberp (nth 0 calculator-stack)) ; both numbers | |
1266 (numberp (nth 1 calculator-stack))) | |
1267 ;; get rid of redundant numbers: | |
1268 ;; reduce "... y x" --> "... x" | |
1269 ;; needed for 0-ary ops that puts more values | |
1270 (setcdr calculator-stack (cdr (cdr calculator-stack)))) | |
1271 (t ;; no more iterations | |
1272 nil)))) | |
1273 | |
33491 | 1274 (defun calculator-funcall (f &optional X Y) |
1275 "If F is a symbol, evaluate (F X Y). | |
1276 Otherwise, it should be a list, evaluate it with X, Y bound to the | |
1277 arguments." | |
1278 ;; remember binary ops for calculator-repR/L | |
1279 (if Y (setq calculator-last-opXY (list f X Y))) | |
1280 (condition-case nil | |
1281 ;; there used to be code here that returns 0 if the result was | |
1282 ;; smaller than calculator-epsilon (1e-15). I don't think this is | |
1283 ;; necessary now. | |
1284 (if (symbolp f) | |
1285 (cond ((and X Y) (funcall f X Y)) | |
1286 (X (funcall f X)) | |
1287 (t (funcall f))) | |
1288 ;; f is an expression | |
1289 (let* ((__f__ f) ; so we can get this value below... | |
1290 (TX (calculator-truncate X)) | |
1291 (TY (and Y (calculator-truncate Y))) | |
1292 (DX (if calculator-deg (/ (* X pi) 180) X)) | |
1293 (L calculator-saved-list) | |
1294 (Fbound (fboundp 'F)) | |
1295 (Fsave (and Fbound (symbol-function 'F))) | |
1296 (Dbound (fboundp 'D)) | |
1297 (Dsave (and Dbound (symbol-function 'D)))) | |
1298 ;; a shortened version of flet | |
1299 (fset 'F (function | |
1300 (lambda (&optional x y) | |
1301 (calculator-funcall __f__ x y)))) | |
1302 (fset 'D (function | |
1303 (lambda (x) | |
110525
e950143ab9e0
* lisp/emacs-lisp/float-sup.el (float-pi): New name for `pi'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107342
diff
changeset
|
1304 (if calculator-deg (/ (* x 180) float-pi) x)))) |
33491 | 1305 (unwind-protect (eval f) |
1306 (if Fbound (fset 'F Fsave) (fmakunbound 'F)) | |
1307 (if Dbound (fset 'D Dsave) (fmakunbound 'D))))) | |
1308 (error 0))) | |
1309 | |
33631 | 1310 ;;;--------------------------------------------------------------------- |
33491 | 1311 ;;; Input interaction |
1312 | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1313 (defun calculator-last-input (&optional keys) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1314 "Last char (or event or event sequence) that was read. |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1315 Optional string argument KEYS will force using it as the keys entered." |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1316 (let ((inp (or keys (this-command-keys)))) |
27587 | 1317 (if (or (stringp inp) (not (arrayp inp))) |
1318 inp | |
1319 ;; this translates kp-x to x and [tries to] create a string to | |
1320 ;; lookup operators | |
1321 (let* ((i -1) (converted-str (make-string (length inp) ? )) k) | |
1322 ;; converts an array to a string the ops lookup with keypad | |
1323 ;; input | |
1324 (while (< (setq i (1+ i)) (length inp)) | |
1325 (setq k (aref inp i)) | |
1326 ;; if Emacs will someday have a event-key, then this would | |
1327 ;; probably be modified anyway | |
64381
c25db06be8ca
(calculator-last-input): Guard uses of event-key and key-press-event-p.
Richard M. Stallman <rms@gnu.org>
parents:
64091
diff
changeset
|
1328 (and (if (fboundp 'key-press-event-p) (key-press-event-p k)) |
c25db06be8ca
(calculator-last-input): Guard uses of event-key and key-press-event-p.
Richard M. Stallman <rms@gnu.org>
parents:
64091
diff
changeset
|
1329 (if (fboundp 'event-key) |
c25db06be8ca
(calculator-last-input): Guard uses of event-key and key-press-event-p.
Richard M. Stallman <rms@gnu.org>
parents:
64091
diff
changeset
|
1330 (and (event-key k) (setq k (event-key k))))) |
27587 | 1331 ;; assume all symbols are translatable with an ascii-character |
1332 (and (symbolp k) | |
1333 (setq k (or (get k 'ascii-character) ? ))) | |
1334 (aset converted-str i k)) | |
1335 converted-str)))) | |
1336 | |
1337 (defun calculator-clear-fragile (&optional op) | |
1338 "Clear the fragile flag if it was set, then maybe reset all. | |
1339 OP is the operator (if any) that caused this call." | |
1340 (if (and calculator-display-fragile | |
1341 (or (not op) | |
1342 (= -1 (calculator-op-arity op)) | |
1343 (= 0 (calculator-op-arity op)))) | |
1344 ;; reset if last calc finished, and now get a num or prefix or 0-ary | |
33491 | 1345 ;; op |
27587 | 1346 (calculator-reset)) |
1347 (setq calculator-display-fragile nil)) | |
1348 | |
1349 (defun calculator-digit () | |
1350 "Enter a single digit." | |
1351 (interactive) | |
1352 (let ((inp (aref (calculator-last-input) 0))) | |
1353 (if (and (or calculator-display-fragile | |
1354 (not (numberp (car calculator-stack)))) | |
1355 (cond | |
1356 ((not calculator-input-radix) (<= inp ?9)) | |
1357 ((eq calculator-input-radix 'bin) (<= inp ?1)) | |
1358 ((eq calculator-input-radix 'oct) (<= inp ?7)) | |
1359 (t t))) | |
1360 ;; enter digit if starting a new computation or have an op on the | |
33491 | 1361 ;; stack |
27587 | 1362 (progn |
1363 (calculator-clear-fragile) | |
1364 (let ((digit (upcase (char-to-string inp)))) | |
1365 (if (equal calculator-curnum "0") | |
1366 (setq calculator-curnum nil)) | |
1367 (setq calculator-curnum | |
1368 (concat (or calculator-curnum "") digit))) | |
1369 (calculator-update-display))))) | |
1370 | |
1371 (defun calculator-decimal () | |
1372 "Enter a decimal period." | |
1373 (interactive) | |
1374 (if (and (not calculator-input-radix) | |
1375 (or calculator-display-fragile | |
1376 (not (numberp (car calculator-stack)))) | |
1377 (not (and calculator-curnum | |
1378 (string-match "[.eE]" calculator-curnum)))) | |
1379 ;; enter the period on the same condition as a digit, only if no | |
33491 | 1380 ;; period or exponent entered yet |
27587 | 1381 (progn |
1382 (calculator-clear-fragile) | |
1383 (setq calculator-curnum (concat (or calculator-curnum "0") ".")) | |
1384 (calculator-update-display)))) | |
1385 | |
1386 (defun calculator-exp () | |
1387 "Enter an `E' exponent character, or a digit in hex input mode." | |
1388 (interactive) | |
1389 (if calculator-input-radix | |
1390 (calculator-digit) | |
1391 (if (and (or calculator-display-fragile | |
1392 (not (numberp (car calculator-stack)))) | |
1393 (not (and calculator-curnum | |
1394 (string-match "[eE]" calculator-curnum)))) | |
33491 | 1395 ;; same condition as above, also no E so far |
27587 | 1396 (progn |
1397 (calculator-clear-fragile) | |
1398 (setq calculator-curnum (concat (or calculator-curnum "1") "e")) | |
1399 (calculator-update-display))))) | |
1400 | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1401 (defun calculator-op (&optional keys) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1402 "Enter an operator on the stack, doing all necessary reductions. |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1403 Optional string argument KEYS will force using it as the keys entered." |
27587 | 1404 (interactive) |
33491 | 1405 (catch 'op-error |
1406 (let* ((last-inp (calculator-last-input keys)) | |
1407 (op (assoc last-inp calculator-operators))) | |
1408 (calculator-clear-fragile op) | |
1409 (if (and calculator-curnum (/= (calculator-op-arity op) 0)) | |
1410 (setq calculator-stack | |
1411 (cons (calculator-curnum-value) calculator-stack))) | |
1412 (setq calculator-curnum nil) | |
1413 (if (and (= 2 (calculator-op-arity op)) | |
1414 (not (and calculator-stack | |
1415 (numberp (nth 0 calculator-stack))))) | |
1416 ;; we have a binary operator but no number - search for a prefix | |
1417 ;; version | |
1418 (let ((rest-ops calculator-operators)) | |
1419 (while (not (equal last-inp (car (car rest-ops)))) | |
1420 (setq rest-ops (cdr rest-ops))) | |
1421 (setq op (assoc last-inp (cdr rest-ops))) | |
1422 (if (not (and op (= -1 (calculator-op-arity op)))) | |
1423 ;;(error "Binary operator without a first operand") | |
1424 (progn | |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1425 (calculator-message |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1426 "Binary operator without a first operand") |
33491 | 1427 (throw 'op-error nil))))) |
1428 (calculator-reduce-stack | |
1429 (cond ((eq (nth 1 op) '\() 10) | |
1430 ((eq (nth 1 op) '\)) 0) | |
1431 (t (calculator-op-prec op)))) | |
1432 (if (or (and (= -1 (calculator-op-arity op)) | |
1433 (numberp (car calculator-stack))) | |
1434 (and (/= (calculator-op-arity op) -1) | |
1435 (/= (calculator-op-arity op) 0) | |
1436 (not (numberp (car calculator-stack))))) | |
1437 ;;(error "Unterminated expression") | |
1438 (progn | |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1439 (calculator-message "Unterminated expression") |
33491 | 1440 (throw 'op-error nil))) |
1441 (setq calculator-stack (cons op calculator-stack)) | |
1442 (calculator-reduce-stack (calculator-op-prec op)) | |
1443 (and (= (length calculator-stack) 1) | |
1444 (numberp (nth 0 calculator-stack)) | |
1445 ;; the display is fragile if it contains only one number | |
1446 (setq calculator-display-fragile t) | |
1447 ;; add number to the saved-list | |
1448 calculator-add-saved | |
1449 (if (= 0 calculator-saved-ptr) | |
1450 (setq calculator-saved-list | |
1451 (cons (car calculator-stack) calculator-saved-list)) | |
1452 (let ((p (nthcdr (1- calculator-saved-ptr) | |
1453 calculator-saved-list))) | |
1454 (setcdr p (cons (car calculator-stack) (cdr p)))))) | |
1455 (calculator-update-display)))) | |
27587 | 1456 |
1457 (defun calculator-op-or-exp () | |
1458 "Either enter an operator or a digit. | |
33491 | 1459 Used with +/- for entering them as digits in numbers like 1e-3 (there is |
99899
2796739a5e4f
* calculator.el (calculator-op-or-exp): Reflow docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94680
diff
changeset
|
1460 no need for negative numbers since these are handled by unary operators)." |
27587 | 1461 (interactive) |
1462 (if (and (not calculator-display-fragile) | |
1463 calculator-curnum | |
1464 (string-match "[eE]$" calculator-curnum)) | |
1465 (calculator-digit) | |
1466 (calculator-op))) | |
1467 | |
33631 | 1468 ;;;--------------------------------------------------------------------- |
33491 | 1469 ;;; Input/output modes (not display) |
1470 | |
27587 | 1471 (defun calculator-dec/deg-mode () |
1472 "Set decimal mode for display & input, if decimal, toggle deg mode." | |
1473 (interactive) | |
1474 (if calculator-curnum | |
1475 (setq calculator-stack | |
1476 (cons (calculator-curnum-value) calculator-stack))) | |
1477 (setq calculator-curnum nil) | |
1478 (if (or calculator-input-radix calculator-output-radix) | |
1479 (progn (setq calculator-input-radix nil) | |
1480 (setq calculator-output-radix nil)) | |
1481 ;; already decimal - toggle degrees mode | |
1482 (setq calculator-deg (not calculator-deg))) | |
1483 (calculator-update-display t)) | |
1484 | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1485 (defun calculator-radix-mode (&optional keys) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1486 "Set input and display radix modes. |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1487 Optional string argument KEYS will force using it as the keys entered." |
27587 | 1488 (interactive) |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1489 (calculator-radix-input-mode keys) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1490 (calculator-radix-output-mode keys)) |
27587 | 1491 |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1492 (defun calculator-radix-input-mode (&optional keys) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1493 "Set input radix modes. |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1494 Optional string argument KEYS will force using it as the keys entered." |
27587 | 1495 (interactive) |
1496 (if calculator-curnum | |
1497 (setq calculator-stack | |
1498 (cons (calculator-curnum-value) calculator-stack))) | |
1499 (setq calculator-curnum nil) | |
1500 (setq calculator-input-radix | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1501 (let ((inp (calculator-last-input keys))) |
27587 | 1502 (cdr (assq (upcase (aref inp (1- (length inp)))) |
1503 calculator-char-radix)))) | |
1504 (calculator-update-display)) | |
1505 | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1506 (defun calculator-radix-output-mode (&optional keys) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1507 "Set display radix modes. |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1508 Optional string argument KEYS will force using it as the keys entered." |
27587 | 1509 (interactive) |
1510 (if calculator-curnum | |
1511 (setq calculator-stack | |
1512 (cons (calculator-curnum-value) calculator-stack))) | |
1513 (setq calculator-curnum nil) | |
1514 (setq calculator-output-radix | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1515 (let ((inp (calculator-last-input keys))) |
27587 | 1516 (cdr (assq (upcase (aref inp (1- (length inp)))) |
1517 calculator-char-radix)))) | |
1518 (calculator-update-display t)) | |
1519 | |
33631 | 1520 ;;;--------------------------------------------------------------------- |
33491 | 1521 ;;; Saved values list |
1522 | |
27587 | 1523 (defun calculator-save-on-list () |
1524 "Evaluate current expression, put result on the saved values list." | |
1525 (interactive) | |
1526 (let ((calculator-add-saved t)) ; marks the result to be added | |
1527 (calculator-enter))) | |
1528 | |
1529 (defun calculator-clear-saved () | |
1530 "Clear the list of saved values in `calculator-saved-list'." | |
1531 (interactive) | |
1532 (setq calculator-saved-list nil) | |
33491 | 1533 (setq calculator-saved-ptr 0) |
27587 | 1534 (calculator-update-display t)) |
1535 | |
1536 (defun calculator-saved-move (n) | |
1537 "Go N elements up the list of saved values." | |
1538 (interactive) | |
1539 (and calculator-saved-list | |
1540 (or (null calculator-stack) calculator-display-fragile) | |
1541 (progn | |
1542 (setq calculator-saved-ptr | |
1543 (max (min (+ n calculator-saved-ptr) | |
1544 (length calculator-saved-list)) | |
1545 0)) | |
1546 (if (nth calculator-saved-ptr calculator-saved-list) | |
1547 (setq calculator-stack | |
1548 (list (nth calculator-saved-ptr calculator-saved-list)) | |
1549 calculator-display-fragile t) | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1550 (calculator-reset)) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1551 (calculator-update-display)))) |
27587 | 1552 |
1553 (defun calculator-saved-up () | |
1554 "Go up the list of saved values." | |
1555 (interactive) | |
1556 (calculator-saved-move +1)) | |
1557 | |
1558 (defun calculator-saved-down () | |
1559 "Go down the list of saved values." | |
1560 (interactive) | |
1561 (calculator-saved-move -1)) | |
1562 | |
33631 | 1563 ;;;--------------------------------------------------------------------- |
33491 | 1564 ;;; Misc functions |
1565 | |
27587 | 1566 (defun calculator-open-paren () |
1567 "Equivalents of `(' use this." | |
1568 (interactive) | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1569 (calculator-op "(")) |
27587 | 1570 |
1571 (defun calculator-close-paren () | |
1572 "Equivalents of `)' use this." | |
1573 (interactive) | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1574 (calculator-op ")")) |
27587 | 1575 |
1576 (defun calculator-enter () | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1577 "Evaluate current expression." |
27587 | 1578 (interactive) |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1579 (calculator-op "=")) |
27587 | 1580 |
1581 (defun calculator-backspace () | |
1582 "Backward delete a single digit or a stack element." | |
1583 (interactive) | |
1584 (if calculator-curnum | |
1585 (setq calculator-curnum | |
1586 (if (> (length calculator-curnum) 1) | |
1587 (substring calculator-curnum | |
1588 0 (1- (length calculator-curnum))) | |
1589 nil)) | |
1590 (setq calculator-stack (cdr calculator-stack))) | |
1591 (calculator-update-display)) | |
1592 | |
1593 (defun calculator-clear () | |
1594 "Clear current number." | |
1595 (interactive) | |
1596 (setq calculator-curnum nil) | |
1597 (cond | |
1598 ;; if the current number is from the saved-list - remove it | |
1599 ((and calculator-display-fragile | |
1600 calculator-saved-list | |
1601 (= (car calculator-stack) | |
1602 (nth calculator-saved-ptr calculator-saved-list))) | |
1603 (if (= 0 calculator-saved-ptr) | |
1604 (setq calculator-saved-list (cdr calculator-saved-list)) | |
1605 (let ((p (nthcdr (1- calculator-saved-ptr) | |
1606 calculator-saved-list))) | |
1607 (setcdr p (cdr (cdr p))) | |
1608 (setq calculator-saved-ptr (1- calculator-saved-ptr)))) | |
1609 (if calculator-saved-list | |
1610 (setq calculator-stack | |
1611 (list (nth calculator-saved-ptr calculator-saved-list))) | |
1612 (calculator-reset))) | |
1613 ;; reset if fragile or double clear | |
1614 ((or calculator-display-fragile (eq last-command this-command)) | |
1615 (calculator-reset))) | |
1616 (calculator-update-display)) | |
1617 | |
1618 (defun calculator-copy () | |
1619 "Copy current number to the `kill-ring'." | |
1620 (interactive) | |
39430
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1621 (let ((calculator-displayer |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1622 (or calculator-copy-displayer calculator-displayer)) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1623 (calculator-displayers |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1624 (if calculator-copy-displayer nil calculator-displayers))) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1625 (calculator-enter) |
64440
41bfd05eff2a
(calculator-copy): Delete duplicate words.
Juri Linkov <juri@jurta.org>
parents:
64381
diff
changeset
|
1626 ;; remove trailing spaces and an index |
39430
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1627 (let ((s (cdr calculator-stack-display))) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1628 (and s |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1629 (if (string-match "^\\([^ ]+\\) *\\(\\[[0-9/]+\\]\\)? *$" s) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1630 (setq s (match-string 1 s))) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1631 (kill-new s))))) |
27587 | 1632 |
1633 (defun calculator-set-register (reg) | |
1634 "Set a register value for REG." | |
1635 (interactive "cRegister to store into: ") | |
1636 (let* ((as (assq reg calculator-registers)) | |
1637 (val (progn (calculator-enter) (car calculator-stack)))) | |
1638 (if as | |
1639 (setcdr as val) | |
1640 (setq calculator-registers | |
1641 (cons (cons reg val) calculator-registers))) | |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1642 (calculator-message "[%c] := %S" reg val))) |
27587 | 1643 |
1644 (defun calculator-put-value (val) | |
1645 "Paste VAL as if entered. | |
1646 Used by `calculator-paste' and `get-register'." | |
1647 (if (and (numberp val) | |
1648 ;; (not calculator-curnum) | |
1649 (or calculator-display-fragile | |
1650 (not (numberp (car calculator-stack))))) | |
1651 (progn | |
1652 (calculator-clear-fragile) | |
39430
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1653 (setq calculator-curnum (let ((calculator-displayer "%S")) |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1654 (calculator-number-to-string val))) |
27587 | 1655 (calculator-update-display)))) |
1656 | |
1657 (defun calculator-paste () | |
1658 "Paste a value from the `kill-ring'." | |
1659 (interactive) | |
1660 (calculator-put-value | |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1661 (let ((str (replace-regexp-in-string |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1662 "^ *\\(.+[^ ]\\) *$" "\\1" (current-kill 0)))) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1663 (and (not calculator-input-radix) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1664 calculator-paste-decimals |
33631 | 1665 (string-match "\\([0-9]+\\)\\(\\.[0-9]+\\)?\\(e[0-9]+\\)?" |
1666 str) | |
1667 (or (match-string 1 str) | |
1668 (match-string 2 str) | |
1669 (match-string 3 str)) | |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1670 (setq str (concat (or (match-string 1 str) "0") |
33631 | 1671 (or (match-string 2 str) ".0") |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1672 (or (match-string 3 str) "")))) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1673 (condition-case nil (calculator-string-to-number str) |
33491 | 1674 (error nil))))) |
27587 | 1675 |
1676 (defun calculator-get-register (reg) | |
1677 "Get a value from a register REG." | |
1678 (interactive "cRegister to get value from: ") | |
1679 (calculator-put-value (cdr (assq reg calculator-registers)))) | |
1680 | |
1681 (defun calculator-help () | |
1682 ;; this is used as the quick reference screen you get with `h' | |
1683 "Quick reference: | |
1684 * numbers/operators/parens/./e - enter expressions | |
1685 + - * / \\(div) %(rem) _(-X,postfix) ;(1/X,postfix) ^(exp) L(og) | |
1686 Q(sqrt) !(fact) S(in) C(os) T(an) |(or) #(xor) &(and) ~(not) | |
1687 * >/< repeats last binary operation with its 2nd (1st) arg as postfix op | |
33491 | 1688 * I inverses next trig function * '/\"/{} - display/display args |
1689 * D - switch to all-decimal, or toggle deg/rad mode | |
27587 | 1690 * B/O/H/X - binary/octal/hex mode for i/o (X is a shortcut for H) |
1691 * i/o - prefix for d/b/o/x - set only input/output modes | |
1692 * enter/= - evaluate current expr. * s/g - set/get a register | |
1693 * space - evaluate & save on list * l/v - list total/average | |
1694 * up/down/C-p/C-n - browse saved * C-delete - clear all saved | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1695 * C-insert - copy whole expr. * C-return - evaluate, copy, exit |
27587 | 1696 * insert - paste a number * backspace- delete backwards |
1697 * delete - clear argument or list value or whole expression (twice) | |
1698 * escape/q - exit." | |
1699 (interactive) | |
1700 (if (eq last-command 'calculator-help) | |
1701 (let ((mode-name "Calculator") | |
1702 (major-mode 'calculator-mode) | |
1703 (g-map (current-global-map)) | |
1704 (win (selected-window))) | |
1705 (require 'ehelp) | |
1706 (if calculator-electric-mode | |
1707 (use-global-map calculator-saved-global-map)) | |
33631 | 1708 (if (or (not calculator-electric-mode) |
1709 ;; XEmacs has a problem with electric-describe-mode | |
85511
f873840f9fea
* emulation/edt-mapper.el (function-key-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
83794
diff
changeset
|
1710 (featurep 'xemacs)) |
33631 | 1711 (describe-mode) |
1712 (electric-describe-mode)) | |
27587 | 1713 (if calculator-electric-mode |
1714 (use-global-map g-map)) | |
1715 (select-window win) ; these are for XEmacs (also below) | |
1716 (message nil)) | |
1717 (let ((one (one-window-p t)) | |
1718 (win (selected-window)) | |
1719 (help-buf (get-buffer-create "*Help*"))) | |
1720 (save-window-excursion | |
1721 (with-output-to-temp-buffer "*Help*" | |
1722 (princ (documentation 'calculator-help))) | |
1723 (if one | |
1724 (shrink-window-if-larger-than-buffer | |
1725 (get-buffer-window help-buf))) | |
1726 (message | |
1727 "`%s' again for more help, any other key continues normally." | |
1728 (calculator-last-input)) | |
1729 (select-window win) | |
1730 (sit-for 360)) | |
1731 (select-window win)))) | |
1732 | |
1733 (defun calculator-quit () | |
1734 "Quit calculator." | |
1735 (interactive) | |
1736 (set-buffer calculator-buffer) | |
1737 (let ((inhibit-read-only t)) (erase-buffer)) | |
1738 (if (not calculator-electric-mode) | |
1739 (progn | |
1740 (condition-case nil | |
1741 (while (get-buffer-window calculator-buffer) | |
1742 (delete-window (get-buffer-window calculator-buffer))) | |
1743 (error nil)) | |
1744 (kill-buffer calculator-buffer))) | |
1745 (setq calculator-buffer nil) | |
1746 (message "Calculator done.") | |
1747 (if calculator-electric-mode (throw 'calculator-done nil))) | |
1748 | |
1749 (defun calculator-save-and-quit () | |
1750 "Quit the calculator, saving the result on the `kill-ring'." | |
1751 (interactive) | |
1752 (calculator-enter) | |
1753 (calculator-copy) | |
1754 (calculator-quit)) | |
1755 | |
1756 (defun calculator-repR (x) | |
99899
2796739a5e4f
* calculator.el (calculator-op-or-exp): Reflow docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94680
diff
changeset
|
1757 "Repeat the last binary operation with its second argument and X. |
27587 | 1758 To use this, apply a binary operator (evaluate it), then call this." |
1759 (if calculator-last-opXY | |
1760 ;; avoid rebinding calculator-last-opXY | |
1761 (let ((calculator-last-opXY calculator-last-opXY)) | |
1762 (calculator-funcall | |
1763 (car calculator-last-opXY) x (nth 2 calculator-last-opXY))) | |
1764 x)) | |
1765 | |
1766 (defun calculator-repL (x) | |
99899
2796739a5e4f
* calculator.el (calculator-op-or-exp): Reflow docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94680
diff
changeset
|
1767 "Repeat the last binary operation with its first argument and X. |
27587 | 1768 To use this, apply a binary operator (evaluate it), then call this." |
1769 (if calculator-last-opXY | |
1770 ;; avoid rebinding calculator-last-opXY | |
1771 (let ((calculator-last-opXY calculator-last-opXY)) | |
1772 (calculator-funcall | |
1773 (car calculator-last-opXY) (nth 1 calculator-last-opXY) x)) | |
1774 x)) | |
1775 | |
81696
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1776 (defun calculator-integer-p (x) |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1777 "Non-nil if X is equal to an integer." |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1778 (condition-case nil |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1779 (= x (ftruncate x)) |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1780 (error nil))) |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1781 |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1782 (defun calculator-expt (x y) |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1783 "Compute X^Y, dealing with errors appropriately." |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1784 (condition-case |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1785 nil |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1786 (expt x y) |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1787 (domain-error 0.0e+NaN) |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1788 (range-error |
81700
a92fa56df453
(calculator-expt): Use more cases to determine the value.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
81696
diff
changeset
|
1789 (cond |
a92fa56df453
(calculator-expt): Use more cases to determine the value.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
81696
diff
changeset
|
1790 ((and (< x 1.0) (> x -1.0)) |
a92fa56df453
(calculator-expt): Use more cases to determine the value.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
81696
diff
changeset
|
1791 ;; For small x, the range error comes from large y. |
a92fa56df453
(calculator-expt): Use more cases to determine the value.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
81696
diff
changeset
|
1792 0.0) |
a92fa56df453
(calculator-expt): Use more cases to determine the value.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
81696
diff
changeset
|
1793 ((and (> x 0.0) (< y 0.0)) |
94389
c8cc1acc029f
(calculator-expt): Modify previous change to just use the expanded cl
Glenn Morris <rgm@gnu.org>
parents:
94388
diff
changeset
|
1794 ;; For large positive x and negative y, the range error |
81700
a92fa56df453
(calculator-expt): Use more cases to determine the value.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
81696
diff
changeset
|
1795 ;; comes from large negative y. |
a92fa56df453
(calculator-expt): Use more cases to determine the value.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
81696
diff
changeset
|
1796 0.0) |
a92fa56df453
(calculator-expt): Use more cases to determine the value.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
81696
diff
changeset
|
1797 ((and (> x 0.0) (> y 0.0)) |
94389
c8cc1acc029f
(calculator-expt): Modify previous change to just use the expanded cl
Glenn Morris <rgm@gnu.org>
parents:
94388
diff
changeset
|
1798 ;; For large positive x and positive y, the range error |
81700
a92fa56df453
(calculator-expt): Use more cases to determine the value.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
81696
diff
changeset
|
1799 ;; comes from large y. |
a92fa56df453
(calculator-expt): Use more cases to determine the value.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
81696
diff
changeset
|
1800 1.0e+INF) |
a92fa56df453
(calculator-expt): Use more cases to determine the value.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
81696
diff
changeset
|
1801 ;; For the rest, x must be large and negative. |
a92fa56df453
(calculator-expt): Use more cases to determine the value.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
81696
diff
changeset
|
1802 ;; The range errors come from large integer y. |
a92fa56df453
(calculator-expt): Use more cases to determine the value.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
81696
diff
changeset
|
1803 ((< y 0.0) |
a92fa56df453
(calculator-expt): Use more cases to determine the value.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
81696
diff
changeset
|
1804 0.0) |
94389
c8cc1acc029f
(calculator-expt): Modify previous change to just use the expanded cl
Glenn Morris <rgm@gnu.org>
parents:
94388
diff
changeset
|
1805 ((eq (logand (truncate y) 1) 1) ; expansion of cl `oddp' |
81700
a92fa56df453
(calculator-expt): Use more cases to determine the value.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
81696
diff
changeset
|
1806 ;; If y is odd |
a92fa56df453
(calculator-expt): Use more cases to determine the value.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
81696
diff
changeset
|
1807 -1.0e+INF) |
a92fa56df453
(calculator-expt): Use more cases to determine the value.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
81696
diff
changeset
|
1808 (t |
99899
2796739a5e4f
* calculator.el (calculator-op-or-exp): Reflow docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94680
diff
changeset
|
1809 ;; |
81700
a92fa56df453
(calculator-expt): Use more cases to determine the value.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
81696
diff
changeset
|
1810 1.0e+INF))) |
81696
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1811 (error 0.0e+NaN))) |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1812 |
27587 | 1813 (defun calculator-fact (x) |
1814 "Simple factorial of X." | |
81696
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1815 (if (and (>= x 0) |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1816 (calculator-integer-p x)) |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1817 (if (= (calculator-expt (/ x 3.0) x) 1.0e+INF) |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1818 1.0e+INF |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1819 (let ((r (if (<= x 10) 1 1.0))) |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1820 (while (> x 0) |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1821 (setq r (* r (truncate x))) |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1822 (setq x (1- x))) |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1823 (+ 0.0 r))) |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1824 (if (= x 1.0e+INF) |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1825 x |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1826 0.0e+NaN))) |
27587 | 1827 |
1828 (defun calculator-truncate (n) | |
1829 "Truncate N, return 0 in case of overflow." | |
1830 (condition-case nil (truncate n) (error 0))) | |
1831 | |
1832 | |
1833 (provide 'calculator) | |
1834 | |
93975
1e3a407766b9
Fix up comment convention on the arch-tag lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
87649
diff
changeset
|
1835 ;; arch-tag: a1b9766c-af8a-4a74-b466-65ad8eeb0c73 |
27587 | 1836 ;;; calculator.el ends here |