home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume24 / gnucalc / part12 < prev    next >
Lisp/Scheme  |  1991-10-29  |  57KB  |  1,750 lines

  1. Newsgroups: comp.sources.misc
  2. From: daveg@synaptics.com (David Gillespie)
  3. Subject:  v24i060:  gnucalc - GNU Emacs Calculator, v2.00, Part12/56
  4. Message-ID: <1991Oct29.230123.20274@sparky.imd.sterling.com>
  5. X-Md4-Signature: 276a2a38d451b3a8a87fc2dace749499
  6. Date: Tue, 29 Oct 1991 23:01:23 GMT
  7. Approved: kent@sparky.imd.sterling.com
  8.  
  9. Submitted-by: daveg@synaptics.com (David Gillespie)
  10. Posting-number: Volume 24, Issue 60
  11. Archive-name: gnucalc/part12
  12. Environment: Emacs
  13. Supersedes: gmcalc: Volume 13, Issue 27-45
  14.  
  15. ---- Cut Here and unpack ----
  16. #!/bin/sh
  17. # this is Part.12 (part 12 of a multipart archive)
  18. # do not concatenate these parts, unpack them in order with /bin/sh
  19. # file calc-comp.el continued
  20. #
  21. if test ! -r _shar_seq_.tmp; then
  22.     echo 'Please unpack part 1 first!'
  23.     exit 1
  24. fi
  25. (read Scheck
  26.  if test "$Scheck" != 12; then
  27.     echo Please unpack part "$Scheck" next!
  28.     exit 1
  29.  else
  30.     exit 0
  31.  fi
  32. ) < _shar_seq_.tmp || exit 1
  33. if test ! -f _shar_wnt_.tmp; then
  34.     echo 'x - still skipping calc-comp.el'
  35. else
  36. echo 'x - continuing file calc-comp.el'
  37. sed 's/^X//' << 'SHAR_EOF' >> 'calc-comp.el' &&
  38. X         (setq accum (max accum (math-comp-descent (car c)))))
  39. X       accum))
  40. X    ((memq (car c) '(vcent vleft vright))
  41. X     (let ((accum (- (nth 1 c))))
  42. X       (setq c (cdr c))
  43. X       (while (setq c (cdr c))
  44. X         (setq accum (+ accum (math-comp-height (car c)))))
  45. X       (max (1- accum) 0)))
  46. X    ((eq (car c) 'supscr)
  47. X     (math-comp-descent (nth 1 c)))
  48. X    ((eq (car c) 'subscr)
  49. X     (+ (math-comp-descent (nth 1 c)) (math-comp-height (nth 2 c))))
  50. X    ((eq (car c) 'tag)
  51. X     (math-comp-descent (nth 2 c)))
  52. X    (t 0))
  53. )
  54. X
  55. (defun calcFunc-cwidth (a &optional prec)
  56. X  (if (and prec (not (integerp prec))) (math-reject-arg prec 'fixnump))
  57. X  (math-comp-width (math-compose-expr a (or prec 0)))
  58. )
  59. X
  60. (defun calcFunc-cheight (a &optional prec)
  61. X  (if (and prec (not (integerp prec))) (math-reject-arg prec 'fixnump))
  62. X  (if (and (memq (car a) '(calcFunc-cvspace calcFunc-ctspace calcFunc-cbspace))
  63. X       (memq (length a) '(2 3))
  64. X       (eq (nth 1 a) 0))
  65. X      0
  66. X    (math-comp-height (math-compose-expr a (or prec 0))))
  67. )
  68. X
  69. (defun calcFunc-cascent (a &optional prec)
  70. X  (if (and prec (not (integerp prec))) (math-reject-arg prec 'fixnump))
  71. X  (if (and (memq (car a) '(calcFunc-cvspace calcFunc-ctspace calcFunc-cbspace))
  72. X       (memq (length a) '(2 3))
  73. X       (eq (nth 1 a) 0))
  74. X      0
  75. X    (math-comp-ascent (math-compose-expr a (or prec 0))))
  76. )
  77. X
  78. (defun calcFunc-cdescent (a &optional prec)
  79. X  (if (and prec (not (integerp prec))) (math-reject-arg prec 'fixnump))
  80. X  (math-comp-descent (math-compose-expr a (or prec 0)))
  81. )
  82. X
  83. X
  84. ;;; Convert a simplified composition into string form.
  85. X
  86. (defun math-vert-comp-to-string (c)
  87. X  (if (stringp c)
  88. X      c
  89. X    (math-vert-comp-to-string-step (cdr (cdr c))))
  90. )
  91. X
  92. (defun math-vert-comp-to-string-step (c)
  93. X  (if (cdr c)
  94. X      (concat (car c) "\n" (math-vert-comp-to-string-step (cdr c)))
  95. X    (car c))
  96. )
  97. X
  98. X
  99. ;;; Convert a composition to a string in "raw" form (for debugging).
  100. X
  101. (defun math-comp-to-string-raw (c indent)
  102. X  (cond ((or (not (consp c)) (eq (car c) 'set))
  103. X     (prin1-to-string c))
  104. X    ((null (cdr c))
  105. X     (concat "(" (symbol-name (car c)) ")"))
  106. X    (t
  107. X     (let ((next-indent (+ indent 2 (length (symbol-name (car c))))))
  108. X       (concat "("
  109. X           (symbol-name (car c))
  110. X           " "
  111. X           (math-comp-to-string-raw (nth 1 c) next-indent)
  112. X           (math-comp-to-string-raw-step (cdr (cdr c))
  113. X                         next-indent)
  114. X           ")"))))
  115. )
  116. X
  117. (defun math-comp-to-string-raw-step (cl indent)
  118. X  (if cl
  119. X      (concat "\n"
  120. X          (make-string indent 32)
  121. X          (math-comp-to-string-raw (car cl) indent)
  122. X          (math-comp-to-string-raw-step (cdr cl) indent))
  123. X    "")
  124. )
  125. X
  126. X
  127. X
  128. X
  129. SHAR_EOF
  130. echo 'File calc-comp.el is complete' &&
  131. chmod 0644 calc-comp.el ||
  132. echo 'restore of calc-comp.el failed'
  133. Wc_c="`wc -c < 'calc-comp.el'`"
  134. test 54712 -eq "$Wc_c" ||
  135.     echo 'calc-comp.el: original size 54712, current size' "$Wc_c"
  136. rm -f _shar_wnt_.tmp
  137. fi
  138. # ============= calc-cplx.el ==============
  139. if test -f 'calc-cplx.el' -a X"$1" != X"-c"; then
  140.     echo 'x - skipping calc-cplx.el (File already exists)'
  141.     rm -f _shar_wnt_.tmp
  142. else
  143. > _shar_wnt_.tmp
  144. echo 'x - extracting calc-cplx.el (Text)'
  145. sed 's/^X//' << 'SHAR_EOF' > 'calc-cplx.el' &&
  146. ;; Calculator for GNU Emacs, part II [calc-cplx.el]
  147. ;; Copyright (C) 1990, 1991 Free Software Foundation, Inc.
  148. ;; Written by Dave Gillespie, daveg@csvax.cs.caltech.edu.
  149. X
  150. ;; This file is part of GNU Emacs.
  151. X
  152. ;; GNU Emacs is distributed in the hope that it will be useful,
  153. ;; but WITHOUT ANY WARRANTY.  No author or distributor
  154. ;; accepts responsibility to anyone for the consequences of using it
  155. ;; or for whether it serves any particular purpose or works at all,
  156. ;; unless he says so in writing.  Refer to the GNU Emacs General Public
  157. ;; License for full details.
  158. X
  159. ;; Everyone is granted permission to copy, modify and redistribute
  160. ;; GNU Emacs, but only under the conditions described in the
  161. ;; GNU Emacs General Public License.   A copy of this license is
  162. ;; supposed to have been given to you along with GNU Emacs so you
  163. ;; can know your rights and responsibilities.  It should be in a
  164. ;; file named COPYING.  Among other things, the copyright notice
  165. ;; and this notice must be preserved on all copies.
  166. X
  167. X
  168. X
  169. ;; This file is autoloaded from calc-ext.el.
  170. (require 'calc-ext)
  171. X
  172. (require 'calc-macs)
  173. X
  174. (defun calc-Need-calc-cplx () nil)
  175. X
  176. X
  177. (defun calc-argument (arg)
  178. X  (interactive "P")
  179. X  (calc-slow-wrapper
  180. X   (calc-unary-op "arg" 'calcFunc-arg arg))
  181. )
  182. X
  183. (defun calc-re (arg)
  184. X  (interactive "P")
  185. X  (calc-slow-wrapper
  186. X   (calc-unary-op "re" 'calcFunc-re arg))
  187. )
  188. X
  189. (defun calc-im (arg)
  190. X  (interactive "P")
  191. X  (calc-slow-wrapper
  192. X   (calc-unary-op "im" 'calcFunc-im arg))
  193. )
  194. X
  195. X
  196. (defun calc-polar ()
  197. X  (interactive)
  198. X  (calc-slow-wrapper
  199. X   (let ((arg (calc-top-n 1)))
  200. X     (if (or (calc-is-inverse)
  201. X         (eq (car-safe arg) 'polar))
  202. X     (calc-enter-result 1 "p-r" (list 'calcFunc-rect arg))
  203. X       (calc-enter-result 1 "r-p" (list 'calcFunc-polar arg)))))
  204. )
  205. X
  206. X
  207. X
  208. X
  209. (defun calc-complex-notation ()
  210. X  (interactive)
  211. X  (calc-wrapper
  212. X   (calc-change-mode 'calc-complex-format nil t)
  213. X   (message "Displaying complex numbers in (X,Y) format."))
  214. )
  215. X
  216. (defun calc-i-notation ()
  217. X  (interactive)
  218. X  (calc-wrapper
  219. X   (calc-change-mode 'calc-complex-format 'i t)
  220. X   (message "Displaying complex numbers in X+Yi format."))
  221. )
  222. X
  223. (defun calc-j-notation ()
  224. X  (interactive)
  225. X  (calc-wrapper
  226. X   (calc-change-mode 'calc-complex-format 'j t)
  227. X   (message "Displaying complex numbers in X+Yj format."))
  228. )
  229. X
  230. X
  231. (defun calc-polar-mode (n)
  232. X  (interactive "P")
  233. X  (calc-wrapper
  234. X   (if (if n
  235. X       (> (prefix-numeric-value n) 0)
  236. X     (eq calc-complex-mode 'cplx))
  237. X       (progn
  238. X     (calc-change-mode 'calc-complex-mode 'polar)
  239. X     (message "Preferred complex form is polar."))
  240. X     (calc-change-mode 'calc-complex-mode 'cplx)
  241. X     (message "Preferred complex form is rectangular.")))
  242. )
  243. X
  244. X
  245. ;;;; Complex numbers.
  246. X
  247. (defun math-normalize-polar (a)
  248. X  (let ((r (math-normalize (nth 1 a)))
  249. X    (th (math-normalize (nth 2 a))))
  250. X    (cond ((math-zerop r)
  251. X       '(polar 0 0))
  252. X      ((or (math-zerop th))
  253. X       r)
  254. X      ((and (not (eq calc-angle-mode 'rad))
  255. X        (or (equal th '(float 18 1))
  256. X            (equal th 180)))
  257. X       (math-neg r))
  258. X      ((math-negp r)
  259. X       (math-neg (list 'polar (math-neg r) th)))
  260. X      (t
  261. X       (list 'polar r th))))
  262. )
  263. X
  264. X
  265. ;;; Coerce A to be complex (rectangular form).  [c N]
  266. (defun math-complex (a)
  267. X  (cond ((eq (car-safe a) 'cplx) a)
  268. X    ((eq (car-safe a) 'polar)
  269. X     (if (math-zerop (nth 1 a))
  270. X         (nth 1 a)
  271. X       (let ((sc (calcFunc-sincos (nth 2 a))))
  272. X         (list 'cplx
  273. X           (math-mul (nth 1 a) (nth 1 sc))
  274. X           (math-mul (nth 1 a) (nth 2 sc))))))
  275. X    (t (list 'cplx a 0)))
  276. )
  277. X
  278. ;;; Coerce A to be complex (polar form).  [c N]
  279. (defun math-polar (a)
  280. X  (cond ((eq (car-safe a) 'polar) a)
  281. X    ((math-zerop a) '(polar 0 0))
  282. X    (t
  283. X     (list 'polar
  284. X           (math-abs a)
  285. X           (calcFunc-arg a))))
  286. )
  287. X
  288. ;;; Multiply A by the imaginary constant i.  [N N] [Public]
  289. (defun math-imaginary (a)
  290. X  (if (and (or (Math-objvecp a) (math-infinitep a))
  291. X       (not calc-symbolic-mode))
  292. X      (math-mul a
  293. X        (if (or (eq (car-safe a) 'polar)
  294. X            (and (not (eq (car-safe a) 'cplx))
  295. X                 (eq calc-complex-mode 'polar)))
  296. X            (list 'polar 1 (math-quarter-circle nil))
  297. X          '(cplx 0 1)))
  298. X    (math-mul a '(var i var-i)))
  299. )
  300. X
  301. X
  302. X
  303. X
  304. (defun math-want-polar (a b)
  305. X  (cond ((eq (car-safe a) 'polar)
  306. X     (if (eq (car-safe b) 'cplx)
  307. X         (eq calc-complex-mode 'polar)
  308. X       t))
  309. X    ((eq (car-safe a) 'cplx)
  310. X     (if (eq (car-safe b) 'polar)
  311. X         (eq calc-complex-mode 'polar)
  312. X       nil))
  313. X    ((eq (car-safe b) 'polar)
  314. X     t)
  315. X    ((eq (car-safe b) 'cplx)
  316. X     nil)
  317. X    (t (eq calc-complex-mode 'polar)))
  318. )
  319. X
  320. ;;; Force A to be in the (-pi,pi] or (-180,180] range.
  321. (defun math-fix-circular (a &optional dir)   ; [R R]
  322. X  (cond ((eq (car-safe a) 'hms)
  323. X     (cond ((and (Math-lessp 180 (nth 1 a)) (not (eq dir 1)))
  324. X        (math-fix-circular (math-add a '(float -36 1)) -1))
  325. X           ((or (Math-lessp -180 (nth 1 a)) (eq dir -1))
  326. X        a)
  327. X           (t
  328. X        (math-fix-circular (math-add a '(float 36 1)) 1))))
  329. X    ((eq calc-angle-mode 'rad)
  330. X     (cond ((and (Math-lessp (math-pi) a) (not (eq dir 1)))
  331. X        (math-fix-circular (math-sub a (math-two-pi)) -1))
  332. X           ((or (Math-lessp (math-neg (math-pi)) a) (eq dir -1))
  333. X        a)
  334. X           (t
  335. X        (math-fix-circular (math-add a (math-two-pi)) 1))))
  336. X    (t
  337. X     (cond ((and (Math-lessp '(float 18 1) a) (not (eq dir 1)))
  338. X        (math-fix-circular (math-add a '(float -36 1)) -1))
  339. X           ((or (Math-lessp '(float -18 1) a) (eq dir -1))
  340. X        a)
  341. X           (t
  342. X        (math-fix-circular (math-add a '(float 36 1)) 1)))))
  343. )
  344. X
  345. X
  346. ;;;; Complex numbers.
  347. X
  348. (defun calcFunc-polar (a)   ; [C N] [Public]
  349. X  (cond ((Math-vectorp a)
  350. X     (math-map-vec 'calcFunc-polar a))
  351. X    ((Math-realp a) a)
  352. X    ((Math-numberp a)
  353. X     (math-normalize (math-polar a)))
  354. X    (t (list 'calcFunc-polar a)))
  355. )
  356. X
  357. (defun calcFunc-rect (a)   ; [N N] [Public]
  358. X  (cond ((Math-vectorp a)
  359. X     (math-map-vec 'calcFunc-rect a))
  360. X    ((Math-realp a) a)
  361. X    ((Math-numberp a)
  362. X     (math-normalize (math-complex a)))
  363. X    (t (list 'calcFunc-rect a)))
  364. )
  365. X
  366. ;;; Compute the complex conjugate of A.  [O O] [Public]
  367. (defun calcFunc-conj (a)
  368. X  (let (aa bb)
  369. X    (cond ((Math-realp a)
  370. X       a)
  371. X      ((eq (car a) 'cplx)
  372. X       (list 'cplx (nth 1 a) (math-neg (nth 2 a))))
  373. X      ((eq (car a) 'polar)
  374. X       (list 'polar (nth 1 a) (math-neg (nth 2 a))))
  375. X      ((eq (car a) 'vec)
  376. X       (math-map-vec 'calcFunc-conj a))
  377. X      ((eq (car a) 'calcFunc-conj)
  378. X       (nth 1 a))
  379. X      ((math-known-realp a)
  380. X       a)
  381. X      ((and (equal a '(var i var-i))
  382. X        (math-imaginary-i))
  383. X       (math-neg a))
  384. X      ((and (memq (car a) '(+ - * /))
  385. X        (progn
  386. X          (setq aa (calcFunc-conj (nth 1 a))
  387. X            bb (calcFunc-conj (nth 2 a)))
  388. X          (or (not (eq (car-safe aa) 'calcFunc-conj))
  389. X              (not (eq (car-safe bb) 'calcFunc-conj)))))
  390. X       (if (eq (car a) '+)
  391. X           (math-add aa bb)
  392. X         (if (eq (car a) '-)
  393. X         (math-sub aa bb)
  394. X           (if (eq (car a) '*)
  395. X           (math-mul aa bb)
  396. X         (math-div aa bb)))))
  397. X      ((eq (car a) 'neg)
  398. X       (math-neg (calcFunc-conj (nth 1 a))))
  399. X      ((let ((inf (math-infinitep a)))
  400. X         (and inf
  401. X          (math-mul (calcFunc-conj (math-infinite-dir a inf)) inf))))
  402. X      (t (calc-record-why 'numberp a)
  403. X         (list 'calcFunc-conj a))))
  404. )
  405. X
  406. X
  407. ;;; Compute the complex argument of A.  [F N] [Public]
  408. (defun calcFunc-arg (a)
  409. X  (cond ((Math-anglep a)
  410. X     (if (math-negp a) (math-half-circle nil) 0))
  411. X    ((eq (car-safe a) 'cplx)
  412. X     (calcFunc-arctan2 (nth 2 a) (nth 1 a)))
  413. X    ((eq (car-safe a) 'polar)
  414. X     (nth 2 a))
  415. X    ((eq (car a) 'vec)
  416. X     (math-map-vec 'calcFunc-arg a))
  417. X    ((and (equal a '(var i var-i))
  418. X          (math-imaginary-i))
  419. X     (math-quarter-circle t))
  420. X    ((and (equal a '(neg (var i var-i)))
  421. X          (math-imaginary-i))
  422. X     (math-neg (math-quarter-circle t)))
  423. X    ((let ((signs (math-possible-signs a)))
  424. X       (or (and (memq signs '(2 4 6)) 0)
  425. X           (and (eq signs 1) (math-half-circle nil)))))
  426. X    ((math-infinitep a)
  427. X     (if (or (equal a '(var uinf var-uinf))
  428. X         (equal a '(var nan var-nan)))
  429. X         '(var nan var-nan)
  430. X       (calcFunc-arg (math-infinite-dir a))))
  431. X    (t (calc-record-why 'numvecp a)
  432. X       (list 'calcFunc-arg a)))
  433. )
  434. X
  435. (defun math-imaginary-i ()
  436. X  (let ((val (calc-var-value 'var-i)))
  437. X    (or (eq (car-safe val) 'special-const)
  438. X    (equal val '(cplx 0 1))
  439. X    (and (eq (car-safe val) 'polar)
  440. X         (eq (nth 1 val) 0)
  441. X         (Math-equal (nth 1 val) (math-quarter-circle nil)))))
  442. )
  443. X
  444. ;;; Extract the real or complex part of a complex number.  [R N] [Public]
  445. ;;; Also extracts the real part of a modulo form.
  446. (defun calcFunc-re (a)
  447. X  (let (aa bb)
  448. X    (cond ((Math-realp a) a)
  449. X      ((memq (car a) '(mod cplx))
  450. X       (nth 1 a))
  451. X      ((eq (car a) 'polar)
  452. X       (math-mul (nth 1 a) (calcFunc-cos (nth 2 a))))
  453. X      ((eq (car a) 'vec)
  454. X       (math-map-vec 'calcFunc-re a))
  455. X      ((math-known-realp a) a)
  456. X      ((eq (car a) 'calcFunc-conj)
  457. X       (calcFunc-re (nth 1 a)))
  458. X      ((and (equal a '(var i var-i))
  459. X        (math-imaginary-i))
  460. X       0)
  461. X      ((and (memq (car a) '(+ - *))
  462. X        (progn
  463. X          (setq aa (calcFunc-re (nth 1 a))
  464. X            bb (calcFunc-re (nth 2 a)))
  465. X          (or (not (eq (car-safe aa) 'calcFunc-re))
  466. X              (not (eq (car-safe bb) 'calcFunc-re)))))
  467. X       (if (eq (car a) '+)
  468. X           (math-add aa bb)
  469. X         (if (eq (car a) '-)
  470. X         (math-sub aa bb)
  471. X           (math-sub (math-mul aa bb)
  472. X             (math-mul (calcFunc-im (nth 1 a))
  473. X                   (calcFunc-im (nth 2 a)))))))
  474. X      ((and (eq (car a) '/)
  475. X        (math-known-realp (nth 2 a)))
  476. X       (math-div (calcFunc-re (nth 1 a)) (nth 2 a)))
  477. X      ((eq (car a) 'neg)
  478. X       (math-neg (calcFunc-re (nth 1 a))))
  479. X      (t (calc-record-why 'numberp a)
  480. X         (list 'calcFunc-re a))))
  481. )
  482. X
  483. (defun calcFunc-im (a)
  484. X  (let (aa bb)
  485. X    (cond ((Math-realp a)
  486. X       (if (math-floatp a) '(float 0 0) 0))
  487. X      ((eq (car a) 'cplx)
  488. X       (nth 2 a))
  489. X      ((eq (car a) 'polar)
  490. X       (math-mul (nth 1 a) (calcFunc-sin (nth 2 a))))
  491. X      ((eq (car a) 'vec)
  492. X       (math-map-vec 'calcFunc-im a))
  493. X      ((math-known-realp a)
  494. X       0)
  495. X      ((eq (car a) 'calcFunc-conj)
  496. X       (math-neg (calcFunc-im (nth 1 a))))
  497. X      ((and (equal a '(var i var-i))
  498. X        (math-imaginary-i))
  499. X       1)
  500. X      ((and (memq (car a) '(+ - *))
  501. X        (progn
  502. X          (setq aa (calcFunc-im (nth 1 a))
  503. X            bb (calcFunc-im (nth 2 a)))
  504. X          (or (not (eq (car-safe aa) 'calcFunc-im))
  505. X              (not (eq (car-safe bb) 'calcFunc-im)))))
  506. X       (if (eq (car a) '+)
  507. X           (math-add aa bb)
  508. X         (if (eq (car a) '-)
  509. X         (math-sub aa bb)
  510. X           (math-add (math-mul (calcFunc-re (nth 1 a)) bb)
  511. X             (math-mul aa (calcFunc-re (nth 2 a)))))))
  512. X      ((and (eq (car a) '/)
  513. X        (math-known-realp (nth 2 a)))
  514. X       (math-div (calcFunc-im (nth 1 a)) (nth 2 a)))
  515. X      ((eq (car a) 'neg)
  516. X       (math-neg (calcFunc-im (nth 1 a))))
  517. X      (t (calc-record-why 'numberp a)
  518. X         (list 'calcFunc-im a))))
  519. )
  520. X
  521. X
  522. X
  523. SHAR_EOF
  524. chmod 0644 calc-cplx.el ||
  525. echo 'restore of calc-cplx.el failed'
  526. Wc_c="`wc -c < 'calc-cplx.el'`"
  527. test 10186 -eq "$Wc_c" ||
  528.     echo 'calc-cplx.el: original size 10186, current size' "$Wc_c"
  529. rm -f _shar_wnt_.tmp
  530. fi
  531. # ============= calc-embed.el ==============
  532. if test -f 'calc-embed.el' -a X"$1" != X"-c"; then
  533.     echo 'x - skipping calc-embed.el (File already exists)'
  534.     rm -f _shar_wnt_.tmp
  535. else
  536. > _shar_wnt_.tmp
  537. echo 'x - extracting calc-embed.el (Text)'
  538. sed 's/^X//' << 'SHAR_EOF' > 'calc-embed.el' &&
  539. ;; Calculator for GNU Emacs, part II [calc-embed.el]
  540. ;; Copyright (C) 1990, 1991 Free Software Foundation, Inc.
  541. ;; Written by Dave Gillespie, daveg@csvax.cs.caltech.edu.
  542. X
  543. ;; This file is part of GNU Emacs.
  544. X
  545. ;; GNU Emacs is distributed in the hope that it will be useful,
  546. ;; but WITHOUT ANY WARRANTY.  No author or distributor
  547. ;; accepts responsibility to anyone for the consequences of using it
  548. ;; or for whether it serves any particular purpose or works at all,
  549. ;; unless he says so in writing.  Refer to the GNU Emacs General Public
  550. ;; License for full details.
  551. X
  552. ;; Everyone is granted permission to copy, modify and redistribute
  553. ;; GNU Emacs, but only under the conditions described in the
  554. ;; GNU Emacs General Public License.   A copy of this license is
  555. ;; supposed to have been given to you along with GNU Emacs so you
  556. ;; can know your rights and responsibilities.  It should be in a
  557. ;; file named COPYING.  Among other things, the copyright notice
  558. ;; and this notice must be preserved on all copies.
  559. X
  560. X
  561. X
  562. ;; This file is autoloaded from calc-ext.el.
  563. (require 'calc-ext)
  564. X
  565. (require 'calc-macs)
  566. X
  567. (defun calc-Need-calc-embed () nil)
  568. X
  569. X
  570. (defun calc-show-plain (n)
  571. X  (interactive "P")
  572. X  (calc-wrapper
  573. X   (calc-set-command-flag 'renum-stack)
  574. X   (message (if (calc-change-mode 'calc-show-plain n nil t)
  575. X        "Including \"plain\" formulas in Calc Embedded mode."
  576. X          "Omitting \"plain\" formulas in Calc Embedded mode.")))
  577. )
  578. X
  579. X
  580. X
  581. X
  582. ;;; Things to do for Embedded Mode:
  583. ;;; 
  584. ;;;  Detect and strip off unexpected labels during reading.
  585. ;;;
  586. ;;;  Get calc-grab-region to use math-read-big-expr.
  587. ;;;  If calc-show-plain, main body should have only righthand side of => expr.
  588. ;;;  Handle tabs that have crept into embedded formulas.
  589. ;;;  After "switching to new formula", home cursor to that formula.
  590. ;;;  Do something like \evalto ... \to for \gets operators.
  591. ;;;
  592. X
  593. X
  594. (defvar calc-embedded-modes nil)
  595. (defvar calc-embedded-globals nil)
  596. (defvar calc-embedded-active nil)
  597. X
  598. (make-variable-buffer-local 'calc-embedded-all-active)
  599. (make-variable-buffer-local 'calc-embedded-some-active)
  600. X
  601. X
  602. (defvar calc-embedded-open-formula "\\`\\|^\n\\|\\$\\$?\\|\\\\\\[\\|^\\\\begin.*\n\\|^@.*\n\\|^\\.EQ.*\n\\|\\\\(\\|^%\n\\|^\\.\\\\\"\n"
  603. X  "*A regular expression for the opening delimiter of a formula used by
  604. calc-embedded.")
  605. X
  606. (defvar calc-embedded-close-formula "\\'\\|\n$\\|\\$\\$?\\|\\\\]\\|^\\\\end.*\n\\|^@.*\n\\|^\\.EN.*\n\\|\\\\)\\|\n%\n\\|^\\.\\\\\"\n"
  607. X  "*A regular expression for the closing delimiter of a formula used by
  608. calc-embedded.")
  609. X
  610. (defvar calc-embedded-open-word "^\\|[^-+0-9.eE]"
  611. X  "*A regular expression for the opening delimiter of a formula used by
  612. calc-embedded-word.")
  613. X
  614. (defvar calc-embedded-close-word "$\\|[^-+0-9.eE]"
  615. X  "*A regular expression for the closing delimiter of a formula used by
  616. calc-embedded-word.")
  617. X
  618. (defvar calc-embedded-open-plain "%%% "
  619. X  "*A string which is the opening delimiter for a \"plain\" formula.
  620. If calc-show-plain mode is enabled, this is inserted at the front of
  621. each formula.")
  622. X
  623. (defvar calc-embedded-close-plain " %%%\n"
  624. X  "*A string which is the closing delimiter for a \"plain\" formula.
  625. See calc-embedded-open-plain.")
  626. X
  627. (defvar calc-embedded-open-new-formula "\n\n"
  628. X  "*A string which is inserted at front of formula by calc-embedded-new-formula.")
  629. X
  630. (defvar calc-embedded-close-new-formula "\n\n"
  631. X  "*A string which is inserted at end of formula by calc-embedded-new-formula.")
  632. X
  633. (defvar calc-embedded-announce-formula "%Embed\n\\(% .*\n\\)*"
  634. X  "*A regular expression which is sure to be followed by a calc-embedded formula." )
  635. X
  636. (defvar calc-embedded-open-mode "% "
  637. X  "*A string which should precede calc-embedded mode annotations.
  638. This is not required to be present for user-written mode annotations.")
  639. X
  640. (defvar calc-embedded-close-mode "\n"
  641. X  "*A string which should follow calc-embedded mode annotations.
  642. This is not required to be present for user-written mode annotations.")
  643. X
  644. X
  645. (defconst calc-embedded-mode-vars '(("precision" . calc-internal-prec)
  646. X                    ("word-size" . calc-word-size)
  647. X                    ("angles" . calc-angle-mode)
  648. X                    ("symbolic" . calc-symbolic-mode)
  649. X                    ("matrix" . calc-matrix-mode)
  650. X                    ("fractions" . calc-prefer-frac)
  651. X                    ("complex" . calc-complex-mode)
  652. X                    ("simplify" . calc-simplify-mode)
  653. X                    ("language" . the-language)
  654. X                    ("plain" . calc-show-plain)
  655. X                    ("break" . calc-line-breaking)
  656. X                    ("justify" . the-display-just)
  657. X                    ("left-label" . calc-left-label)
  658. X                    ("right-label" . calc-right-label)
  659. X                    ("radix" . calc-number-radix)
  660. X                    ("leading-zeros" . calc-leading-zeros)
  661. X                    ("grouping" . calc-group-digits)
  662. X                    ("group-char" . calc-group-char)
  663. X                    ("point-char" . calc-point-char)
  664. X                    ("frac-format" . calc-frac-format)
  665. X                    ("float-format" . calc-float-format)
  666. X                    ("complex-format" . calc-complex-format)
  667. X                    ("hms-format" . calc-hms-format)
  668. X                    ("date-format" . calc-date-format)
  669. X                    ("matrix-justify" . calc-matrix-just)
  670. X                    ("full-vectors" . calc-full-vectors)
  671. X                    ("break-vectors" . calc-break-vectors)
  672. X                    ("vector-commas" . calc-vector-commas)
  673. X                    ("vector-brackets" . calc-vector-brackets)
  674. X                    ("matrix-brackets" . calc-matrix-brackets)
  675. X                    ("strings" . calc-display-strings)
  676. ))
  677. X
  678. X
  679. ;;; Format of calc-embedded-info vector:
  680. ;;;    0   Editing buffer.
  681. ;;;    1   Calculator buffer.
  682. ;;;    2   Top of current formula (marker).
  683. ;;;    3   Bottom of current formula (marker).
  684. ;;;    4   Top of current formula's delimiters (marker).
  685. ;;;    5   Bottom of current formula's delimiters (marker).
  686. ;;;    6   String representation of current formula.
  687. ;;;    7   Non-nil if formula is embedded within a single line.
  688. ;;;    8   Internal representation of current formula.
  689. ;;;    9   Variable assigned by this formula, or nil.
  690. ;;;   10   List of variables upon which this formula depends.
  691. ;;;   11   Evaluated value of the formula, or nil.
  692. ;;;   12   Mode settings for current formula.
  693. ;;;   13   Local mode settings for current formula.
  694. ;;;   14   Permanent mode settings for current formula.
  695. ;;;   15   Global mode settings for editing buffer.
  696. X
  697. X
  698. ;;; calc-embedded-active is an a-list keyed on buffers; each cdr is a
  699. ;;; sorted list of calc-embedded-infos in that buffer.  We do this
  700. ;;; rather than using buffer-local variables because the latter are
  701. ;;; thrown away when a buffer changes major modes.
  702. X
  703. X
  704. (defun calc-do-embedded (arg end obeg oend)
  705. X  (if calc-embedded-info
  706. X
  707. X      ;; Turn embedded mode off or switch to a new buffer.
  708. X      (cond ((eq (current-buffer) (aref calc-embedded-info 1))
  709. X         (let ((calcbuf (current-buffer))
  710. X           (buf (aref calc-embedded-info 0)))
  711. X           (calc-embedded-original-buffer t)
  712. X           (calc-embedded nil)
  713. X           (switch-to-buffer calcbuf)))
  714. X
  715. X        ((eq (current-buffer) (aref calc-embedded-info 0))
  716. X         (let* ((info calc-embedded-info)
  717. X            (mode calc-embedded-modes))
  718. X           (save-excursion
  719. X         (set-buffer (aref info 1))
  720. X         (if (and (> (calc-stack-size) 0)
  721. X              (equal (calc-top 1 'full) (aref info 8)))
  722. X             (let ((calc-no-refresh-evaltos t))
  723. X               (if (calc-top 1 'sel)
  724. X               (calc-unselect 1))
  725. X               (calc-embedded-set-modes
  726. X            (aref info 15) (aref info 12) (aref info 14))
  727. X               (let ((calc-embedded-info nil))
  728. X             (calc-wrapper (calc-pop-stack))))
  729. X           (calc-set-mode-line)))
  730. X           (setq calc-embedded-info nil
  731. X             mode-line-buffer-identification (car mode)
  732. X             truncate-lines (nth 2 mode)
  733. X             buffer-read-only nil)
  734. X           (use-local-map (nth 1 mode))
  735. X           (set-buffer-modified-p (buffer-modified-p))
  736. X           (or calc-embedded-quiet
  737. X           (message "Back to %s mode." mode-name))))
  738. X
  739. X        (t
  740. X         (if (buffer-name (aref calc-embedded-info 0))
  741. X         (save-excursion
  742. X           (set-buffer (aref calc-embedded-info 0))
  743. X           (or (y-or-n-p "Cancel Calc Embedded mode in buffer %s? "
  744. X                 (buffer-name))
  745. X               (keyboard-quit))
  746. X           (calc-embedded nil)))
  747. X         (calc-embedded arg end obeg oend)))
  748. X
  749. X    ;; Turn embedded mode on.
  750. X    (calc-plain-buffer-only)
  751. X    (let ((modes (list mode-line-buffer-identification
  752. X               (current-local-map)
  753. X               truncate-lines))
  754. X      top bot outer-top outer-bot
  755. X      info chg ident)
  756. X      (barf-if-buffer-read-only)
  757. X      (or calc-embedded-globals
  758. X      (calc-find-globals))
  759. X      (setq info (calc-embedded-make-info (point) nil t arg end obeg oend))
  760. X      (if (eq (car-safe (aref info 8)) 'error)
  761. X      (progn
  762. X        (goto-char (nth 1 (aref info 8)))
  763. X        (error (nth 2 (aref info 8)))))
  764. X      (let ((mode-line-buffer-identification mode-line-buffer-identification)
  765. X        (calc-embedded-info info)
  766. X        (calc-embedded-no-reselect t))
  767. X    (calc-wrapper
  768. X     (let* ((okay nil)
  769. X        (calc-no-refresh-evaltos t))
  770. X       (setq chg (calc-embedded-set-modes
  771. X              (aref info 15) (aref info 12) (aref info 13)))
  772. X       (if (aref info 8)
  773. X           (calc-push (calc-normalize (aref info 8)))
  774. X         (calc-alg-entry)))
  775. X     (setq calc-undo-list nil
  776. X           calc-redo-list nil
  777. X           ident mode-line-buffer-identification)))
  778. X      (setq calc-embedded-info info
  779. X        calc-embedded-modes modes
  780. X        mode-line-buffer-identification ident
  781. X        truncate-lines t
  782. X        buffer-read-only t)
  783. X      (set-buffer-modified-p (buffer-modified-p))
  784. X      (use-local-map calc-mode-map)
  785. X      (setq calc-no-refresh-evaltos nil)
  786. X      (and chg calc-any-evaltos (calc-wrapper (calc-refresh-evaltos)))
  787. X      (or (eq calc-embedded-quiet t)
  788. X      (message "Embedded Calc mode enabled.  %s to return to normal."
  789. X           (if calc-embedded-quiet
  790. X               "Type `M-# x'"
  791. X             "Give this command again")))))
  792. X  (scroll-down 0)    ; fix a bug which occurs when truncate-lines is changed.
  793. )
  794. (setq calc-embedded-quiet nil)
  795. X
  796. X
  797. (defun calc-embedded-select (arg)
  798. X  (interactive "P")
  799. X  (calc-embedded arg)
  800. X  (and calc-embedded-info
  801. X       (eq (car-safe (aref calc-embedded-info 8)) 'calcFunc-evalto)
  802. X       (calc-select-part 1))
  803. X  (and calc-embedded-info
  804. X       (or (eq (car-safe (aref calc-embedded-info 8)) 'calcFunc-assign)
  805. X       (and (eq (car-safe (aref calc-embedded-info 8)) 'calcFunc-evalto)
  806. X        (eq (car-safe (nth 1 (aref calc-embedded-info 8)))
  807. X            'calcFunc-assign)))
  808. X       (calc-select-part 2))
  809. )
  810. X
  811. X
  812. (defun calc-embedded-update-formula (arg)
  813. X  (interactive "P")
  814. X  (if arg
  815. X      (let ((entry (assq (current-buffer) calc-embedded-active)))
  816. X    (while (setq entry (cdr entry))
  817. X      (and (eq (car-safe (aref (car entry) 8)) 'calcFunc-evalto)
  818. X           (or (not (consp arg))
  819. X           (and (<= (aref (car entry) 2) (region-beginning))
  820. X            (>= (aref (car entry) 3) (region-end))))
  821. X           (save-excursion
  822. X         (calc-embedded-update (car entry) 14 t t)))))
  823. X    (if (and calc-embedded-info
  824. X         (eq (current-buffer) (aref calc-embedded-info 0))
  825. X         (>= (point) (aref calc-embedded-info 4))
  826. X         (<= (point) (aref calc-embedded-info 5)))
  827. X    (calc-evaluate 1)
  828. X      (let* ((opt (point))
  829. X         (info (calc-embedded-make-info (point) nil t))
  830. X         (pt (- opt (aref info 4))))
  831. X    (or (eq (car-safe (aref info 8)) 'error)
  832. X        (progn
  833. X          (save-excursion
  834. X        (calc-embedded-update info 14 'eval t))
  835. X          (goto-char (+ (aref info 4) pt)))))))
  836. )
  837. X
  838. X
  839. (defun calc-embedded-edit (arg)
  840. X  (interactive "P")
  841. X  (let ((info (calc-embedded-make-info (point) nil t arg))
  842. X    str)
  843. X    (if (eq (car-safe (aref info 8)) 'error)
  844. X    (progn
  845. X      (goto-char (nth 1 (aref info 8)))
  846. X      (error (nth 2 (aref info 8)))))
  847. X    (calc-wrapper
  848. X     (setq str (math-showing-full-precision
  849. X        (math-format-nice-expr (aref info 8) (screen-width))))
  850. X     (calc-edit-mode (list 'calc-embedded-finish-edit info))
  851. X     (insert str "\n")))
  852. X  (calc-show-edit-buffer)
  853. )
  854. X
  855. (defun calc-embedded-finish-edit (info)
  856. X  (let ((buf (current-buffer))
  857. X    (str (buffer-substring (point) (point-max)))
  858. X    (start (point))
  859. X    pos)
  860. X    (switch-to-buffer calc-original-buffer)
  861. X    (let ((val (save-excursion
  862. X         (set-buffer (aref info 1))
  863. X         (let ((calc-language nil)
  864. X               (math-expr-opers math-standard-opers))
  865. X           (math-read-expr str)))))
  866. X      (if (eq (car-safe val) 'error)
  867. X      (progn
  868. X        (switch-to-buffer buf)
  869. X        (goto-char (+ start (nth 1 val)))
  870. X        (error (nth 2 val))))
  871. X      (calc-embedded-original-buffer t info)
  872. X      (aset info 8 val)
  873. X      (calc-embedded-update info 14 t t)))
  874. )
  875. X
  876. (defun calc-do-embedded-activate (arg cbuf)
  877. X  (calc-plain-buffer-only)
  878. X  (if arg
  879. X      (calc-embedded-forget))
  880. X  (calc-find-globals)
  881. X  (if (< (prefix-numeric-value arg) 0)
  882. X      (message "Deactivating %s for Calc Embedded mode." (buffer-name))
  883. X    (message "Activating %s for Calc Embedded mode..." (buffer-name))
  884. X    (save-excursion
  885. X      (let* ((active (assq (current-buffer) calc-embedded-active))
  886. X         (info active)
  887. X         (pat " := \\| \\\\gets \\| => \\| \\\\evalto "))
  888. X    (if calc-embedded-announce-formula
  889. X        (setq pat (format "%s\\|\\(%s\\)"
  890. X                  pat calc-embedded-announce-formula)))
  891. X    (while (setq info (cdr info))
  892. X      (or (equal (buffer-substring (aref (car info) 2) (aref (car info) 3))
  893. X             (aref (car info) 6))
  894. X          (setcdr active (delq (car info) (cdr active)))))
  895. X    (goto-char (point-min))
  896. X    (while (re-search-forward pat nil t)
  897. X      (if (looking-at calc-embedded-open-formula)
  898. X          (goto-char (match-end 1)))
  899. X      (setq info (calc-embedded-make-info (point) cbuf nil))
  900. X      (or (eq (car-safe (aref info 8)) 'error)
  901. X          (goto-char (aref info 5))))))
  902. X    (message "Activating %s for Calc Embedded mode...done" (buffer-name)))
  903. X  (calc-embedded-active-state t)
  904. )
  905. X
  906. (defun calc-plain-buffer-only ()
  907. X  (if (memq major-mode '(calc-mode calc-trail-mode calc-edit-mode))
  908. X      (error "This command should be used in a normal editing buffer"))
  909. )
  910. X
  911. (defun calc-embedded-active-state (state)
  912. X  (or (assq 'calc-embedded-all-active minor-mode-alist)
  913. X      (setq minor-mode-alist
  914. X        (cons '(calc-embedded-all-active " Active")
  915. X          (cons '(calc-embedded-some-active " ~Active")
  916. X            minor-mode-alist))))
  917. X  (let ((active (assq (current-buffer) calc-embedded-active)))
  918. X    (or (cdr active)
  919. X    (setq state nil)))
  920. X  (and (eq state 'more) calc-embedded-all-active (setq state t))
  921. X  (setq calc-embedded-all-active (eq state t)
  922. X    calc-embedded-some-active (not (memq state '(nil t))))
  923. X  (set-buffer-modified-p (buffer-modified-p))
  924. )
  925. X
  926. X
  927. (defun calc-embedded-original-buffer (switch &optional info)
  928. X  (or info (setq info calc-embedded-info))
  929. X  (or (buffer-name (aref info 0))
  930. X      (progn
  931. X    (error "Calc embedded mode: Original buffer has been killed")))
  932. X  (if switch
  933. X      (set-buffer (aref info 0)))
  934. )
  935. X
  936. (defun calc-embedded-word ()
  937. X  (interactive)
  938. X  (calc-embedded '(4))
  939. )
  940. X
  941. (defun calc-embedded-mark-formula (&optional body-only)
  942. X  "Put point at the beginning of this Calc formula, mark at the end.
  943. This normally marks the whole formula, including surrounding delimiters.
  944. With any prefix argument, marks only the formula itself."
  945. X  (interactive "P")
  946. X  (and (eq major-mode 'calc-mode)
  947. X       (error "This command should be used in a normal editing buffer"))
  948. X  (let (top bot outer-top outer-bot)
  949. X    (save-excursion
  950. X      (calc-embedded-find-bounds body-only))
  951. X    (push-mark (if body-only bot outer-bot) t)
  952. X    (goto-char (if body-only top outer-top)))
  953. )
  954. X
  955. (defun calc-embedded-find-bounds (&optional plain)
  956. X  ;; (while (and (bolp) (eq (following-char) ?\n))
  957. X  ;;  (forward-char 1))
  958. X  (and (eolp) (bolp) (not (eq (char-after (- (point) 2)) ?\n))
  959. X       (forward-char -1))
  960. X  (let ((home (point)))
  961. X    (or (and (looking-at calc-embedded-open-formula)
  962. X         (not (looking-at calc-embedded-close-formula)))
  963. X    (re-search-backward calc-embedded-open-formula nil t)
  964. X    (error "Can't find start of formula"))
  965. X    (and (eq (preceding-char) ?\$)  ; backward search for \$\$? won't back
  966. X     (eq (following-char) ?\$)  ; up over a second $, so do it by hand.
  967. X     (forward-char -1))
  968. X    (setq outer-top (point))
  969. X    (goto-char (match-end 0))
  970. X    (if (eq (following-char) ?\n)
  971. X    (forward-char 1))
  972. X    (or (bolp)
  973. X    (while (eq (following-char) ?\ )
  974. X      (forward-char 1)))
  975. X    (or (eq plain 'plain)
  976. X    (if (looking-at (regexp-quote calc-embedded-open-plain))
  977. X        (progn
  978. X          (goto-char (match-end 0))
  979. X          (search-forward calc-embedded-close-plain))))
  980. X    (setq top (point))
  981. X    (or (re-search-forward calc-embedded-close-formula nil t)
  982. X    (error "Can't find end of formula"))
  983. X    (if (< (point) home)
  984. X    (error "Not inside a formula"))
  985. X    (and (eq (following-char) ?\n) (not (bolp))
  986. X     (forward-char 1))
  987. X    (setq outer-bot (point))
  988. X    (goto-char (match-beginning 0))
  989. X    (if (eq (preceding-char) ?\n)
  990. X    (backward-char 1))
  991. X    (or (eolp)
  992. X    (while (eq (preceding-char) ?\ )
  993. X      (backward-char 1)))
  994. X    (setq bot (point)))
  995. )
  996. X
  997. (defun calc-embedded-kill-formula ()
  998. X  "Kill the formula surrounding point.
  999. If Calc Embedded mode was active, this deactivates it.
  1000. The formula (including its surrounding delimiters) is saved in the kill ring.
  1001. The command \\[yank] can retrieve it from there."
  1002. X  (interactive)
  1003. X  (and calc-embedded-info
  1004. X       (calc-embedded nil))
  1005. X  (calc-embedded-mark-formula)
  1006. X  (kill-region (point) (mark))
  1007. X  (pop-mark)
  1008. )
  1009. X
  1010. (defun calc-embedded-copy-formula-as-kill ()
  1011. X  "Save the formula surrounding point as if killed, but don't kill it."
  1012. X  (interactive)
  1013. X  (save-excursion
  1014. X    (calc-embedded-mark-formula)
  1015. X    (copy-region-as-kill (point) (mark))
  1016. X    (pop-mark))
  1017. )
  1018. X
  1019. (defun calc-embedded-duplicate ()
  1020. X  (interactive)
  1021. X  (let ((already calc-embedded-info)
  1022. X    top bot outer-top outer-bot new-top)
  1023. X    (if calc-embedded-info
  1024. X    (progn
  1025. X      (setq top (+ (aref calc-embedded-info 2))
  1026. X        bot (+ (aref calc-embedded-info 3))
  1027. X        outer-top (+ (aref calc-embedded-info 4))
  1028. X        outer-bot (+ (aref calc-embedded-info 5)))
  1029. X      (calc-embedded nil))
  1030. X      (calc-embedded-find-bounds))
  1031. X    (goto-char outer-bot)
  1032. X    (insert "\n")
  1033. X    (setq new-top (point))
  1034. X    (insert-buffer-substring (current-buffer) outer-top outer-bot)
  1035. X    (goto-char (+ new-top (- top outer-top)))
  1036. X    (let ((calc-embedded-quiet (if already t 'x)))
  1037. X      (calc-embedded (+ new-top (- top outer-top))
  1038. X             (+ new-top (- bot outer-top))
  1039. X             new-top
  1040. X             (+ new-top (- outer-bot outer-top)))))
  1041. )
  1042. X
  1043. (defun calc-embedded-next (arg)
  1044. X  (interactive "P")
  1045. X  (setq arg (prefix-numeric-value arg))
  1046. X  (let* ((active (cdr (assq (current-buffer) calc-embedded-active)))
  1047. X     (p active)
  1048. X     (num (length active)))
  1049. X    (or active
  1050. X    (error "No active formulas in buffer"))
  1051. X    (cond ((= arg 0))
  1052. X      ((= arg -1)
  1053. X       (if (<= (point) (aref (car active) 3))
  1054. X           (goto-char (aref (nth (1- num) active) 2))
  1055. X         (while (and (cdr p)
  1056. X             (> (point) (aref (nth 1 p) 3)))
  1057. X           (setq p (cdr p)))
  1058. X         (goto-char (aref (car p) 2))))
  1059. X      ((< arg -1)
  1060. X       (calc-embedded-next -1)
  1061. X       (calc-embedded-next (+ (* num 1000) arg 1)))
  1062. X      (t
  1063. X       (setq arg (1+ (% (1- arg) num)))
  1064. X       (while (and p (>= (point) (aref (car p) 2)))
  1065. X         (setq p (cdr p)))
  1066. X       (while (> (setq arg (1- arg)) 0)
  1067. X         (setq p (if p (cdr p) (cdr active))))
  1068. X       (goto-char (aref (car (or p active)) 2)))))
  1069. )
  1070. X
  1071. (defun calc-embedded-previous (arg)
  1072. X  (interactive "p")
  1073. X  (calc-embedded-next (- (prefix-numeric-value arg)))
  1074. )
  1075. X
  1076. (defun calc-embedded-new-formula ()
  1077. X  (interactive)
  1078. X  (and (eq major-mode 'calc-mode)
  1079. X       (error "This command should be used in a normal editing buffer"))
  1080. X  (if calc-embedded-info
  1081. X      (calc-embedded nil))
  1082. X  (let (top bot outer-top outer-bot)
  1083. X    (if (and (eq (preceding-char) ?\n)
  1084. X         (string-match "\\`\n" calc-embedded-open-new-formula))
  1085. X    (progn
  1086. X      (setq outer-top (1- (point)))
  1087. X      (forward-char -1)
  1088. X      (insert (substring calc-embedded-open-new-formula 1)))
  1089. X      (setq outer-top (point))
  1090. X      (insert calc-embedded-open-new-formula))
  1091. X    (setq top (point))
  1092. X    (insert " ")
  1093. X    (setq bot (point))
  1094. X    (insert calc-embedded-close-new-formula)
  1095. X    (if (and (eq (following-char) ?\n)
  1096. X         (string-match "\n\\'" calc-embedded-close-new-formula))
  1097. X    (delete-char 1))
  1098. X    (setq outer-bot (point))
  1099. X    (goto-char top)
  1100. X    (let ((calc-embedded-quiet 'x))
  1101. X      (calc-embedded top bot outer-top outer-bot)))
  1102. )
  1103. X
  1104. (defun calc-embedded-forget ()
  1105. X  (interactive)
  1106. X  (setq calc-embedded-active (delq (assq (current-buffer) calc-embedded-active)
  1107. X                   calc-embedded-active))
  1108. X  (calc-embedded-active-state nil)
  1109. )
  1110. X
  1111. X
  1112. (defun calc-embedded-set-modes (gmodes modes local-modes &optional temp)
  1113. X  (let ((the-language (calc-embedded-language))
  1114. X    (the-display-just (calc-embedded-justify))
  1115. X    (v gmodes)
  1116. X    (changed nil)
  1117. X    found value)
  1118. X    (while v
  1119. X      (or (symbolp (car v))
  1120. X      (and (setq found (assq (car (car v)) modes))
  1121. X           (not (eq (cdr found) 'default)))
  1122. X      (and (setq found (assq (car (car v)) local-modes))
  1123. X           (not (eq (cdr found) 'default)))
  1124. X      (progn
  1125. X        (if (eq (setq value (cdr (car v))) 'default)
  1126. X        (setq value (cdr (assq (car (car v)) calc-mode-var-list))))
  1127. X        (equal (symbol-value (car (car v))) value))
  1128. X      (progn
  1129. X        (setq changed t)
  1130. X        (if temp (setq prev-modes (cons (cons (car (car v))
  1131. X                          (symbol-value (car (car v))))
  1132. X                        prev-modes)))
  1133. X        (set (car (car v)) value)))
  1134. X      (setq v (cdr v)))
  1135. X    (setq v modes)
  1136. X    (while v
  1137. X      (or (and (setq found (assq (car (car v)) local-modes))
  1138. X           (not (eq (cdr found) 'default)))
  1139. X      (eq (setq value (cdr (car v))) 'default)
  1140. X      (equal (symbol-value (car (car v))) value)
  1141. X      (progn
  1142. X        (setq changed t)
  1143. X        (if temp (setq prev-modes (cons (cons (car (car v))
  1144. X                          (symbol-value (car (car v))))
  1145. X                        prev-modes)))
  1146. X        (set (car (car v)) value)))
  1147. X      (setq v (cdr v)))
  1148. X    (setq v local-modes)
  1149. X    (while v
  1150. X      (or (eq (setq value (cdr (car v))) 'default)
  1151. X      (equal (symbol-value (car (car v))) value)
  1152. X      (progn
  1153. X        (setq changed t)
  1154. X        (if temp (setq prev-modes (cons (cons (car (car v))
  1155. X                          (symbol-value (car (car v))))
  1156. X                        prev-modes)))
  1157. X        (set (car (car v)) value)))
  1158. X      (setq v (cdr v)))
  1159. X    (and changed (not (eq temp t))
  1160. X     (progn
  1161. X       (calc-embedded-set-justify the-display-just)
  1162. X       (calc-embedded-set-language the-language)))
  1163. X    (and changed (not temp)
  1164. X     (progn
  1165. X       (setq calc-full-float-format (list (if (eq (car calc-float-format)
  1166. X                              'fix)
  1167. X                          'float
  1168. X                        (car calc-float-format))
  1169. X                          0))
  1170. X       (calc-refresh)))
  1171. X    changed)
  1172. )
  1173. X
  1174. (defun calc-embedded-language ()
  1175. X  (if calc-language-option
  1176. X      (list calc-language calc-language-option)
  1177. X    calc-language)
  1178. )
  1179. X
  1180. (defun calc-embedded-set-language (lang)
  1181. X  (let ((option nil))
  1182. X    (if (consp lang)
  1183. X    (setq option (nth 1 lang)
  1184. X          lang (car lang)))
  1185. X    (or (and (eq lang calc-language)
  1186. X         (equal option calc-language-option))
  1187. X    (calc-set-language lang option t)))
  1188. )
  1189. X
  1190. (defun calc-embedded-justify ()
  1191. X  (if calc-display-origin
  1192. X      (list calc-display-just calc-display-origin)
  1193. X    calc-display-just)
  1194. )
  1195. X
  1196. (defun calc-embedded-set-justify (just)
  1197. X  (if (consp just)
  1198. X      (setq calc-display-origin (nth 1 just)
  1199. X        calc-display-just (car just))
  1200. X    (setq calc-display-just just
  1201. X      calc-display-origin nil))
  1202. )
  1203. X
  1204. X
  1205. (defun calc-find-globals ()
  1206. X  (interactive)
  1207. X  (and (eq major-mode 'calc-mode)
  1208. X       (error "This command should be used in a normal editing buffer"))
  1209. X  (make-local-variable 'calc-embedded-globals)
  1210. X  (let ((case-fold-search nil)
  1211. X    (modes nil)
  1212. X    (save-pt (point))
  1213. X    found value)
  1214. X    (goto-char (point-min))
  1215. X    (while (re-search-forward "\\[calc-global-mode: *\\([-a-z]+\\): *\\(\"\\([^\"\n\\]\\|\\\\.\\)*\"\\|[- ()a-zA-Z0-9]+\\)\\]" nil t)
  1216. X      (and (setq found (assoc (buffer-substring (match-beginning 1)
  1217. X                        (match-end 1))
  1218. X                  calc-embedded-mode-vars))
  1219. X       (or (assq (cdr found) modes)
  1220. X           (setq modes (cons (cons (cdr found)
  1221. X                       (car (read-from-string
  1222. X                         (buffer-substring
  1223. X                          (match-beginning 2)
  1224. X                          (match-end 2)))))
  1225. X                 modes)))))
  1226. X    (setq calc-embedded-globals (cons t modes))
  1227. X    (goto-char save-pt))
  1228. )
  1229. X
  1230. (defun calc-embedded-find-modes ()
  1231. X  (let ((case-fold-search nil)
  1232. X    (save-pt (point))
  1233. X    (no-defaults t)
  1234. X    (modes nil)
  1235. X    (emodes nil)
  1236. X    (pmodes nil)
  1237. X    found value)
  1238. X    (while (and no-defaults (search-backward "[calc-" nil t))
  1239. X      (forward-char 6)
  1240. X      (or (and (looking-at "mode: *\\([-a-z]+\\): *\\(\"\\([^\"\n\\]\\|\\\\.\\)*\"\\|[- ()a-zA-Z0-9]+\\)]")
  1241. X           (setq found (assoc (buffer-substring (match-beginning 1)
  1242. X                            (match-end 1))
  1243. X                  calc-embedded-mode-vars))
  1244. X           (or (assq (cdr found) modes)
  1245. X           (setq modes (cons (cons (cdr found)
  1246. X                       (car (read-from-string
  1247. X                         (buffer-substring
  1248. X                          (match-beginning 2)
  1249. X                          (match-end 2)))))
  1250. X                     modes))))
  1251. X      (and (looking-at "perm-mode: *\\([-a-z]+\\): *\\(\"\\([^\"\n\\]\\|\\\\.\\)*\"\\|[- ()a-zA-Z0-9]+\\)]")
  1252. X           (setq found (assoc (buffer-substring (match-beginning 1)
  1253. X                            (match-end 1))
  1254. X                  calc-embedded-mode-vars))
  1255. X           (or (assq (cdr found) pmodes)
  1256. X           (setq pmodes (cons (cons (cdr found)
  1257. X                        (car (read-from-string
  1258. X                          (buffer-substring
  1259. X                           (match-beginning 2)
  1260. X                           (match-end 2)))))
  1261. X                      pmodes))))
  1262. X      (and (looking-at "edit-mode: *\\([-a-z]+\\): *\\(\"\\([^\"\n\\]\\|\\\\.\\)*\"\\|[- ()a-zA-Z0-9]+\\)]")
  1263. X           (setq found (assoc (buffer-substring (match-beginning 1)
  1264. X                            (match-end 1))
  1265. X                  calc-embedded-mode-vars))
  1266. X           (or (assq (cdr found) emodes)
  1267. X           (setq emodes (cons (cons (cdr found)
  1268. X                        (car (read-from-string
  1269. X                          (buffer-substring
  1270. X                           (match-beginning 2)
  1271. X                           (match-end 2)))))
  1272. X                      emodes))))
  1273. X      (and (looking-at "defaults]")
  1274. X           (setq no-defaults nil)))
  1275. X      (backward-char 6))
  1276. X    (goto-char save-pt)
  1277. X    (list modes emodes pmodes))
  1278. )
  1279. X
  1280. X
  1281. (defun calc-embedded-make-info (point cbuf fresh &optional
  1282. X                      top bot outer-top outer-bot)
  1283. X  (let* ((bufentry (assq (current-buffer) calc-embedded-active))
  1284. X     (found bufentry)
  1285. X     (force (and fresh top))
  1286. X     (fixed top)
  1287. X     (new-info nil)
  1288. X     info str)
  1289. X    (or found
  1290. X    (setq found (list (current-buffer))
  1291. X          calc-embedded-active (cons found calc-embedded-active)))
  1292. X    (while (and (cdr found)
  1293. X        (> point (aref (car (cdr found)) 3)))
  1294. X      (setq found (cdr found)))
  1295. X    (if (and (cdr found)
  1296. X         (>= point (aref (nth 1 found) 2)))
  1297. X    (setq info (nth 1 found))
  1298. X      (setq info (make-vector 16 nil)
  1299. X        new-info t
  1300. X        fresh t)
  1301. X      (aset info 0 (current-buffer))
  1302. X      (aset info 1 (or cbuf (save-excursion
  1303. X                  (calc-create-buffer)
  1304. X                  (current-buffer)))))
  1305. X    (if (and (integerp top) (not bot))  ; started with a user-supplied argument
  1306. X    (progn
  1307. X      (if (= (setq arg (prefix-numeric-value arg)) 0)
  1308. X          (progn
  1309. X        (aset info 2 (copy-marker (region-beginning)))
  1310. X        (aset info 3 (copy-marker (region-end))))
  1311. X        (aset info (if (> arg 0) 2 3) (point-marker))
  1312. X        (forward-line arg)
  1313. X        (aset info (if (> arg 0) 3 2) (point-marker)))
  1314. X      (aset info 4 (copy-marker (aref info 2)))
  1315. X      (aset info 5 (copy-marker (aref info 3))))
  1316. X      (if (aref info 4)
  1317. X      (setq top (aref info 2)
  1318. X        fixed top)
  1319. X    (if (consp top)
  1320. X        (let ((calc-embedded-open-formula calc-embedded-open-word)
  1321. X          (calc-embedded-close-formula calc-embedded-close-word))
  1322. X          (calc-embedded-find-bounds 'plain))
  1323. X      (or top
  1324. X          (calc-embedded-find-bounds 'plain)))
  1325. X    (aset info 2 (copy-marker (min top bot)))
  1326. X    (aset info 3 (copy-marker (max top bot)))
  1327. X    (aset info 4 (copy-marker (or outer-top (aref info 2))))
  1328. X    (aset info 5 (copy-marker (or outer-bot (aref info 3))))))
  1329. X    (goto-char (aref info 2))
  1330. X    (if new-info
  1331. X    (progn
  1332. X      (or (bolp) (aset info 7 t))
  1333. X      (goto-char (aref info 3))
  1334. X      (or (bolp) (eolp) (aset info 7 t))))
  1335. X    (if fresh
  1336. X    (let ((modes (calc-embedded-find-modes)))
  1337. X      (aset info 12 (car modes))
  1338. X      (aset info 13 (nth 1 modes))
  1339. X      (aset info 14 (nth 2 modes))))
  1340. X    (aset info 15 calc-embedded-globals)
  1341. X    (setq str (buffer-substring (aref info 2) (aref info 3)))
  1342. X    (if (or force
  1343. X        (not (equal str (aref info 6))))
  1344. X    (if (and fixed (aref info 6))
  1345. X        (progn
  1346. X          (aset info 4 nil)
  1347. X          (calc-embedded-make-info point cbuf nil)
  1348. X          (setq new-info nil))
  1349. X      (let* ((open-plain calc-embedded-open-plain)
  1350. X         (close-plain calc-embedded-close-plain)
  1351. X         (pref-len (length open-plain))
  1352. X         (vars-used nil)
  1353. X         suff-pos val temp)
  1354. X        (save-excursion
  1355. X          (set-buffer (aref info 1))
  1356. X          (calc-embedded-set-modes (aref info 15)
  1357. X                       (aref info 12) (aref info 14))
  1358. X          (if (and (> (length str) pref-len)
  1359. X               (equal (substring str 0 pref-len) open-plain)
  1360. X               (setq suff-pos (string-match (regexp-quote close-plain)
  1361. X                            str pref-len)))
  1362. X          (setq val (math-read-plain-expr
  1363. X                 (substring str pref-len suff-pos)))
  1364. X        (if (string-match "[^ \t\n]" str)
  1365. X            (setq pref-len 0
  1366. X              val (math-read-big-expr str))
  1367. X          (setq val nil))))
  1368. X        (if (eq (car-safe val) 'error)
  1369. X        (setq val (list 'error
  1370. X                (+ (aref info 2) pref-len (nth 1 val))
  1371. X                (nth 2 val))))
  1372. X        (aset info 6 str)
  1373. X        (aset info 8 val)
  1374. X        (setq temp val)
  1375. X        (if (eq (car-safe temp) 'calcFunc-evalto)
  1376. X        (setq temp (nth 1 temp))
  1377. X          (if (eq (car-safe temp) 'error)
  1378. X          (if new-info
  1379. X              (setq new-info nil)
  1380. X            (setcdr found (delq info (cdr found)))
  1381. X            (calc-embedded-active-state 'less))))
  1382. X        (aset info 9 (and (eq (car-safe temp) 'calcFunc-assign)
  1383. X                  (nth 1 temp)))
  1384. X        (if (memq (car-safe val) '(calcFunc-evalto calcFunc-assign))
  1385. X        (calc-embedded-find-vars val))
  1386. X        (aset info 10 vars-used)
  1387. X        (aset info 11 nil))))
  1388. X    (if new-info
  1389. X    (progn
  1390. X      (setcdr found (cons info (cdr found)))
  1391. X      (calc-embedded-active-state 'more)))
  1392. X    info)
  1393. )
  1394. X
  1395. (defun calc-embedded-find-vars (x)
  1396. X  (cond ((Math-primp x)
  1397. X     (and (eq (car-safe x) 'var)
  1398. X          (not (assoc x vars-used))
  1399. X          (setq vars-used (cons (list x) vars-used))))
  1400. X    ((eq (car x) 'calcFunc-evalto)
  1401. X     (calc-embedded-find-vars (nth 1 x)))
  1402. X    ((eq (car x) 'calcFunc-assign)
  1403. X     (calc-embedded-find-vars (nth 2 x)))
  1404. X    (t
  1405. X     (and (eq (car x) 'calcFunc-subscr)
  1406. X          (eq (car-safe (nth 1 x)) 'var)
  1407. X          (Math-primp (nth 2 x))
  1408. X          (not (assoc x vars-used))
  1409. X          (setq vars-used (cons (list x) vars-used)))
  1410. X     (while (setq x (cdr x))
  1411. X       (calc-embedded-find-vars (car x)))))
  1412. )
  1413. X
  1414. X
  1415. (defun calc-embedded-evaluate-expr (x)
  1416. X  (let ((vars-used (aref calc-embedded-info 10)))
  1417. X    (or vars-used (calc-embedded-find-vars x))
  1418. X    (if vars-used
  1419. X    (let ((active (assq (aref calc-embedded-info 0) calc-embedded-active))
  1420. X          (args nil))
  1421. X      (save-excursion
  1422. X        (calc-embedded-original-buffer t)
  1423. X        (or active
  1424. X        (progn
  1425. X          (calc-embedded-activate)
  1426. X          (setq active (assq (aref calc-embedded-info 0)
  1427. X                     calc-embedded-active))))
  1428. X        (while vars-used
  1429. X          (calc-embedded-eval-get-var (car (car vars-used)) active)
  1430. X          (setq vars-used (cdr vars-used))))
  1431. X      (calc-embedded-subst x))
  1432. X      (calc-normalize (math-evaluate-expr-rec x))))
  1433. )
  1434. X
  1435. (defun calc-embedded-subst (x)
  1436. X  (if (and (eq (car-safe x) 'calcFunc-evalto) (cdr x))
  1437. X      (let ((rhs (calc-embedded-subst (nth 1 x))))
  1438. X    (list 'calcFunc-evalto
  1439. X          (nth 1 x)
  1440. X          (if (eq (car-safe rhs) 'calcFunc-assign) (nth 2 rhs) rhs)))
  1441. X    (if (and (eq (car-safe x) 'calcFunc-assign) (= (length x) 3))
  1442. X    (list 'calcFunc-assign
  1443. X          (nth 1 x)
  1444. X          (calc-embedded-subst (nth 2 x)))
  1445. X      (calc-normalize (math-evaluate-expr-rec (math-multi-subst-rec x)))))
  1446. )
  1447. X
  1448. (defun calc-embedded-eval-get-var (var base)
  1449. X  (let ((entry base)
  1450. X    (point (aref calc-embedded-info 2))
  1451. X    (last nil)
  1452. X    val)
  1453. X    (while (and (setq entry (cdr entry))
  1454. X        (or (not (equal var (aref (car entry) 9)))
  1455. X            (and (> point (aref (car entry) 3))
  1456. X             (setq last entry)))))
  1457. X    (if last
  1458. X    (setq entry last))
  1459. X    (if entry
  1460. X    (progn
  1461. X      (setq entry (car entry))
  1462. X      (if (equal (buffer-substring (aref entry 2) (aref entry 3))
  1463. X             (aref entry 6))
  1464. X          (progn
  1465. X        (or (aref entry 11)
  1466. X            (save-excursion
  1467. X              (calc-embedded-update entry 14 t nil)))
  1468. X        (setq val (aref entry 11))
  1469. X        (if (eq (car-safe val) 'calcFunc-evalto)
  1470. X            (setq val (nth 2 val)))
  1471. X        (if (eq (car-safe val) 'calcFunc-assign)
  1472. X            (setq val (nth 2 val)))
  1473. X        (setq args (cons (cons var val) args)))
  1474. X        (calc-embedded-activate)
  1475. X        (calc-embedded-eval-get-var var base)))))
  1476. )
  1477. X
  1478. X
  1479. (defun calc-embedded-update (info which need-eval need-display
  1480. X                  &optional str entry old-val)
  1481. X  (let* ((prev-modes nil)
  1482. X     (open-plain calc-embedded-open-plain)
  1483. X     (close-plain calc-embedded-close-plain)
  1484. X     (vars-used nil)
  1485. X     (evalled nil)
  1486. X     (val (aref info 8))
  1487. X     (old-eval (aref info 11)))
  1488. X    (or old-val (setq old-val val))
  1489. X    (if (eq (car-safe val) 'calcFunc-evalto)
  1490. X    (setq need-display t))
  1491. X    (unwind-protect
  1492. X    (progn
  1493. X      (set-buffer (aref info 1))
  1494. X      (and which
  1495. X           (calc-embedded-set-modes (aref info 15) (aref info 12)
  1496. X                    (aref info which)
  1497. X                    (if need-display 'full t)))
  1498. X      (if (memq (car-safe val) '(calcFunc-evalto calcFunc-assign))
  1499. X          (calc-embedded-find-vars val))
  1500. X      (if need-eval
  1501. X          (let ((calc-embedded-info info))
  1502. X        (setq val (math-evaluate-expr val)
  1503. X              evalled val)))
  1504. X      (if (or (eq need-eval 'eval) (eq (car-safe val) 'calcFunc-evalto))
  1505. X          (aset info 8 val))
  1506. X      (aset info 9 nil)
  1507. X      (aset info 10 vars-used)
  1508. X      (aset info 11 nil)
  1509. X      (if (or need-display (eq (car-safe val) 'calcFunc-evalto))
  1510. X          (let ((extra (if (eq calc-language 'big) 1 0)))
  1511. X        (or entry (setq entry (list val 1 nil)))
  1512. X        (or str (progn
  1513. X              (setq str (let ((calc-line-numbering nil))
  1514. X                      (math-format-stack-value entry)))
  1515. X              (if (eq calc-language 'big)
  1516. X                  (setq str (substring str 0 -1)))))
  1517. X        (and calc-show-plain
  1518. X             (setq str (concat open-plain
  1519. X                       (math-showing-full-precision
  1520. X                    (math-format-flat-expr val 0))
  1521. X                       close-plain
  1522. X                       str)))
  1523. X        (save-excursion
  1524. X          (calc-embedded-original-buffer t info)
  1525. X          (or (equal str (aref info 6))
  1526. X              (let ((delta (- (aref info 5) (aref info 3)))
  1527. X                (buffer-read-only nil))
  1528. X            (goto-char (aref info 2))
  1529. X            (delete-region (point) (aref info 3))
  1530. X            (and (> (nth 1 entry) (1+ extra))
  1531. X                 (aref info 7)
  1532. X                 (progn
  1533. X                   (aset info 7 nil)
  1534. X                   (delete-horizontal-space)
  1535. X                   (insert "\n\n")
  1536. X                   (delete-horizontal-space)
  1537. X                   (backward-char 1)))
  1538. X            (insert str)
  1539. X            (set-marker (aref info 3) (point))
  1540. X            (set-marker (aref info 5) (+ (point) delta))
  1541. X            (aset info 6 str))))))
  1542. X      (if (eq (car-safe val) 'calcFunc-evalto)
  1543. X          (progn
  1544. X        (setq evalled (nth 2 val)
  1545. X              val (nth 1 val))))
  1546. X      (if (eq (car-safe val) 'calcFunc-assign)
  1547. X          (progn
  1548. X        (aset info 9 (nth 1 val))
  1549. X        (aset info 11 (or evalled
  1550. X                  (let ((calc-embedded-info info))
  1551. X                    (math-evaluate-expr (nth 2 val)))))
  1552. X        (or (equal old-eval (aref info 11))
  1553. X            (calc-embedded-var-change (nth 1 val) (aref info 0))))
  1554. X        (if (eq (car-safe old-val) 'calcFunc-evalto)
  1555. X        (setq old-val (nth 1 old-val)))
  1556. X        (if (eq (car-safe old-val) 'calcFunc-assign)
  1557. X        (calc-embedded-var-change (nth 1 old-val) (aref info 0)))))
  1558. X      (set-buffer (aref info 1))
  1559. X      (while prev-modes
  1560. X    (cond ((eq (car (car prev-modes)) 'the-language)
  1561. X           (if need-display
  1562. X           (calc-embedded-set-language (cdr (car prev-modes)))))
  1563. X          ((eq (car (car prev-modes)) 'the-display-just)
  1564. X           (if need-display
  1565. X           (calc-embedded-set-justify (cdr (car prev-modes)))))
  1566. X          (t
  1567. X           (set (car (car prev-modes)) (cdr (car prev-modes)))))
  1568. X    (setq prev-modes (cdr prev-modes)))))
  1569. )
  1570. X
  1571. X
  1572. X
  1573. X
  1574. ;;; These are hooks called by the main part of Calc.
  1575. X
  1576. (defun calc-embedded-select-buffer ()
  1577. X  (if (eq (current-buffer) (aref calc-embedded-info 0))
  1578. X      (let ((info calc-embedded-info)
  1579. X        horiz vert)
  1580. X    (if (and (or (< (point) (aref info 4))
  1581. X             (> (point) (aref info 5)))
  1582. X         (not calc-embedded-no-reselect))
  1583. X        (let ((calc-embedded-quiet t))
  1584. X          (message "(Switching Calc Embedded mode to new formula.)")
  1585. X          (calc-embedded nil)
  1586. X          (calc-embedded nil)))
  1587. X    (setq horiz (max (min (current-column) (- (point) (aref info 2))) 0)
  1588. X          vert (if (<= (aref info 2) (point))
  1589. X               (- (count-lines (aref info 2) (point))
  1590. X              (if (bolp) 0 1))
  1591. X             0))
  1592. X    (set-buffer (aref info 1))
  1593. X    (if calc-show-plain
  1594. X        (if (= vert 0)
  1595. X        (setq horiz 0)
  1596. X          (setq vert (1- vert))))
  1597. X    (calc-cursor-stack-index 1)
  1598. X    (if calc-line-numbering
  1599. X        (setq horiz (+ horiz 4)))
  1600. X    (if (> vert 0)
  1601. X        (forward-line vert))
  1602. X    (forward-char (min horiz
  1603. X               (- (point-max) (point)))))
  1604. X    (calc-select-buffer))
  1605. )
  1606. (setq calc-embedded-no-reselect nil)
  1607. X
  1608. (defun calc-embedded-finish-command ()
  1609. X  (let ((buf (current-buffer))
  1610. X    horiz vert)
  1611. X    (save-excursion
  1612. X      (set-buffer (aref calc-embedded-info 1))
  1613. X      (if (> (calc-stack-size) 0)
  1614. X      (let ((pt (point))
  1615. X        (col (current-column))
  1616. X        (bol (bolp)))
  1617. X        (calc-cursor-stack-index 0)
  1618. X        (if (< pt (point))
  1619. X        (progn
  1620. X          (calc-cursor-stack-index 1)
  1621. X          (if (>= pt (point))
  1622. X              (progn
  1623. X            (setq horiz (- col (if calc-line-numbering 4 0))
  1624. X                  vert (- (count-lines (point) pt)
  1625. X                      (if bol 0 1)))
  1626. X            (if calc-show-plain
  1627. X                (setq vert (max 1 (1+ vert))))))))
  1628. X        (goto-char pt))))
  1629. X    (if horiz
  1630. X    (progn
  1631. X      (set-buffer (aref calc-embedded-info 0))
  1632. X      (goto-char (aref calc-embedded-info 2))
  1633. X      (if (> vert 0)
  1634. X          (forward-line vert))
  1635. X      (forward-char (max horiz 0))
  1636. X      (set-buffer buf))))
  1637. )
  1638. X
  1639. (defun calc-embedded-stack-change ()
  1640. X  (or calc-executing-macro
  1641. X      (save-excursion
  1642. X    (set-buffer (aref calc-embedded-info 1))
  1643. X    (let* ((info calc-embedded-info)
  1644. X           (extra-line (if (eq calc-language 'big) 1 0))
  1645. X           (the-point (point))
  1646. X           (empty (= (calc-stack-size) 0))
  1647. X           (entry (if empty
  1648. X              (list '(var empty var-empty) 1 nil)
  1649. X            (calc-top 1 'entry)))
  1650. X           (old-val (aref info 8))
  1651. X           top bot str)
  1652. X      (if empty
  1653. X          (setq str "empty")
  1654. X        (save-excursion
  1655. X          (calc-cursor-stack-index 1)
  1656. X          (setq top (point))
  1657. X          (calc-cursor-stack-index 0)
  1658. X          (setq bot (- (point) extra-line))
  1659. X          (setq str (buffer-substring top (- bot 1))))
  1660. X        (if calc-line-numbering
  1661. X        (let ((pos 0))
  1662. X          (setq str (substring str 4))
  1663. X          (while (setq pos (string-match "\n...." str pos))
  1664. X            (setq str (concat (substring str 0 (1+ pos))
  1665. X                      (substring str (+ pos 5)))
  1666. X              pos (1+ pos))))))
  1667. X      (calc-embedded-original-buffer t)
  1668. X      (aset info 8 (car entry))
  1669. X      (calc-embedded-update info 13 nil t str entry old-val))))
  1670. )
  1671. X
  1672. (defun calc-embedded-mode-line-change ()
  1673. X  (let ((str mode-line-buffer-identification))
  1674. X    (save-excursion
  1675. X      (calc-embedded-original-buffer t)
  1676. X      (setq mode-line-buffer-identification str)
  1677. X      (set-buffer-modified-p (buffer-modified-p))))
  1678. )
  1679. X
  1680. (defun calc-embedded-modes-change (vars)
  1681. X  (if (eq (car vars) 'calc-language) (setq vars '(the-language)))
  1682. X  (if (eq (car vars) 'calc-display-just) (setq vars '(the-display-just)))
  1683. X  (while (and vars
  1684. X          (not (rassq (car vars) calc-embedded-mode-vars)))
  1685. X    (setq vars (cdr vars)))
  1686. X  (if (and vars calc-mode-save-mode (not (eq calc-mode-save-mode 'save)))
  1687. X      (save-excursion
  1688. X    (let* ((save-mode calc-mode-save-mode)
  1689. X           (header (if (eq save-mode 'local)
  1690. X               "calc-mode:"
  1691. X             (format "calc-%s-mode:" save-mode)))
  1692. X           (the-language (calc-embedded-language))
  1693. X           (the-display-just (calc-embedded-justify))
  1694. X           (values (mapcar 'symbol-value vars))
  1695. X           (num (cond ((eq save-mode 'local) 12)
  1696. X              ((eq save-mode 'edit) 13)
  1697. X              ((eq save-mode 'perm) 14)
  1698. X              (t nil)))
  1699. X           base limit mname mlist)
  1700. X      (calc-embedded-original-buffer t)
  1701. X      (save-excursion
  1702. X        (if (eq save-mode 'global)
  1703. X        (setq base (point-max)
  1704. X              limit (point-min)
  1705. X              mlist calc-embedded-globals)
  1706. X          (goto-char (aref calc-embedded-info 4))
  1707. X          (beginning-of-line)
  1708. X          (setq base (point)
  1709. X            limit (max (- (point) 1000) (point-min))
  1710. X            mlist (and num (aref calc-embedded-info num)))
  1711. X          (and (re-search-backward
  1712. X            (format "\\(%s\\)[^\001]*\\(%s\\)\\|\\[calc-defaults]"
  1713. X                calc-embedded-open-formula
  1714. X                calc-embedded-close-formula) limit t)
  1715. X           (setq limit (point))))
  1716. X        (while vars
  1717. X          (goto-char base)
  1718. X          (if (setq mname (car (rassq (car vars)
  1719. X                      calc-embedded-mode-vars)))
  1720. X          (let ((buffer-read-only nil)
  1721. X            (found (assq (car vars) mlist)))
  1722. X            (if found
  1723. X            (setcdr found (car values))
  1724. X              (setq mlist (cons (cons (car vars) (car values)) mlist))
  1725. X              (if num
  1726. X              (aset calc-embedded-info num mlist)
  1727. X            (if (eq save-mode 'global)
  1728. X                (setq calc-embedded-globals mlist))))
  1729. X            (if (re-search-backward
  1730. X             (format "\\[%s *%s: *\\(\"\\([^\"\n\\]\\|\\\\.\\)*\"\\|[- ()a-zA-Z0-9]+\\)]"
  1731. X                 header mname)
  1732. X             limit t)
  1733. X            (progn
  1734. X              (goto-char (match-beginning 1))
  1735. X              (delete-region (point) (match-end 1))
  1736. X              (insert (prin1-to-string (car values))))
  1737. SHAR_EOF
  1738. true || echo 'restore of calc-embed.el failed'
  1739. fi
  1740. echo 'End of  part 12'
  1741. echo 'File calc-embed.el is continued in part 13'
  1742. echo 13 > _shar_seq_.tmp
  1743. exit 0
  1744. exit 0 # Just in case...
  1745. -- 
  1746. Kent Landfield                   INTERNET: kent@sparky.IMD.Sterling.COM
  1747. Sterling Software, IMD           UUCP:     uunet!sparky!kent
  1748. Phone:    (402) 291-8300         FAX:      (402) 291-4362
  1749. Please send comp.sources.misc-related mail to kent@uunet.uu.net.
  1750.