diff options
| author | Werner LEMBERG | 2005-03-25 08:33:09 +0000 |
|---|---|---|
| committer | Werner LEMBERG | 2005-03-25 08:33:09 +0000 |
| commit | 5b423d48d46b132b80a5a0ab026ae0cbfec01d84 (patch) | |
| tree | 9891b3e9dba3d62be3d4b7ab33bd67242e8efab0 | |
| parent | d00fa0a4b38917bf2b0d63c43864e4230d52b717 (diff) | |
| download | emacs-5b423d48d46b132b80a5a0ab026ae0cbfec01d84.tar.gz emacs-5b423d48d46b132b80a5a0ab026ae0cbfec01d84.zip | |
* eshell/esh-io.el, eshell/esh-var.el: Replace `illegal' with
`invalid'.
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/eshell/esh-io.el | 4 | ||||
| -rw-r--r-- | lisp/eshell/esh-var.el | 4 |
3 files changed, 6 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d8f672c7234..f84420c6bad 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -5,6 +5,8 @@ | |||
| 5 | * midnight.el, vc-cvs.el: Replace `illegal' with `invalid'. | 5 | * midnight.el, vc-cvs.el: Replace `illegal' with `invalid'. |
| 6 | * emacs-lisp/cl-macs.el: Replace `illegal' with `invalid'. | 6 | * emacs-lisp/cl-macs.el: Replace `illegal' with `invalid'. |
| 7 | * emulation/vip.el: Replace `illegal' with `invalid'. | 7 | * emulation/vip.el: Replace `illegal' with `invalid'. |
| 8 | * eshell/esh-io.el, eshell/esh-var.el: Replace `illegal' with | ||
| 9 | `invalid'. | ||
| 8 | 10 | ||
| 9 | 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca> | 11 | 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca> |
| 10 | 12 | ||
diff --git a/lisp/eshell/esh-io.el b/lisp/eshell/esh-io.el index d832fa9cd03..6944770dbc9 100644 --- a/lisp/eshell/esh-io.el +++ b/lisp/eshell/esh-io.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; esh-io.el --- I/O management | 1 | ;;; esh-io.el --- I/O management |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1999, 2000 Free Software Foundation | 3 | ;; Copyright (C) 1999, 2000, 2005 Free Software Foundation |
| 4 | 4 | ||
| 5 | ;; Author: John Wiegley <johnw@gnu.org> | 5 | ;; Author: John Wiegley <johnw@gnu.org> |
| 6 | 6 | ||
| @@ -377,7 +377,7 @@ it defaults to `insert'." | |||
| 377 | target) | 377 | target) |
| 378 | 378 | ||
| 379 | (t | 379 | (t |
| 380 | (error "Illegal redirection target: %s" | 380 | (error "Invalid redirection target: %s" |
| 381 | (eshell-stringify target))))) | 381 | (eshell-stringify target))))) |
| 382 | 382 | ||
| 383 | (eval-when-compile | 383 | (eval-when-compile |
diff --git a/lisp/eshell/esh-var.el b/lisp/eshell/esh-var.el index fabcf367088..9ff9c1898a2 100644 --- a/lisp/eshell/esh-var.el +++ b/lisp/eshell/esh-var.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; esh-var.el --- handling of variables | 1 | ;;; esh-var.el --- handling of variables |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1999, 2000 Free Software Foundation | 3 | ;; Copyright (C) 1999, 2000, 2005 Free Software Foundation |
| 4 | 4 | ||
| 5 | ;; Author: John Wiegley <johnw@gnu.org> | 5 | ;; Author: John Wiegley <johnw@gnu.org> |
| 6 | 6 | ||
| @@ -568,7 +568,7 @@ For example, to retrieve the second element of a user's record in | |||
| 568 | (split-string value separator))))) | 568 | (split-string value separator))))) |
| 569 | (cond | 569 | (cond |
| 570 | ((< (length refs) 0) | 570 | ((< (length refs) 0) |
| 571 | (error "Illegal array variable index: %s" | 571 | (error "Invalid array variable index: %s" |
| 572 | (eshell-stringify refs))) | 572 | (eshell-stringify refs))) |
| 573 | ((= (length refs) 1) | 573 | ((= (length refs) 1) |
| 574 | (setq value (eshell-index-value value (car refs)))) | 574 | (setq value (eshell-index-value value (car refs)))) |