diff options
| author | Jay Belanger | 2005-01-24 18:23:33 +0000 |
|---|---|---|
| committer | Jay Belanger | 2005-01-24 18:23:33 +0000 |
| commit | dacb2f7013c28d5265e079a1f4c0e6536a4699ca (patch) | |
| tree | 74dc465631864927a1b97044dbf12200a388b5f9 | |
| parent | 4d904fa0b23037b001f9349a467845c85efb33ba (diff) | |
| download | emacs-dacb2f7013c28d5265e079a1f4c0e6536a4699ca.tar.gz emacs-dacb2f7013c28d5265e079a1f4c0e6536a4699ca.zip | |
(calc-declare-variable): Use calc-var-name to display variable name.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/calc/calc-store.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ebf953caacd..902f9da4e1c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2005-01-24 Jay Belanger <belanger@truman.edu> | ||
| 2 | |||
| 3 | * calc/calc-store.el (calc-declare-variable): Use calc-var-name to | ||
| 4 | display variable name. | ||
| 5 | |||
| 1 | 2005-01-24 Kenichi Handa <handa@m17n.org> | 6 | 2005-01-24 Kenichi Handa <handa@m17n.org> |
| 2 | 7 | ||
| 3 | * international/encoded-kb.el (encoded-kbd-iso2022-single-shift): | 8 | * international/encoded-kb.el (encoded-kbd-iso2022-single-shift): |
diff --git a/lisp/calc/calc-store.el b/lisp/calc/calc-store.el index b2cef4936a0..52f0cc0272d 100644 --- a/lisp/calc/calc-store.el +++ b/lisp/calc/calc-store.el | |||
| @@ -482,7 +482,7 @@ | |||
| 482 | (setq rp nil))) | 482 | (setq rp nil))) |
| 483 | (not rp))))) | 483 | (not rp))))) |
| 484 | (calc-unread-command ?\C-a) | 484 | (calc-unread-command ?\C-a) |
| 485 | (setq decl (read-string (format "Declare: %s to be: " var) | 485 | (setq decl (read-string (format "Declare: %s to be: " (calc-var-name var)) |
| 486 | (and rp | 486 | (and rp |
| 487 | (math-format-flat-expr (nth 2 (car dp)) 0)))) | 487 | (math-format-flat-expr (nth 2 (car dp)) 0)))) |
| 488 | (setq decl (and (string-match "[^ \t]" decl) | 488 | (setq decl (and (string-match "[^ \t]" decl) |