(term-replace-by-expanded-filename, term-prompt-regexp,
[bpt/emacs.git] / lisp / calc / calc-undo.el
CommitLineData
3132f345
CW
1;;; calc-undo.el --- undo functions for Calc
2
f8fc5256 3;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2005 Free Software Foundation, Inc.
3132f345
CW
4
5;; Author: David Gillespie <daveg@synaptics.com>
2c2198cd 6;; Maintainer: Jay Belanger <belanger@truman.edu>
136211a9
EZ
7
8;; This file is part of GNU Emacs.
9
10;; GNU Emacs is distributed in the hope that it will be useful,
11;; but WITHOUT ANY WARRANTY. No author or distributor
12;; accepts responsibility to anyone for the consequences of using it
13;; or for whether it serves any particular purpose or works at all,
14;; unless he says so in writing. Refer to the GNU Emacs General Public
15;; License for full details.
16
17;; Everyone is granted permission to copy, modify and redistribute
18;; GNU Emacs, but only under the conditions described in the
19;; GNU Emacs General Public License. A copy of this license is
20;; supposed to have been given to you along with GNU Emacs so you
21;; can know your rights and responsibilities. It should be in a
22;; file named COPYING. Among other things, the copyright notice
23;; and this notice must be preserved on all copies.
24
3132f345 25;;; Commentary:
136211a9 26
3132f345 27;;; Code:
136211a9
EZ
28
29;; This file is autoloaded from calc-ext.el.
136211a9 30
2c2198cd 31(require 'calc-ext)
136211a9
EZ
32(require 'calc-macs)
33
136211a9
EZ
34;;; Undo.
35
36(defun calc-undo (n)
37 (interactive "p")
3132f345
CW
38 (when calc-executing-macro
39 (error "Use C-x e, not X, to run a keyboard macro that uses Undo"))
136211a9
EZ
40 (if (<= n 0)
41 (if (< n 0)
42 (calc-redo (- n))
43 (calc-last-args 1))
44 (calc-wrapper
3132f345
CW
45 (when (null (nthcdr (1- n) calc-undo-list))
46 (error "No further undo information available"))
136211a9
EZ
47 (setq calc-undo-list
48 (prog1
49 (nthcdr n calc-undo-list)
50 (let ((saved-stack-top calc-stack-top))
51 (let ((calc-stack-top 0))
52 (calc-handle-undos calc-undo-list n))
53 (setq calc-stack-top saved-stack-top))))
bf77c646 54 (message "Undo!"))))
136211a9
EZ
55
56(defun calc-handle-undos (cl n)
3132f345
CW
57 (when (> n 0)
58 (let ((old-redo calc-redo-list))
59 (setq calc-undo-list nil)
60 (calc-handle-undo (car cl))
61 (setq calc-redo-list (append calc-undo-list old-redo)))
62 (calc-handle-undos (cdr cl) (1- n))))
136211a9
EZ
63
64(defun calc-handle-undo (list)
3132f345 65 (when list
136211a9
EZ
66 (let ((action (car list)))
67 (cond
68 ((eq (car action) 'push)
69 (calc-pop-stack 1 (nth 1 action) t))
70 ((eq (car action) 'pop)
71 (calc-push-list (nth 2 action) (nth 1 action)))
72 ((eq (car action) 'set)
73 (calc-record-undo (list 'set (nth 1 action)
74 (symbol-value (nth 1 action))))
75 (set (nth 1 action) (nth 2 action)))
76 ((eq (car action) 'store)
77 (let ((v (intern (nth 1 action))))
78 (calc-record-undo (list 'store (nth 1 action)
79 (and (boundp v) (symbol-value v))))
6735a29b
JB
80 (if (y-or-n-p (format "Un-store variable %s? "
81 (calc-var-name (nth 1 action))))
136211a9
EZ
82 (progn
83 (if (nth 2 action)
84 (set v (nth 2 action))
85 (makunbound v))
86 (calc-refresh-evaltos v)))))
87 ((eq (car action) 'eval)
88 (calc-record-undo (append (list 'eval (nth 2 action) (nth 1 action))
89 (cdr (cdr (cdr action)))))
90 (apply (nth 1 action) (cdr (cdr (cdr action))))))
bf77c646 91 (calc-handle-undo (cdr list)))))
136211a9
EZ
92
93(defun calc-redo (n)
94 (interactive "p")
3132f345
CW
95 (when calc-executing-macro
96 (error "Use C-x e, not X, to run a keyboard macro that uses Redo"))
136211a9
EZ
97 (if (<= n 0)
98 (calc-undo (- n))
99 (calc-wrapper
3132f345
CW
100 (when (null (nthcdr (1- n) calc-redo-list))
101 (error "Unable to redo"))
136211a9
EZ
102 (setq calc-redo-list
103 (prog1
104 (nthcdr n calc-redo-list)
105 (let ((saved-stack-top calc-stack-top))
106 (let ((calc-stack-top 0))
107 (calc-handle-redos calc-redo-list n))
108 (setq calc-stack-top saved-stack-top))))
bf77c646 109 (message "Redo!"))))
136211a9
EZ
110
111(defun calc-handle-redos (cl n)
3132f345
CW
112 (when (> n 0)
113 (let ((old-undo calc-undo-list))
114 (setq calc-undo-list nil)
115 (calc-handle-undo (car cl))
116 (setq calc-undo-list (append calc-undo-list old-undo)))
117 (calc-handle-redos (cdr cl) (1- n))))
136211a9
EZ
118
119(defun calc-last-args (n)
120 (interactive "p")
3132f345
CW
121 (when calc-executing-macro
122 (error "Use C-x e, not X, to run a keyboard macro that uses last-args"))
136211a9
EZ
123 (calc-wrapper
124 (let ((urec (calc-find-last-x calc-undo-list n)))
125 (if urec
126 (calc-handle-last-x urec)
bf77c646 127 (error "Not enough undo information available")))))
136211a9
EZ
128
129(defun calc-handle-last-x (list)
3132f345
CW
130 (when list
131 (let ((action (car list)))
132 (if (eq (car action) 'pop)
133 (calc-pop-push-record-list 0 "larg"
134 (delq 'top-of-stack (nth 2 action))))
135 (calc-handle-last-x (cdr list)))))
136211a9
EZ
136
137(defun calc-find-last-x (ul n)
3132f345
CW
138 (when ul
139 (if (calc-undo-does-pushes (car ul))
140 (if (<= n 1)
141 (car ul)
142 (calc-find-last-x (cdr ul) (1- n)))
143 (calc-find-last-x (cdr ul) n))))
136211a9
EZ
144
145(defun calc-undo-does-pushes (list)
146 (and list
147 (or (eq (car (car list)) 'pop)
bf77c646 148 (calc-undo-does-pushes (cdr list)))))
136211a9 149
2c2198cd
JB
150(provide 'calc-undo)
151
ab5796a9 152;;; arch-tag: eeb485d2-fb3d-454a-9d79-450af1f50d6c
bf77c646 153;;; calc-undo.el ends here