root/trunk/lisp/calc/calc-embed.el

Revision 4220, 49.3 kB (checked in by miyoshi, 9 months ago)

Sync up with Emacs22.2.

Line 
1 ;;; calc-embed.el --- embed Calc in a buffer
2
3 ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004,
4 ;;   2005, 2006, 2007, 2008 Free Software Foundation, Inc.
5
6 ;; Author: David Gillespie <daveg@synaptics.com>
7 ;; Maintainer: Jay Belanger <jay.p.belanger@gmail.com>
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 3, or (at your option)
14 ;; any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 ;; Boston, MA 02110-1301, USA.
25
26 ;;; Commentary:
27
28 ;;; Code:
29
30 ;; This file is autoloaded from calc-ext.el.
31
32 (require 'calc-ext)
33 (require 'calc-macs)
34
35 (defun calc-show-plain (n)
36   (interactive "P")
37   (calc-wrapper
38    (calc-set-command-flag 'renum-stack)
39    (message (if (calc-change-mode 'calc-show-plain n nil t)
40                 "Including \"plain\" formulas in Calc Embedded mode"
41               "Omitting \"plain\" formulas in Calc Embedded mode"))))
42
43
44 (defvar calc-embedded-modes nil)
45 (defvar calc-embedded-globals nil)
46 (defvar calc-embedded-active nil)
47 (defvar calc-embedded-all-active nil)
48 (make-variable-buffer-local 'calc-embedded-all-active)
49 (defvar calc-embedded-some-active nil)
50 (make-variable-buffer-local 'calc-embedded-some-active)
51
52 ;; The following variables are customizable and defined in calc.el.
53 (defvar calc-embedded-announce-formula)
54 (defvar calc-embedded-open-formula)
55 (defvar calc-embedded-close-formula)
56 (defvar calc-embedded-open-word)
57 (defvar calc-embedded-close-word)
58 (defvar calc-embedded-open-plain)
59 (defvar calc-embedded-close-plain)
60 (defvar calc-embedded-open-new-formula)
61 (defvar calc-embedded-close-new-formula)
62 (defvar calc-embedded-open-mode)
63 (defvar calc-embedded-close-mode)
64
65 (defconst calc-embedded-mode-vars '(("precision" . calc-internal-prec)
66                                     ("word-size" . calc-word-size)
67                                     ("angles" . calc-angle-mode)
68                                     ("symbolic" . calc-symbolic-mode)
69                                     ("matrix" . calc-matrix-mode)
70                                     ("fractions" . calc-prefer-frac)
71                                     ("complex" . calc-complex-mode)
72                                     ("simplify" . calc-simplify-mode)
73                                     ("language" . the-language)
74                                     ("plain" . calc-show-plain)
75                                     ("break" . calc-line-breaking)
76                                     ("justify" . the-display-just)
77                                     ("left-label" . calc-left-label)
78                                     ("right-label" . calc-right-label)
79                                     ("radix" . calc-number-radix)
80                                     ("leading-zeros" . calc-leading-zeros)
81                                     ("grouping" . calc-group-digits)
82                                     ("group-char" . calc-group-char)
83                                     ("point-char" . calc-point-char)
84                                     ("frac-format" . calc-frac-format)
85                                     ("float-format" . calc-float-format)
86                                     ("complex-format" . calc-complex-format)
87                                     ("hms-format" . calc-hms-format)
88                                     ("date-format" . calc-date-format)
89                                     ("matrix-justify" . calc-matrix-just)
90                                     ("full-vectors" . calc-full-vectors)
91                                     ("break-vectors" . calc-break-vectors)
92                                     ("vector-commas" . calc-vector-commas)
93                                     ("vector-brackets" . calc-vector-brackets)
94                                     ("matrix-brackets" . calc-matrix-brackets)
95                                     ("strings" . calc-display-strings)
96 ))
97
98
99 ;;; Format of calc-embedded-info vector:
100 ;;;    0   Editing buffer.
101 ;;;    1   Calculator buffer.
102 ;;;    2   Top of current formula (marker).
103 ;;;    3   Bottom of current formula (marker).
104 ;;;    4   Top of current formula's delimiters (marker).
105 ;;;    5   Bottom of current formula's delimiters (marker).
106 ;;;    6   String representation of current formula.
107 ;;;    7   Non-nil if formula is embedded within a single line.
108 ;;;    8   Internal representation of current formula.
109 ;;;    9   Variable assigned by this formula, or nil.
110 ;;;   10   List of variables upon which this formula depends.
111 ;;;   11   Evaluated value of the formula, or nil.
112 ;;;   12   Mode settings for current formula.
113 ;;;   13   Local mode settings for current formula.
114 ;;;   14   Permanent mode settings for current formula.
115 ;;;   15   Global mode settings for editing buffer.
116
117
118 ;;; calc-embedded-active is an a-list keyed on buffers; each cdr is a
119 ;;; sorted list of calc-embedded-infos in that buffer.  We do this
120 ;;; rather than using buffer-local variables because the latter are
121 ;;; thrown away when a buffer changes major modes.
122
123 (defvar calc-embedded-original-modes nil
124   "The mode settings for Calc buffer when put in embedded mode.")
125
126 (defun calc-embedded-save-original-modes ()
127   "Save the current Calc modes when entereding embedded mode."
128   (let ((calcbuf (save-excursion
129                    (calc-create-buffer)
130                    (current-buffer)))
131         lang modes)
132     (if calcbuf
133         (with-current-buffer calcbuf
134           (setq lang
135                 (cons calc-language calc-language-option))
136           (setq modes
137                 (list (cons 'calc-display-just
138                             calc-display-just)
139                       (cons 'calc-display-origin
140                             calc-display-origin)))
141           (let ((v calc-embedded-mode-vars))
142             (while v
143               (let ((var (cdr (car v))))
144                 (unless (memq var '(the-language the-display-just))
145                   (setq modes
146                         (cons (cons var (symbol-value var))
147                               modes))))
148               (setq v (cdr v))))
149           (setq calc-embedded-original-modes (cons lang modes)))
150       (setq calc-embedded-original-modes nil))))
151
152 (defun calc-embedded-preserve-modes ()
153   "Preserve the current modes when leaving embedded mode."
154   (interactive)
155   (if calc-embedded-info
156       (progn
157         (calc-embedded-save-original-modes)
158         (message "Current modes will be preserved when leaving embedded mode."))
159     (message "Not in embedded mode.")))
160
161 (defun calc-embedded-restore-original-modes ()
162   "Restore the original Calc modes when leaving embedded mode."
163   (let ((calcbuf (get-buffer "*Calculator*"))
164         (changed nil)
165         (lang (car calc-embedded-original-modes))
166         (modes (cdr calc-embedded-original-modes)))
167     (if (and calcbuf calc-embedded-original-modes)
168         (with-current-buffer calcbuf
169           (unless (and
170                    (equal calc-language (car lang))
171                    (equal calc-language-option (cdr lang)))
172             (calc-set-language (car lang) (cdr lang))
173             (setq changed t))
174           (while modes
175             (let ((mode (car modes)))
176               (unless (equal (symbol-value (car mode)) (cdr mode))
177                 (set (car mode) (cdr mode))
178                 (setq changed t)))
179             (setq modes (cdr modes)))
180           (when changed
181             (calc-refresh)
182             (calc-set-mode-line))))
183     (setq calc-embedded-original-modes nil)))
184
185 ;; The variables calc-embed-outer-top, calc-embed-outer-bot,
186 ;; calc-embed-top and calc-embed-bot are
187 ;; local to calc-do-embedded, calc-embedded-mark-formula,
188 ;; calc-embedded-duplicate, calc-embedded-new-formula and
189 ;; calc-embedded-make-info, but are used by calc-embedded-find-bounds,
190 ;; which is called (directly or indirectly) by the above functions.
191 (defvar calc-embed-outer-top)
192 (defvar calc-embed-outer-bot)
193 (defvar calc-embed-top)
194 (defvar calc-embed-bot)
195
196 ;; The variable calc-embed-arg is local to calc-do-embedded,
197 ;; calc-embedded-update-formula, calc-embedded-edit and
198 ;; calc-do-embedded-activate, but is used by
199 ;; calc-embedded-make-info, which is called by the above
200 ;; functions.
201 (defvar calc-embed-arg)
202
203 (defvar calc-embedded-quiet nil)
204
205 (defvar calc-embedded-firsttime)
206 (defvar calc-embedded-firsttime-buf)
207 (defvar calc-embedded-firsttime-formula)
208
209 ;; The following is to take care of any minor modes which override
210 ;; a Calc command.
211 (defvar calc-override-minor-modes-map
212   (make-sparse-keymap)
213   "A list of keybindings that might be overwritten by minor modes.")
214
215 ;; Add any keys that might be overwritten here.
216 (define-key calc-override-minor-modes-map "`" 'calc-edit)
217
218 (defvar calc-override-minor-modes
219   (cons t calc-override-minor-modes-map))
220
221 (defun calc-do-embedded (calc-embed-arg end obeg oend)
222   (if calc-embedded-info
223
224       ;; Turn embedded mode off or switch to a new buffer.
225       (cond ((eq (current-buffer) (aref calc-embedded-info 1))
226              (let ((calcbuf (current-buffer))
227                    (buf (aref calc-embedded-info 0)))
228                (calc-embedded-original-buffer t)
229                (calc-embedded nil)
230                (switch-to-buffer calcbuf)))
231
232             ((eq (current-buffer) (aref calc-embedded-info 0))
233              (let* ((info calc-embedded-info)
234                     (mode calc-embedded-modes))
235                (save-excursion
236                  (set-buffer (aref info 1))
237                  (if (and (> (calc-stack-size) 0)
238                           (equal (calc-top 1 'full) (aref info 8)))
239                      (let ((calc-no-refresh-evaltos t))
240                        (if (calc-top 1 'sel)
241                            (calc-unselect 1))
242                        (calc-embedded-set-modes
243                         (aref info 15) (aref info 12) (aref info 14))
244                        (let ((calc-embedded-info nil))
245                          (calc-wrapper (calc-pop-stack))))
246                    (calc-set-mode-line)))
247                (setq calc-embedded-info nil
248                      mode-line-buffer-identification (car mode)
249                      truncate-lines (nth 2 mode)
250                      buffer-read-only nil)
251                (use-local-map (nth 1 mode))
252                (setq minor-mode-overriding-map-alist
253                      (remq calc-override-minor-modes minor-mode-overriding-map-alist))
254                (set-buffer-modified-p (buffer-modified-p))
255                (calc-embedded-restore-original-modes)
256                (or calc-embedded-quiet
257                    (message "Back to %s mode" mode-name))))
258
259             (t
260              (if (buffer-name (aref calc-embedded-info 0))
261                  (save-excursion
262                    (set-buffer (aref calc-embedded-info 0))
263                    (or (y-or-n-p (format "Cancel Calc Embedded mode in buffer %s? "
264                                          (buffer-name)))
265                        (keyboard-quit))
266                    (calc-embedded nil)))
267              (calc-embedded calc-embed-arg end obeg oend)))
268
269     ;; Turn embedded mode on.
270     (calc-plain-buffer-only)
271     (let ((modes (list mode-line-buffer-identification
272                        (current-local-map)
273                        truncate-lines))
274           (calc-embedded-firsttime (not calc-embedded-active))
275           (calc-embedded-firsttime-buf nil)
276           (calc-embedded-firsttime-formula nil)
277           calc-embed-top calc-embed-bot calc-embed-outer-top calc-embed-outer-bot
278           info chg ident)
279       (barf-if-buffer-read-only)
280       (calc-embedded-save-original-modes)
281       (or calc-embedded-globals
282           (calc-find-globals))
283       (setq info
284             (calc-embedded-make-info (point) nil t calc-embed-arg end obeg oend))
285       (if (eq (car-safe (aref info 8)) 'error)
286           (progn
287             (setq calc-embedded-original-modes nil)
288             (goto-char (nth 1 (aref info 8)))
289             (error (nth 2 (aref info 8)))))
290       (let ((mode-line-buffer-identification mode-line-buffer-identification)
291             (calc-embedded-info info)
292             (calc-embedded-no-reselect t))
293         (calc-wrapper
294          (let* ((okay nil)
295                 (calc-no-refresh-evaltos t))
296            (if (aref info 8)
297                (progn
298                  (calc-push (calc-normalize (aref info 8)))
299                  (setq chg (calc-embedded-set-modes
300                             (aref info 15) (aref info 12) (aref info 13))))
301              (setq chg (calc-embedded-set-modes
302                         (aref info 15) (aref info 12) (aref info 13)))
303              (calc-alg-entry)))
304          (setq calc-undo-list nil
305                calc-redo-list nil
306                ident mode-line-buffer-identification)))
307       (setq calc-embedded-info info
308             calc-embedded-modes modes
309             mode-line-buffer-identification ident
310             truncate-lines t
311             buffer-read-only t)
312       (set-buffer-modified-p (buffer-modified-p))
313       (use-local-map calc-mode-map)
314       (setq minor-mode-overriding-map-alist
315             (cons calc-override-minor-modes
316                   minor-mode-overriding-map-alist))
317       (setq calc-no-refresh-evaltos nil)
318       (and chg calc-any-evaltos (calc-wrapper (calc-refresh-evaltos)))
319       (let (str)
320         (save-excursion
321           (calc-select-buffer)
322           (setq str mode-line-buffer-identification))
323         (unless (equal str mode-line-buffer-identification)
324           (setq mode-line-buffer-identification str)
325           (set-buffer-modified-p (buffer-modified-p))))
326       (if calc-embedded-firsttime
327           (run-hooks 'calc-embedded-mode-hook))
328       (if calc-embedded-firsttime-buf
329           (run-hooks 'calc-embedded-new-buffer-hook))
330       (if calc-embedded-firsttime-formula
331           (run-hooks 'calc-embedded-new-formula-hook))
332       (or (eq calc-embedded-quiet t)
333           (message "Embedded Calc mode enabled; %s to return to normal"
334                    (if calc-embedded-quiet
335                        "Type `C-x * x'"
336                      "Give this command again")))))
337   (scroll-down 0))    ; fix a bug which occurs when truncate-lines is changed.
338
339
340 (defun calc-embedded-select (arg)
341   (interactive "P")
342   (calc-embedded arg)
343   (and calc-embedded-info
344        (eq (car-safe (aref calc-embedded-info 8)) 'calcFunc-evalto)
345        (calc-select-part 1))
346   (and calc-embedded-info
347        (or (eq (car-safe (aref calc-embedded-info 8)) 'calcFunc-assign)
348            (and (eq (car-safe (aref calc-embedded-info 8)) 'calcFunc-evalto)
349                 (eq (car-safe (nth 1 (aref calc-embedded-info 8)))
350                     'calcFunc-assign)))
351        (calc-select-part 2)))
352
353
354 (defun calc-embedded-update-formula (calc-embed-arg)
355   (interactive "P")
356   (if calc-embed-arg
357       (let ((entry (assq (current-buffer) calc-embedded-active)))
358         (while (setq entry (cdr entry))
359           (and (eq (car-safe (aref (car entry) 8)) 'calcFunc-evalto)
360                (or (not (consp calc-embed-arg))
361                    (and (<= (aref (car entry) 2) (region-beginning))
362                         (>= (aref (car entry) 3) (region-end))))
363                (save-excursion
364                  (calc-embedded-update (car entry) 14 t t)))))
365     (if (and calc-embedded-info
366              (eq (current-buffer) (aref calc-embedded-info 0))
367              (>= (point) (aref calc-embedded-info 4))
368              (<= (point) (aref calc-embedded-info 5)))
369         (calc-evaluate 1)
370       (let* ((opt (point))
371              (info (calc-embedded-make-info (point) nil t))
372              (pt (- opt (aref info 4))))
373         (or (eq (car-safe (aref info 8)) 'error)
374             (progn
375               (save-excursion
376                 (calc-embedded-update info 14 'eval t))
377               (goto-char (+ (aref info 4) pt))))))))
378
379
380 (defun calc-embedded-edit (calc-embed-arg)
381   (interactive "P")
382   (let ((info (calc-embedded-make-info (point) nil t calc-embed-arg))
383         str)
384     (if (eq (car-safe (aref info 8)) 'error)
385         (progn
386           (goto-char (nth 1 (aref info 8)))
387           (error (nth 2 (aref info 8)))))
388     (calc-wrapper
389      (setq str (math-showing-full-precision
390                 (math-format-nice-expr (aref info 8) (frame-width))))
391      (calc-edit-mode (list 'calc-embedded-finish-edit info))
392      (insert str "\n")))
393   (calc-show-edit-buffer))
394
395 (defvar calc-original-buffer)
396 (defvar calc-edit-top)
397 (defun calc-embedded-finish-edit (info)
398   (let ((buf (current-buffer))
399         (str (buffer-substring calc-edit-top (point-max)))
400         (start (point))
401         pos)
402     (switch-to-buffer calc-original-buffer)
403     (let ((val (save-excursion
404                  (set-buffer (aref info 1))
405                  (let ((calc-language nil)
406                        (math-expr-opers math-standard-opers))
407                    (math-read-expr str)))))
408       (if (eq (car-safe val) 'error)
409           (progn
410             (switch-to-buffer buf)
411             (goto-char (+ start (nth 1 val)))
412             (error (nth 2 val))))
413       (calc-embedded-original-buffer t info)
414       (aset info 8 val)
415       (calc-embedded-update info 14 t t))))
416
417 (defun calc-do-embedded-activate (calc-embed-arg cbuf)
418   (calc-plain-buffer-only)
419   (if calc-embed-arg
420       (calc-embedded-forget))
421   (calc-find-globals)
422   (if (< (prefix-numeric-value calc-embed-arg) 0)
423       (message "Deactivating %s for Calc Embedded mode" (buffer-name))
424     (message "Activating %s for Calc Embedded mode..." (buffer-name))
425     (save-excursion
426       (let* ((active (assq (current-buffer) calc-embedded-active))
427              (info active)
428              (pat " := \\| \\\\gets \\| => \\| \\\\evalto "))
429         (if calc-embedded-announce-formula
430             (setq pat (format "%s\\|\\(%s\\)"
431                               pat calc-embedded-announce-formula)))
432         (while (setq info (cdr info))
433           (or (equal (buffer-substring (aref (car info) 2) (aref (car info) 3))
434                      (aref (car info) 6))
435               (setcdr active (delq (car info) (cdr active)))))
436         (goto-char (point-min))
437         (while (re-search-forward pat nil t)
438 ;;;       (if (looking-at calc-embedded-open-formula)
439 ;;;           (goto-char (match-end 1)))
440           (setq info (calc-embedded-make-info (point) cbuf nil))
441           (or (eq (car-safe (aref info 8)) 'error)
442               (goto-char (aref info 5))))))
443     (message "Activating %s for Calc Embedded mode...done" (buffer-name)))
444   (calc-embedded-active-state t))
445
446 (defun calc-plain-buffer-only ()
447   (if (memq major-mode '(calc-mode calc-trail-mode calc-edit-mode))
448       (error "This command should be used in a normal editing buffer")))
449
450 (defun calc-embedded-active-state (state)
451   (or (assq 'calc-embedded-all-active minor-mode-alist)
452       (setq minor-mode-alist
453             (cons '(calc-embedded-all-active " Active")
454                   (cons '(calc-embedded-some-active " ~Active")
455                         minor-mode-alist))))
456   (let ((active (assq (current-buffer) calc-embedded-active)))
457     (or (cdr active)
458         (setq state nil)))
459   (and (eq state 'more) calc-embedded-all-active (setq state t))
460   (setq calc-embedded-all-active (eq state t)
461         calc-embedded-some-active (not (memq state '(nil t))))
462   (set-buffer-modified-p (buffer-modified-p)))
463
464
465 (defun calc-embedded-original-buffer (switch &optional info)
466   (or info (setq info calc-embedded-info))
467   (or (buffer-name (aref info 0))
468       (progn
469         (error "Calc embedded mode: Original buffer has been killed")))
470   (if switch
471       (set-buffer (aref info 0))))
472
473 (defun calc-embedded-word ()
474   (interactive)
475   (calc-embedded '(t)))
476
477 (defun calc-embedded-mark-formula (&optional body-only)
478   "Put point at the beginning of this Calc formula, mark at the end.
479 This normally marks the whole formula, including surrounding delimiters.
480 With any prefix argument, marks only the formula itself."
481   (interactive "P")
482   (and (eq major-mode 'calc-mode)
483        (error "This command should be used in a normal editing buffer"))
484   (let (calc-embed-top calc-embed-bot calc-embed-outer-top calc-embed-outer-bot)
485     (save-excursion
486       (calc-embedded-find-bounds body-only))
487     (push-mark (if body-only calc-embed-bot calc-embed-outer-bot) t)
488     (goto-char (if body-only calc-embed-top calc-embed-outer-top))))
489
490 (defun calc-embedded-find-bounds (&optional plain)
491   ;; (while (and (bolp) (eq (following-char) ?\n))
492   ;;  (forward-char 1))
493   (and (eolp) (bolp) (not (eq (char-after (- (point) 2)) ?\n))
494        (forward-char -1))
495   (let ((home (point)))
496     (or (and (looking-at calc-embedded-open-formula)
497              (not (looking-at calc-embedded-close-formula)))
498         (re-search-backward calc-embedded-open-formula nil t)
499         (error "Can't find start of formula"))
500     (and (eq (preceding-char) ?\$)  ; backward search for \$\$? won't back
501          (eq (following-char) ?\$)  ; up over a second $, so do it by hand.
502          (forward-char -1))
503     (setq calc-embed-outer-top (point))
504     (goto-char (match-end 0))
505     (if (looking-at "[ \t]*$")
506         (end-of-line))
507     (if (eq (following-char) ?\n)
508         (forward-char 1))
509     (or (bolp)
510         (while (eq (following-char) ?\ )
511           (forward-char 1)))
512     (or (eq plain 'plain)
513         (if (looking-at (regexp-quote calc-embedded-open-plain))
514             (progn
515               (goto-char (match-end 0))
516               (search-forward calc-embedded-close-plain))))
517     (setq calc-embed-top (point))
518     (or (re-search-forward calc-embedded-close-formula nil t)
519         (error "Can't find end of formula"))
520     (if (< (point) home)
521         (error "Not inside a formula"))
522     (and (eq (following-char) ?\n) (not (bolp))
523          (forward-char 1))
524     (setq calc-embed-outer-bot (point))
525     (goto-char (match-beginning 0))
526     (if (eq (preceding-char) ?\n)
527         (backward-char 1))
528     (or (eolp)
529         (while (eq (preceding-char) ?\ )
530           (backward-char 1)))
531     (setq calc-embed-bot (point))))
532
533 (defun calc-embedded-kill-formula ()
534   "Kill the formula surrounding point.
535 If Calc Embedded mode was active, this deactivates it.
536 The formula (including its surrounding delimiters) is saved in the kill ring.
537 The command \\[yank] can retrieve it from there."
538   (interactive)
539   (and calc-embedded-info
540        (calc-embedded nil))
541   (calc-embedded-mark-formula)
542   (kill-region (point) (mark))
543   (pop-mark))
544
545 (defun calc-embedded-copy-formula-as-kill ()
546   "Save the formula surrounding point as if killed, but don't kill it."
547   (interactive)
548   (save-excursion
549     (calc-embedded-mark-formula)
550     (copy-region-as-kill (point) (mark))
551     (pop-mark)))
552
553 (defun calc-embedded-duplicate ()
554   (interactive)
555   (let ((already calc-embedded-info)
556         calc-embed-top calc-embed-bot calc-embed-outer-top calc-embed-outer-bot new-top)
557     (if calc-embedded-info
558         (progn
559           (setq calc-embed-top (+ (aref calc-embedded-info 2))
560                 calc-embed-bot (+ (aref calc-embedded-info 3))
561                 calc-embed-outer-top (+ (aref calc-embedded-info 4))
562                 calc-embed-outer-bot (+ (aref calc-embedded-info 5)))
563           (calc-embedded nil))
564       (calc-embedded-find-bounds))
565     (goto-char calc-embed-outer-bot)
566     (insert "\n")
567     (setq new-top (point))
568     (insert-buffer-substring (current-buffer)
569                              calc-embed-outer-top calc-embed-outer-bot)
570     (goto-char (+ new-top (- calc-embed-top calc-embed-outer-top)))
571     (let ((calc-embedded-quiet (if already t 'x)))
572       (calc-embedded (+ new-top (- calc-embed-top calc-embed-outer-top))
573                      (+ new-top (- calc-embed-bot calc-embed-outer-top))
574                      new-top
575                      (+ new-top (- calc-embed-outer-bot calc-embed-outer-top))))))
576
577 (defun calc-embedded-next (arg)
578   (interactive "P")
579   (setq arg (prefix-numeric-value arg))
580   (let* ((active (cdr (assq (current-buffer) calc-embedded-active)))
581          (p active)
582          (num (length active)))
583     (or active
584         (error "No active formulas in buffer"))
585     (cond ((= arg 0))
586           ((= arg -1)
587            (if (<= (point) (aref (car active) 3))
588                (goto-char (aref (nth (1- num) active) 2))
589              (while (and (cdr p)
590                          (> (point) (aref (nth 1 p) 3)))
591                (setq p (cdr p)))
592              (goto-char (aref (car p) 2))))
593           ((< arg -1)
594            (calc-embedded-next -1)
595            (calc-embedded-next (+ (* num 1000) arg 1)))
596           (t
597            (setq arg (1+ (% (1- arg) num)))
598            (while (and p (>= (point) (aref (car p) 2)))
599              (setq p (cdr p)))
600            (while (> (setq arg (1- arg)) 0)
601              (setq p (if p (cdr p) (cdr active))))
602            (goto-char (aref (car (or p active)) 2))))))
603
604 (defun calc-embedded-previous (arg)
605   (interactive "p")
606   (calc-embedded-next (- (prefix-numeric-value arg))))
607
608 (defun calc-embedded-new-formula ()
609   (interactive)
610   (and (eq major-mode 'calc-mode)
611        (error "This command should be used in a normal editing buffer"))
612   (if calc-embedded-info
613       (calc-embedded nil))
614   (let (calc-embed-top calc-embed-bot calc-embed-outer-top calc-embed-outer-bot)
615     (if (and (eq (preceding-char) ?\n)
616              (string-match "\\`\n" calc-embedded-open-new-formula))
617         (progn
618           (setq calc-embed-outer-top (1- (point)))
619           (forward-char -1)
620           (insert (substring calc-embedded-open-new-formula 1)))
621       (setq calc-embed-outer-top (point))
622       (insert calc-embedded-open-new-formula))
623     (setq calc-embed-top (point))
624     (insert " ")
625     (setq calc-embed-bot (point))
626     (insert calc-embedded-close-new-formula)
627     (if (and (eq (following-char) ?\n)
628              (string-match "\n\\'" calc-embedded-close-new-formula))
629         (delete-char 1))
630     (setq calc-embed-outer-bot (point))
631     (goto-char calc-embed-top)
632     (let ((calc-embedded-quiet 'x))
633       (calc-embedded calc-embed-top calc-embed-bot calc-embed-outer-top calc-embed-outer-bot))))
634
635 (defun calc-embedded-forget ()
636   (interactive)
637   (setq calc-embedded-active (delq (assq (current-buffer) calc-embedded-active)
638                                    calc-embedded-active))
639   (calc-embedded-active-state nil))
640
641 ;; The variables calc-embed-prev-modes is local to calc-embedded-update,
642 ;; but is used by calc-embedded-set-modes.
643 (defvar calc-embed-prev-modes)
644
645 (defun calc-embedded-set-modes (gmodes modes local-modes &optional temp)
646   (let ((the-language (calc-embedded-language))
647         (the-display-just (calc-embedded-justify))
648         (v gmodes)
649         (changed nil)
650         found value)
651     (while v
652       (or (symbolp (car v))
653           (and (setq found (assq (car (car v)) modes))
654                (not (eq (cdr found) 'default)))
655           (and (setq found (assq (car (car v)) local-modes))
656                (not (eq (cdr found) 'default)))
657           (progn
658             (if (eq (setq value (cdr (car v))) 'default)
659                 (setq value (list (nth 1 (assq (car (car v)) calc-mode-var-list)))))
660             (equal (symbol-value (car (car v))) value))
661           (progn
662             (setq changed t)
663             (if temp (setq calc-embed-prev-modes
664                            (cons (cons (car (car v))
665                                        (symbol-value (car (car v))))
666                                  calc-embed-prev-modes)))
667             (set (car (car v)) value)))
668       (setq v (cdr v)))
669     (setq v modes)
670     (while v
671       (or (and (setq found (assq (car (car v)) local-modes))
672                (not (eq (cdr found) 'default)))
673           (eq (setq value (cdr (car v))) 'default)
674           (equal (symbol-value (car (car v))) value)
675           (progn
676             (setq changed t)
677             (if temp (setq calc-embed-prev-modes (cons (cons (car (car v))
678                                                   (symbol-value (car (car v))))
679                                             calc-embed-prev-modes)))
680             (set (car (car v)) value)))
681       (setq v (cdr v)))
682     (setq v local-modes)
683     (while v
684       (or (eq (setq value (cdr (car v))) 'default)
685           (equal (symbol-value (car (car v))) value)
686           (progn
687             (setq changed t)
688             (if temp (setq calc-embed-prev-modes (cons (cons (car (car v))
689                                                   (symbol-value (car (car v))))
690                                             calc-embed-prev-modes)))
691             (set (car (car v)) value)))
692       (setq v (cdr v)))
693     (and changed (not (eq temp t))
694          (progn
695            (calc-embedded-set-justify the-display-just)
696            (calc-embedded-set-language the-language)))
697     (and changed (not temp)
698          (progn
699            (setq calc-full-float-format (list (if (eq (car calc-float-format)
700                                                       'fix)
701                                                   'float
702                                                 (car calc-float-format))
703                                               0))
704            (calc-refresh)))
705     changed))
706
707 (defun calc-embedded-language ()
708   (if calc-language-option
709       (list calc-language calc-language-option)
710     calc-language))
711
712 (defun calc-embedded-set-language (lang)
713   (let ((option nil))
714     (if (consp lang)
715         (setq option (nth 1 lang)
716               lang (car lang)))
717     (or (and (eq lang calc-language)
718              (equal option calc-language-option))
719         (calc-set-language lang option t))))
720
721 (defun calc-embedded-justify ()
722   (if calc-display-origin
723       (list calc-display-just calc-display-origin)
724     calc-display-just))
725
726 (defun calc-embedded-set-justify (just)
727   (if (consp just)
728       (setq calc-display-origin (nth 1 just)
729             calc-display-just (car just))
730     (setq calc-display-just just
731           calc-display-origin nil)))
732
733
734 (defun calc-find-globals ()
735   (interactive)
736   (and (eq major-mode 'calc-mode)
737        (error "This command should be used in a normal editing buffer"))
738   (make-local-variable 'calc-embedded-globals)
739   (let ((case-fold-search nil)
740         (modes nil)
741         (save-pt (point))
742         found value)
743     (goto-char (point-min))
744     (while (re-search-forward "\\[calc-global-mode: *\\([-a-z]+\\): *\\(\"\\([^\"\n\\]\\|\\\\.\\)*\"\\|[- ()a-zA-Z0-9]+\\)\\]" nil t)
745       (and (setq found (assoc (buffer-substring (match-beginning 1)
746                                                 (match-end 1))
747                               calc-embedded-mode-vars))
748            (or (assq (cdr found) modes)
749                (setq modes (cons (cons (cdr found)
750                                        (car (read-from-string
751                                              (buffer-substring
752                                               (match-beginning 2)
753                                               (match-end 2)))))
754                                  modes)))))
755     (setq calc-embedded-globals (cons t modes))
756     (goto-char save-pt)))
757
758 (defun calc-embedded-find-modes ()
759   (let ((case-fold-search nil)
760         (save-pt (point))
761         (no-defaults t)
762         (modes nil)
763         (emodes nil)
764         (pmodes nil)
765         found value)
766     (while (and no-defaults (search-backward "[calc-" nil t))
767       (forward-char 6)
768       (or (and (looking-at "mode: *\\([-a-z]+\\): *\\(\"\\([^\"\n\\]\\|\\\\.\\)*\"\\|[- ()a-zA-Z0-9]+\\)]")
769                (setq found (assoc (buffer-substring (match-beginning 1)
770                                                     (match-end 1))
771                                   calc-embedded-mode-vars))
772                (or (assq (cdr found) modes)
773                    (setq modes (cons (cons (cdr found)
774                                            (car (read-from-string
775                                                  (buffer-substring
776                                                   (match-beginning 2)
777                                                   (match-end 2)))))
778                                      modes))))
779           (and (looking-at "perm-mode: *\\([-a-z]+\\): *\\(\"\\([^\"\n\\]\\|\\\\.\\)*\"\\|[- ()a-zA-Z0-9]+\\)]")
780                (setq found (assoc (buffer-substring (match-beginning 1)
781                                                     (match-end 1))
782                                   calc-embedded-mode-vars))
783                (or (assq (cdr found) pmodes)
784                    (setq pmodes (cons (cons (cdr found)
785                                             (car (read-from-string
786                                                   (buffer-substring
787                                                    (match-beginning 2)
788                                                    (match-end 2)))))
789                                       pmodes))))
790           (and (looking-at "edit-mode: *\\([-a-z]+\\): *\\(\"\\([^\"\n\\]\\|\\\\.\\)*\"\\|[- ()a-zA-Z0-9]+\\)]")
791                (setq found (assoc (buffer-substring (match-beginning 1)
792                                                     (match-end 1))
793                                   calc-embedded-mode-vars))
794                (or (assq (cdr found) emodes)
795                    (setq emodes (cons (cons (cdr found)
796                                             (car (read-from-string
797                                                   (buffer-substring
798                                                    (match-beginning 2)
799                                                    (match-end 2)))))
800                                       emodes))))
801           (and (looking-at "defaults]")
802                (setq no-defaults nil)))
803       (backward-char 6))
804     (goto-char save-pt)
805     (unless (assq 'the-language modes)
806       (let ((lang (assoc major-mode calc-language-alist)))
807         (if lang
808             (setq modes (cons (cons 'the-language (cdr lang))
809                               modes)))))
810     (list modes emodes pmodes)))
811
812 ;; The variable calc-embed-vars-used is local to calc-embedded-make-info,
813 ;; calc-embedded-evaluate-expr and calc-embedded-update, but is
814 ;; used by calc-embedded-find-vars, which is called by the above functions.
815 (defvar calc-embed-vars-us