diff options
| author | Andreas Schwab | 2004-02-08 22:40:16 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2004-02-08 22:40:16 +0000 |
| commit | 79cd7893f44f6865af560c3b35d9a64e770a590b (patch) | |
| tree | a55907697e8ab2d833a779bbdd023a5bc810319c | |
| parent | 1e9a52a584bed938d6d7c0e547f4a8703f636e8e (diff) | |
| download | emacs-79cd7893f44f6865af560c3b35d9a64e770a590b.tar.gz emacs-79cd7893f44f6865af560c3b35d9a64e770a590b.zip | |
(calc-do-prefix-help): Remove extra format
string argument.
| -rw-r--r-- | lisp/calc/calc-ext.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/calc/calc-ext.el b/lisp/calc/calc-ext.el index 3fa254cc05d..eafcc0766c2 100644 --- a/lisp/calc/calc-ext.el +++ b/lisp/calc/calc-ext.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; calc-ext.el --- various extension functions for Calc | 1 | ;;; calc-ext.el --- various extension functions for Calc |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2004 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: David Gillespie <daveg@synaptics.com> | 5 | ;; Author: David Gillespie <daveg@synaptics.com> |
| 6 | ;; Maintainers: D. Goel <deego@gnufans.org> | 6 | ;; Maintainers: D. Goel <deego@gnufans.org> |
| @@ -1262,7 +1262,7 @@ calc-kill calc-kill-region calc-yank)))) | |||
| 1262 | (if key | 1262 | (if key |
| 1263 | (if msgs | 1263 | (if msgs |
| 1264 | (message "%s: %s: %c-" group (car msgs) key) | 1264 | (message "%s: %s: %c-" group (car msgs) key) |
| 1265 | (message "%s: (none) %c-" group (car msgs) key)) | 1265 | (message "%s: (none) %c-" group key)) |
| 1266 | (message "%s: %s" group (car msgs)))) | 1266 | (message "%s: %s" group (car msgs)))) |
| 1267 | (and key (calc-unread-command key)))) | 1267 | (and key (calc-unread-command key)))) |
| 1268 | 1268 | ||