aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/calc/calc-prog.el8
2 files changed, 8 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 8e425cb50d0..ad2b0fa9dfc 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -3,6 +3,10 @@
3 * calc/calc-store.el (calc-copy-variable): Fix mistyped variable 3 * calc/calc-store.el (calc-copy-variable): Fix mistyped variable
4 name. Change the way a variable is displayed in a message. 4 name. Change the way a variable is displayed in a message.
5 5
6 * calc/calc-prog.el (calc-user-define-edit, calc-finish-macro-edit)
7 (calc-user-define-permanent, calc-execute-kbd-macro):
8 Replace old function MacEdit-parse-keys with edmacro-parse-keys.
9
62004-12-30 Kenichi Handa <handa@m17n.org> 102004-12-30 Kenichi Handa <handa@m17n.org>
7 11
8 * files.el (basic-save-buffer-1): Set 12 * files.el (basic-save-buffer-1): Set
diff --git a/lisp/calc/calc-prog.el b/lisp/calc/calc-prog.el
index 88157cfb687..71f229a99d4 100644
--- a/lisp/calc/calc-prog.el
+++ b/lisp/calc/calc-prog.el
@@ -722,7 +722,7 @@
722 (setcar mac new)))))))) 722 (setcar mac new))))))))
723 (let ((keys (progn (and (fboundp 'edit-kbd-macro) 723 (let ((keys (progn (and (fboundp 'edit-kbd-macro)
724 (edit-kbd-macro nil)) 724 (edit-kbd-macro nil))
725 (fboundp 'MacEdit-parse-keys)))) 725 (fboundp 'edmacro-parse-keys))))
726 (calc-wrapper 726 (calc-wrapper
727 (calc-edit-mode (list 'calc-finish-macro-edit 727 (calc-edit-mode (list 'calc-finish-macro-edit
728 (list 'quote def) 728 (list 'quote def)
@@ -775,7 +775,7 @@
775 (if (and keys (looking-at "\n")) (forward-line 1)) 775 (if (and keys (looking-at "\n")) (forward-line 1))
776 (let* ((true-str (buffer-substring (point) (point-max))) 776 (let* ((true-str (buffer-substring (point) (point-max)))
777 (str true-str)) 777 (str true-str))
778 (if keys (setq str (MacEdit-parse-keys str))) 778 (if keys (setq str (edmacro-parse-keys str)))
779 (if (symbolp (cdr def)) 779 (if (symbolp (cdr def))
780 (if (stringp (symbol-function (cdr def))) 780 (if (stringp (symbol-function (cdr def)))
781 (fset (cdr def) str) 781 (fset (cdr def) str)
@@ -1019,7 +1019,7 @@
1019 (vectorp (nth 1 (nth 3 fcmd))) 1019 (vectorp (nth 1 (nth 3 fcmd)))
1020 (progn (and (fboundp 'edit-kbd-macro) 1020 (progn (and (fboundp 'edit-kbd-macro)
1021 (edit-kbd-macro nil)) 1021 (edit-kbd-macro nil))
1022 (fboundp 'MacEdit-parse-keys)) 1022 (fboundp 'edmacro-parse-keys))
1023 (setq q-ok t) 1023 (setq q-ok t)
1024 (aset (nth 1 (nth 3 fcmd)) 1 nil)) 1024 (aset (nth 1 (nth 3 fcmd)) 1 nil))
1025 (insert (setq str (prin1-to-string 1025 (insert (setq str (prin1-to-string
@@ -1105,7 +1105,7 @@
1105 (setq mac (or (aref mac 1) 1105 (setq mac (or (aref mac 1)
1106 (aset mac 1 (progn (and (fboundp 'edit-kbd-macro) 1106 (aset mac 1 (progn (and (fboundp 'edit-kbd-macro)
1107 (edit-kbd-macro nil)) 1107 (edit-kbd-macro nil))
1108 (MacEdit-parse-keys (aref mac 0))))))) 1108 (edmacro-parse-keys (aref mac 0)))))))
1109 (if (< (prefix-numeric-value arg) 0) 1109 (if (< (prefix-numeric-value arg) 0)
1110 (execute-kbd-macro mac (- (prefix-numeric-value arg))) 1110 (execute-kbd-macro mac (- (prefix-numeric-value arg)))
1111 (if calc-executing-macro 1111 (if calc-executing-macro