diff options
author | Andreas Schwab <schwab@suse.de> | 2004-02-08 22:40:55 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2004-02-08 22:40:55 +0000 |
commit | 7f076e082883b0b1000c2913cdd957ade3f7cbc4 (patch) | |
tree | dccb6c7bb6d06a51f52972f78e7c4b90b81fbb78 | |
parent | db22de71ec917427f89dbafbc25e5e83aee65c52 (diff) | |
download | emacs-7f076e082883b0b1000c2913cdd957ade3f7cbc4.tar.gz |
(eshell-hist-word-reference): Fix format
string.
-rw-r--r-- | lisp/eshell/em-hist.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/eshell/em-hist.el b/lisp/eshell/em-hist.el index 438e296d9c1..b38c7a519ec 100644 --- a/lisp/eshell/em-hist.el +++ b/lisp/eshell/em-hist.el @@ -1,6 +1,6 @@ ;;; em-hist.el --- history list management -;; Copyright (C) 1999, 2000 Free Software Foundation +;; Copyright (C) 1999, 2000, 2004 Free Software Foundation ;; Author: John Wiegley <johnw@gnu.org> @@ -523,7 +523,7 @@ See also `eshell-read-history'." ((string= "^" ref) 1) ((string= "$" ref) nil) ((string= "%" ref) - (error "`%' history word designator not yet implemented")))) + (error "`%%' history word designator not yet implemented")))) (defun eshell-hist-parse-arguments (&optional silent b e) "Parse current command arguments in a history-code-friendly way." |