diff options
| author | Jay Belanger | 2004-12-02 21:21:32 +0000 |
|---|---|---|
| committer | Jay Belanger | 2004-12-02 21:21:32 +0000 |
| commit | 7e1637c2cb99d07d17cd8101e26acee2907a5a0a (patch) | |
| tree | 42ba57dcfc339132ef2a7d14ded6c68489d7c2d1 | |
| parent | 8be0b54e3beb33828fc2abb3a8a63eae5c496655 (diff) | |
| download | emacs-7e1637c2cb99d07d17cd8101e26acee2907a5a0a.tar.gz emacs-7e1637c2cb99d07d17cd8101e26acee2907a5a0a.zip | |
(calc-read-key-sequence): Leave message visible.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/calc/calc.el | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 67f6db4a95e..7817a5d647d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2004-12-02 Jay Belanger <belanger@truman.edu> | ||
| 2 | |||
| 3 | * calc/calc.el (calc-read-key-sequence): Leave the old message visible | ||
| 4 | when reading a new key sequence. | ||
| 5 | |||
| 1 | 2004-12-02 Kim F. Storm <storm@cua.dk> | 6 | 2004-12-02 Kim F. Storm <storm@cua.dk> |
| 2 | 7 | ||
| 3 | * faces.el (escape-glyph): Rename from glyph. | 8 | * faces.el (escape-glyph): Rename from glyph. |
diff --git a/lisp/calc/calc.el b/lisp/calc/calc.el index 4e73763aeb2..a7e840594ec 100644 --- a/lisp/calc/calc.el +++ b/lisp/calc/calc.el | |||
| @@ -967,9 +967,7 @@ If nil, selections displayed but ignored.") | |||
| 967 | (progn | 967 | (progn |
| 968 | (use-global-map map) | 968 | (use-global-map map) |
| 969 | (use-local-map nil) | 969 | (use-local-map nil) |
| 970 | (read-key-sequence | 970 | (read-key-sequence nil)) |
| 971 | (if (commandp (key-binding (vector (cdr key)))) | ||
| 972 | "" prompt2))) | ||
| 973 | (use-global-map glob) | 971 | (use-global-map glob) |
| 974 | (use-local-map loc))))) | 972 | (use-local-map loc))))) |
| 975 | 973 | ||