diff options
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/calc/calc.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 30cf80dc2ab..17615afc37c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2006-09-12 Jay Belanger <belanger@truman.edu> | ||
| 2 | |||
| 3 | * calc/calc.el (calc-dispatch): Remove unnecessary `sit-for'. | ||
| 4 | |||
| 1 | 2006-09-07 Ryan Yeske <rcyeske@gmail.com> | 5 | 2006-09-07 Ryan Yeske <rcyeske@gmail.com> |
| 2 | 6 | ||
| 3 | * net/rcirc.el (rcirc-scroll-show-maximum-output): Rename from | 7 | * net/rcirc.el (rcirc-scroll-show-maximum-output): Rename from |
diff --git a/lisp/calc/calc.el b/lisp/calc/calc.el index bbb80bebc1d..35b7c19cf1a 100644 --- a/lisp/calc/calc.el +++ b/lisp/calc/calc.el | |||
| @@ -1101,7 +1101,7 @@ If nil, selections displayed but ignored.") | |||
| 1101 | (defun calc-dispatch (&optional arg) | 1101 | (defun calc-dispatch (&optional arg) |
| 1102 | "Invoke the GNU Emacs Calculator. See `calc-dispatch-help' for details." | 1102 | "Invoke the GNU Emacs Calculator. See `calc-dispatch-help' for details." |
| 1103 | (interactive "P") | 1103 | (interactive "P") |
| 1104 | (sit-for echo-keystrokes) | 1104 | ; (sit-for echo-keystrokes) |
| 1105 | (condition-case err ; look for other keys bound to calc-dispatch | 1105 | (condition-case err ; look for other keys bound to calc-dispatch |
| 1106 | (let ((keys (this-command-keys))) | 1106 | (let ((keys (this-command-keys))) |
| 1107 | (unless (or (not (stringp keys)) | 1107 | (unless (or (not (stringp keys)) |